Skip to content

Instantly share code, notes, and snippets.

@kenjiskywalker
Created August 1, 2015 15:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kenjiskywalker/6fd296b1ed6214b8078d to your computer and use it in GitHub Desktop.
Save kenjiskywalker/6fd296b1ed6214b8078d to your computer and use it in GitHub Desktop.
module Ruboty
module Handlers
class Test < Base
on(
/test\z/i, # "@ellen ping"に反応して
name: "test", # #pingメソッドが呼ばれる
description: "TTT" # これは"@ellen help"でhelpを表示したとき説明文として表示される
)
def test(message)
message.reply("test")
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment