Last active
August 29, 2015 14:19
-
-
Save memememomo/1673bda6a372454b1708 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Gem::Specification.new do |spec| | |
spec.name = "nfu" | |
spec.version = "0.0.1" | |
spec.authors = ["uchiko"] | |
spec.email = ["memememomo"] | |
spec.summary = "return nfu" | |
spec.files = ["nfu.rb"] | |
spec.require_path = "." | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Ruboty | |
module Handlers | |
class Nfu < Base | |
on( | |
/test/, | |
name: 'nfu', | |
description: 'Return んふんふ', | |
) | |
def nfu(message) | |
message.reply('んふんふ :heartpulse:') | |
end | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment