Skip to content

Instantly share code, notes, and snippets.

@dnase
Created February 28, 2013 00:25
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 dnase/5053170 to your computer and use it in GitHub Desktop.
Save dnase/5053170 to your computer and use it in GitHub Desktop.
def adjective
['Incredible', 'Unstoppable', 'Unflappable', 'Amazing', 'Scrumtrilescent'].shuffle[0]
end
def pronoun
['Man', 'Woman', 'Boy', 'Girl'].shuffle[0]
end
def animal
['Bat', 'Wolf', 'Wolverine', 'Donkey', 'Spider', 'Monkey'].shuffle[0]
end
def definitive_article
'The'
end
def noun
['Flash', 'Nerd', 'Tick'].shuffle[0]
end
puts ["#{adjective} #{pronoun}", "#{animal} #{pronoun}", "#{definitive_article} #{noun}", "#{definitive_article} #{adjective} #{noun}"].shuffle[0]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment