diff options
author | David Vazgenovich Shakaryan <dvshakaryan@gmail.com> | 2014-04-20 04:23:20 -0700 |
---|---|---|
committer | David Vazgenovich Shakaryan <dvshakaryan@gmail.com> | 2014-04-20 04:23:20 -0700 |
commit | 7f134adccb20abe773234acecf526c9951b418e8 (patch) | |
tree | eeb4b4f96a963591f244c8f661b84dd194cf1484 /module.rb | |
parent | 7e7aa3278a9e478b02eb152575fb00ee0802ac81 (diff) | |
download | dinobot-7f134adccb20abe773234acecf526c9951b418e8.tar.gz dinobot-7f134adccb20abe773234acecf526c9951b418e8.tar.xz |
Improved namespace and directory structure.
Diffstat (limited to 'module.rb')
-rw-r--r-- | module.rb | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/module.rb b/module.rb deleted file mode 100644 index 082fc83..0000000 --- a/module.rb +++ /dev/null @@ -1,23 +0,0 @@ -module Dinobot - class Module - attr_accessor :commands - - def initialize(bot) - @bot = bot - - @commands = [:commands] - end - - def call(user, channel, message) - command, argument = message.split(' ', 3)[1..2] - - if @commands.map { |x| x.to_s }.include?(command) - send(command, user, channel, argument) - end - end - - def commands(user, channel, argument) - [[:say, channel, "Commands: #{@commands.sort.join(' ')}"]] - end - end -end |