Created
May 18, 2010 07:23
-
-
Save siddarth/404731 to your computer and use it in GitHub Desktop.
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
Minerva-2:gems Sid$ irb | |
>> require 'faker' | |
=> true | |
>> Faker::Name.name | |
=> "Berniece Wunsch" | |
>> Faker::Name.first_name | |
=> "Garrison" | |
>> Faker::Name.name | |
=> "Nettie Roob PhD" | |
>> Faker::PhoneNumber.phone_number | |
=> "653.263.6706" | |
>> Faker::PhoneNumber.phone_number | |
=> "1-930-628-0602" | |
>> Faker::PhoneNumber.phone_number | |
=> "(119)372-3578 x0877" | |
>> Faker::Address.street_address | |
=> "0526 Kathryn Pines" | |
>> Faker::Address.street_address | |
=> "98582 Hackett Locks" | |
>> Faker::Lorem.paragraph(5) | |
=> "Rerum est rem et et eius blanditiis. Dolor totam ipsam nihil. Laudantium itaque libero modi facilis. Officiis eligendi non optio eum fugiat. Sit error hic placeat et vitae sapiente et voluptatem. Consequatur autem eos consequatur quaerat fugit alias recusandae ducimus." | |
>> Faker::Lorem.paragraph(5) | |
=> "Et quia ducimus eum repudiandae aut aut harum. Temporibus nam suscipit quia repellat et aut atque. Quia neque et accusantium cumque magni. Velit neque itaque quam. Quas dolor est maiores reprehenderit. Iure in hic odio reiciendis laborum numquam voluptates sed. Unde eum quasi eius ex tempore sint." | |
>> Faker::Company.catch_phrase | |
=> "Enterprise-wide static parallelism" | |
>> Faker::Company.catch_phrase | |
=> "Cross-platform value-added installation" | |
>> Faker::Company.catch_phrase | |
=> "Cross-platform local knowledge base" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment