Skip to content

Instantly share code, notes, and snippets.

@GeoffCrittenden
Last active September 14, 2019 14:24
Show Gist options
  • Save GeoffCrittenden/fb7a6ef761e6d893fa2b1c075beb4f0a to your computer and use it in GitHub Desktop.
Save GeoffCrittenden/fb7a6ef761e6d893fa2b1c075beb4f0a to your computer and use it in GitHub Desktop.
Fake dinosaur names
# gem install faker
# more on faker: https://github.com/stympy/faker
require 'faker'
def fake_word
Faker::Lorem.word.capitalize
end
def dinosaur_suffix
%w[saurus opteryx ceratops mimus iraptor opod odon yonyx].sample
end
puts "#{fake_word}#{dinosaur_suffix}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment