-
-
Save hagiyaki/1653262 to your computer and use it in GitHub Desktop.
ひっくり返してtweetするやつ/ earthquake.gem plugin
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
# -*- coding: utf-8 -*- | |
# gyaku tweet | |
# | |
# e.g. :gyaku hoge => egoh | |
# reverseと一緒にしたいけどスキルなくて無理だったおversion | |
Earthquake.init do | |
command %r|^:gyaku\s*(\d+)*\s+(.+)$|, :as => :gyaku do |m| | |
text = m[2] | |
input text.split(//).reverse.join | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment