Small bug fix and updated docs.
Fixes for ruby 1.8.x
Many module additions from different contributors!
NameKR (ffaker#47) and PhoneNumbersSG (ffaker#46).
AddressSN (thanks PapePathe), and a bugfix on Faker::Product.model (thanks finarfin).
Education bug fix, Faker::Job (thanks Piotr Usewicz)
Faker::AddressAU and FakkerAddressPhoneAU modules (thanks Ben Wiseley).
Extraction of AddressUK and AddressUS classes. (Thanks doctorbh).
Faker::AddressCA (Thanks doctorbh, ffaker#27)
Faker::NameSN, Faker::PhoneNumberSN (Thanks SENE, ffaker#26)
Added Faker::NameJA (Thanks kichiro, ffaker#21)
Remove a warning.
Faker::HTMLIpsum module inspired in http://html-ipsum.com/ (Thanks Chris Bloom, ffaker#18)
Faker::LoremCN (Thanks Shane Weng, Shane Weng, https://github.com/swcool, https://github.com/EmmanuelOga/ffaker/pull/16/files)
Faker::NameDE (thanks David Noelte, https://github.com/marvin, ffaker#17) Added Faker::Internet#disposable_email (Thanks Port 80 Labs, https://github.com/port80labs, ffaker#15)
Faker::NameRU (Thanks Vsevolod Romashov, https://github.com/7even, ffaker#14)
Faker::Product and Faker::Education (thanks Rico Sta. Cruz, ffaker#12 )
Faker::Lorem.word as a convenience method, instead of Faker::Lorem.words(1).first.
New Faker::NameCN module (contributions by qichunren)
Faker::NameCN.first_name # => 鑫洋 Faker::NameCN.last_name # => 禹 Faker::NameCN.name # => 俊伶漫
Api additions (contributions by Robert Berry)
Faker::Internet.uri(protocol) Faker::Internet.http_url Faker::Internet.ip_v4_address
Api additions by Rafael Souza
Faker::Geolocation.lat # => 40.6609944585817 Faker::Geolocation.lng # => -73.8454648940358 Faker::Address.neighborhood # => "Renton West"
- removed library file and directory "faker". now you only can load the gem using require 'ffaker'
- Several Optimizations, renamed gem packege to ffaker.
1 minor enhancement:
- Added city to Address
3 major enhancements:
- Added Lorem to generate fake Latin
- Added secondary_address to Address, and made inclusion of secondary address in street_address optional (false by default).
- Added UK address methods [Caius Durling]
1 major enhancement:
- Dropped facets to avoid conflict with ActiveSupport
2 minor enhancements:
- Changed the output of user_name to randomly separate with a . or _
- Added a few tests
- Initial release