]> git.netwichtig.de Git - user/henk/code/ruby/rbot.git/blobdiff - lib/rbot/plugins.rb
revert previous useless commit and rdocify documentation of accessors to BotModule
[user/henk/code/ruby/rbot.git] / lib / rbot / plugins.rb
index 567724f8b19db1e056ae6e834ee5e44dfb89e9dc..d68163ae8be0552a07cf2589812fbae9bafb4b0c 100644 (file)
@@ -134,9 +134,14 @@ module Plugins
 =end
 
   class BotModule
-    attr_reader :bot   # the associated bot
-    attr_reader :registry # the plugin registry
-    attr_reader :handler # the message map handler
+    # the associated bot
+    attr_reader :bot
+
+    # the plugin registry
+    attr_reader :registry
+
+    # the message map handler
+    attr_reader :handler
 
     # Initialise your bot module. Always call super if you override this method,
     # as important variables are set up for you: