Inspired by ffaker, used to easily generate fake random data: e.g. name, nickname.
Created on a sole purpose to be used in fantasy-climate projects. Currently supports only Polish language.
Add this line to your application's Gemfile:
gem 'fantasy_faker'
And then execute:
$ bundle
Or install it yourself as:
$ gem install fantasy_faker
require 'fantasy_faker'
FantasyFaker::Character.male_first_name => "Sarillon"
FantasyFaker::Character.male_nickname => "Dziecię Pustyni"
FantasyFaker::Character.male_name => "Sarillon Dziecię Pustyni" # OR "Sarillon"
FantasyFaker::Character.female_first_name => "Linani"
FantasyFaker::Character.female_nickname => "Wstydliwa"
FantasyFaker::Character.female_name => "Linani Wstydliwa" # OR "Linani"
- 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