https://github.com/linjunpop/jia
A ruby gem for generating random Chinese user data.
https://github.com/linjunpop/jia
Last synced: about 1 month ago
JSON representation
A ruby gem for generating random Chinese user data.
- Host: GitHub
- URL: https://github.com/linjunpop/jia
- Owner: linjunpop
- License: mit
- Created: 2014-12-24T07:53:23.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-12-25T10:20:47.000Z (over 11 years ago)
- Last Synced: 2025-10-23T19:30:41.601Z (9 months ago)
- Language: Ruby
- Homepage:
- Size: 129 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Jiǎ (假)
A ruby gem for generating random Chinese user data.
[](https://gemnasium.com/linjunpop/jia)
[](https://codeclimate.com/github/linjunpop/jia)
[](https://rubygems.org/gems/jia)
[](http://linjunpop.mit-license.org)
## Installation
Add this line to your application's Gemfile:
```ruby
gem 'jia'
```
And then execute:
$ bundle
Or install it yourself as:
$ gem install jia
## Usage
```ruby
fake_user = Jia::User.new
fake_user.surname #=> '林'
fake_user.given_name #=> '萌'
fake_user.full_name #=> '林萌'
fake_user.email #=> 'xxxx@sohu.com"'
fake_user.email(safe: true) #=> 'xxxx@example.com"'
fake_user.phone #=> '15500000000'
```
## Note
* The surname list comes from http://en.wikipedia.org/wiki/List_of_most_common_surnames_in_Asia
* The given name list comes from http://en.wikipedia.org/wiki/List_of_most_popular_given_names
* Phone numbers http://en.wikipedia.org/wiki/Telephone_numbers_in_China
## Contributing
1. Fork it ( https://github.com/[my-github-username]/jia/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