16 May 2014
オレは遂にRubyのチルダの究極の使い方に辿り着いたのだ!
(追記:2014-5-19) Gem化しました..。
今度はどう?
This file contains 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
require "named_emoji" | |
class Symbol | |
def ~ | |
to_s | |
.split | |
.map { |w| NamedEmoji.emojis[w.intern.downcase] || w } | |
.join(" ") | |
end | |
end | |
puts ~:smile | |
puts ~:beginner | |
puts ~:shit | |
puts ~:jack_o_lantern | |
puts ~:'+1' | |
puts ~:"I broken_heart you!" | |
puts ~:"The Pencil is mightier than gun" | |
puts ~:"Dango is better than sunflower" | |
puts ~:"疲れたら beer を飲もう!" | |
puts ~:"Fish + Scissors => Sushi" | |
# >> 😄 | |
# >> 🔰 | |
# >> 💩 | |
# >> 🎃 | |
# >> 👍 | |
# >> I 💔 you! | |
# >> The 📝 is mightier than 🔫 | |
# >> 🍡 is better than 🌻 | |
# >> 疲れたら 🍺 を飲もう! | |
# >> 🐟 + ✂ => 🍣 |
emojiの名前リストはターミナルでemoji -l
します。
Thanks jugyo!
関連記事:
blog comments powered by Disqus