Created
March 26, 2013 18:50
-
-
Save eljojo/5248061 to your computer and use it in GitHub Desktop.
random emoji application helper
This file contains hidden or 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
module ApplicationHelper | |
# hand picked from http://www.grumdrig.com/emoji-list/ | |
RANDOM_EMOJI = %w{🚳 🏊 🍕 🍔 🍟 🌽 🍉 🎣 🎅 👻 🎃 🐎 🐴 🐒 🐵 🐗 🐷 🐻 👴 🙀 👳 👮 👲 💏} | |
def random_emoji(count = 5) | |
RANDOM_EMOJI.shuffle[0..count].join(' ') | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment