class String
Public Instance Methods
emoji_data()
click to toggle source
# File lib/emoji/string_ext.rb, line 10 def emoji_data index = Emoji.index index.find_by_moji(self) || index.find_by_name(self) end
image_url()
click to toggle source
# File lib/emoji/string_ext.rb, line 6 def image_url Emoji.image_url_for_name(self.emoji_data['name']) end
with_emoji_images()
click to toggle source
# File lib/emoji/string_ext.rb, line 2 def with_emoji_images Emoji.replace_unicode_moji_with_images(self) end