aboutsummaryrefslogtreecommitdiff
path: root/module.rb
blob: 192aea4e3c76d8649eb0c8ef4fd15564d3a0a354 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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.include?(command.intern)
        send(command, user, channel, argument)
      end
    end

    def commands(user, channel, argument)
      [[:say, channel, "Commands: #{@commands.sort.join(' ')}"]]
    end
  end
end