diff options
author | David Vazgenovich Shakaryan <dvshakaryan@gmail.com> | 2014-04-14 02:06:53 -0700 |
---|---|---|
committer | David Vazgenovich Shakaryan <dvshakaryan@gmail.com> | 2014-04-14 02:06:53 -0700 |
commit | f35ae6761d9656ec51bd9176a83320c5dcf44278 (patch) | |
tree | c0ae3eccc5dacbcddc91c0152ff5e99783299e7a /module.rb | |
parent | 3446d5f2ec4263fc097d4d5c7996d88daf220693 (diff) | |
download | dinobot-f35ae6761d9656ec51bd9176a83320c5dcf44278.tar.gz dinobot-f35ae6761d9656ec51bd9176a83320c5dcf44278.tar.xz |
Add support for modules.
Diffstat (limited to 'module.rb')
-rw-r--r-- | module.rb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/module.rb b/module.rb new file mode 100644 index 0000000..f0c415a --- /dev/null +++ b/module.rb @@ -0,0 +1,22 @@ +module Dinobot + class Module + attr_accessor :commands + + def initialize + @commands = [:commands] + end + + def call(user, channel, message) + message = message.split(' ', 2).last + command = message.split.first + + if @commands.include?(command.intern) + send(command, user, channel, message) + end + end + + def commands(user, channel, message) + [[:say, channel, "Commands: #{@commands.sort.join(' ')}"]] + end + end +end |