Sha256: f423391bacab76621c7f97d9efb706517bab53682805cee4118735cca442460f

Contents?: true

Size: 1.08 KB

Versions: 1

Compression:

Stored size: 1.08 KB

Contents

# Faker::Precure

Test data generator using precure

## Installation

Add this line to your application's Gemfile:

    gem 'faker-precure'

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install faker-precure

## Usage

```ruby
require "faker/precure"

Faker::Precure.human_name
#=> "黄瀬やよい"

Faker::Precure.precure_name
#=> "キュアアクア"

Faker::Precure.title
#=> "Yes! プリキュア5"

Faker::Precure.transform_message
#=> "レッツプレイ!プリキュアモジュレーション!!\n爪弾くは女神の調べ! キュアミューズ!\n届け4人の組曲!スイートプリキュア!"

Faker::Precure.user_name
#=> "cure_mint"
```

## Example of factory
```ruby
FactoryGirl.define do
  factory :user do
    name { Faker::Precure.human_name }
  end
end
```

## Contributing

1. Fork it ( https://github.com/sue445/faker-precure/fork )
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create a new Pull Request

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
faker-precure-0.0.1 README.md