Test data generator using PrettySeries
Add this line to your application's Gemfile:
gem 'faker-pretty_series'
And then execute:
$ bundle install
Or install it yourself as:
$ gem install faker-pretty_series
require "faker-pretty_series"
Faker::PrettySeries::Character.name
# => "かのん"
Faker::PrettySeries::Character.cv
# => "佐々木李子"
Faker::PrettySeries::Episode.subtitle
# => "真夏のフェスでやってみた!"
Faker::PrettySeries::Song.name
# => "Neo Dimension Go!!"
Example for factory_bot
FactoryBot.define do
factory :user do
name { Faker::PrettySeries::Character.name }
end
end
After checking out the repo, run bin/setup
to install dependencies. Then, run rake spec
to run the tests. You can also run bin/console
for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run bundle exec rake install
. To release a new version, update the version number in version.rb
, and then run bundle exec rake release
, which will create a git tag for the version, push git commits and tags, and push the .gem
file to rubygems.org.
lib/data/ is auto generated.
$ bundle exec rake generate_data
Saved. /path/to/faker-pretty_series/lib/data/characters.yml
Saved. /path/to/faker-pretty_series/lib/data/episodes.yml
Saved. /path/to/faker-pretty_series/lib/data/songs.yml
Bug reports and pull requests are welcome on GitHub at https://github.com/sue445/faker-pretty_series.
The gem is available as open source under the terms of the MIT License.