aboutsummaryrefslogtreecommitdiff
path: root/module/module.rb
blob: 9d72b09057217cfb821f1b00ffe88fcdf7935b39 (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
24
25
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