Skip to content

Instantly share code, notes, and snippets.

@siyo
Created October 19, 2013 09:22
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 siyo/7053507 to your computer and use it in GitHub Desktop.
Save siyo/7053507 to your computer and use it in GitHub Desktop.
# -*- coding: utf-8 -*-
require 'moji'
Earthquake.init do
command :kensaku do |m|
str = m[1] + " " * 3
body = Moji.han_to_zen str
len = body.size
head = "━" * len
tail = "━" * len
twitter.update(<<"EOS")
┏#{head}┳━━┓
┃#{body}┃検索┃
┗#{tail}┻━━┛
EOS
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment