Simply create fake relational data.
Add this line to your application's Gemfile:
gem 'fictional'
And then execute:
$ bundle
Or install it yourself as:
$ gem install fictional
'''ruby require 'fictional'
Fictional::Person.first_name #=> "John"
person = Fictional.person person.first_name #=> "John" person.email #=> "john.smith@example.com"
person.first_name = "Jane" person.email #=> "jane.smith@example.com"
person.phone.number #=> "718-631-1111" person.full_address #=> "31 Beverly Rd, Douglaston, NY 11363, USA" '''
- Fork it
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request