Skip to content

Instantly share code, notes, and snippets.

@eljojo
Created March 26, 2013 18:50
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eljojo/5248061 to your computer and use it in GitHub Desktop.
Save eljojo/5248061 to your computer and use it in GitHub Desktop.
random emoji application helper
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