Skip to content

Instantly share code, notes, and snippets.

@siyo
Created January 21, 2012 16:04
Show Gist options
  • Save siyo/1653160 to your computer and use it in GitHub Desktop.
Save siyo/1653160 to your computer and use it in GitHub Desktop.
指定したtweetをひっくり返すやつ/ earthquake.gem plugin
# -*- coding: utf-8 -*-
# reverse tweet
#
# e.g. :reverse $aa
#
Earthquake.init do
command %r|^:reverse\s(\d+)\s*$|, :as => :reverse do |m|
st = cache.read("status:#{m[1].to_i}");
input st["text"].split(//).reverse.join
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment