Tomohiro/kris

View on GitHub
example/mybot/plugin/reply.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Reply < Kris::Plugin
  def on_privmsg(message)
    case message.body.downcase
    when /hello/
      reply(message.to, message.from, 'Hello!')
    end
  end
end