Skip to content

Instantly share code, notes, and snippets.

@hagiyaki
Forked from siyo/reverse.rb
Created January 21, 2012 16:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save hagiyaki/1653262 to your computer and use it in GitHub Desktop.
Save hagiyaki/1653262 to your computer and use it in GitHub Desktop.
ひっくり返してtweetするやつ/ earthquake.gem plugin
# -*- 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