rubotyのプラグイン手作り体験( ・ㅂ・)و ̑̑
理解のためrubotyプラグインジェネレータ使わないで手作業
gemのひな形作成
$ bundle gem ruboty-bomb
ハンドラとかアクション追加
$ cd ruboty-bomb
$ cat lib/ruboty/handlers/bomb.rb
require "ruboty/bomb/actions/bomb"
module Ruboty
module Handlers
class Bomb < Base
on /bomb/, name: 'bomb', description: 'output booooom!!!'
def bomb(message)
Ruboty::Bomb::Actions::Bomb.new(message).call
end
end
end