class MagicEightBall
Public Instance Methods
execute(m)
click to toggle source
# File lib/rateless_bot/plugins/magic_eight_ball.rb, line 32 def execute(m) puts('h') m.reply @@answers[rand(0..@@answers.length-1)] end
help()
click to toggle source
# File lib/rateless_bot/plugins/magic_eight_ball.rb, line 4 def help '!8ball - Magic Eight Ball' end