Created
June 15, 2012 12:01
-
-
Save alisterscott/2936139 to your computer and use it in GitHub Desktop.
An example of the faker gem
This file contains 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
require 'faker' | |
puts Faker::Name.name | |
# Nathanael Botsford | |
puts Faker::Company.name | |
# Labadie, Marvin and Kassulke | |
puts Faker::Company.catch_phrase | |
# Self-enabling bottom-line project | |
puts Faker::Company.bs | |
# grow B2C platforms |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment