From d6c6160df2e1872e1a0be9dfb8773c174ba4bde2 Mon Sep 17 00:00:00 2001 From: David Vazgenovich Shakaryan Date: Sun, 20 Apr 2014 07:08:49 -0700 Subject: Rename Module::Module to Module::Base. --- module/module.rb | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 module/module.rb (limited to 'module/module.rb') diff --git a/module/module.rb b/module/module.rb deleted file mode 100644 index 9d72b09..0000000 --- a/module/module.rb +++ /dev/null @@ -1,25 +0,0 @@ -module Dinobot - module Module - 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 -end -- cgit v1.2.3-70-g09d2