faker 2.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG.md +1417 -0
- data/History.md +176 -0
- data/License.txt +20 -0
- data/README.md +367 -0
- data/bin/faker +5 -0
- data/lib/faker.rb +308 -0
- data/lib/faker/blockchain/aeternity.rb +70 -0
- data/lib/faker/blockchain/bitcoin.rb +60 -0
- data/lib/faker/blockchain/ethereum.rb +26 -0
- data/lib/faker/blockchain/tezos.rb +107 -0
- data/lib/faker/books/book.rb +61 -0
- data/lib/faker/books/culture_series.rb +83 -0
- data/lib/faker/books/dune.rb +119 -0
- data/lib/faker/books/lovecraft.rb +276 -0
- data/lib/faker/creature/animal.rb +22 -0
- data/lib/faker/creature/cat.rb +50 -0
- data/lib/faker/creature/dog.rb +115 -0
- data/lib/faker/creature/horse.rb +37 -0
- data/lib/faker/default/address.rb +123 -0
- data/lib/faker/default/alphanumeric.rb +73 -0
- data/lib/faker/default/ancient.rb +23 -0
- data/lib/faker/default/app.rb +77 -0
- data/lib/faker/default/appliance.rb +33 -0
- data/lib/faker/default/artist.rb +20 -0
- data/lib/faker/default/avatar.rb +60 -0
- data/lib/faker/default/bank.rb +108 -0
- data/lib/faker/default/beer.rb +41 -0
- data/lib/faker/default/boolean.rb +26 -0
- data/lib/faker/default/bossa_nova.rb +15 -0
- data/lib/faker/default/business.rb +23 -0
- data/lib/faker/default/cannabis.rb +45 -0
- data/lib/faker/default/chile_rut.rb +54 -0
- data/lib/faker/default/chuck_norris.rb +14 -0
- data/lib/faker/default/code.rb +201 -0
- data/lib/faker/default/coffee.rb +37 -0
- data/lib/faker/default/coin.rb +15 -0
- data/lib/faker/default/color.rb +32 -0
- data/lib/faker/default/commerce.rb +80 -0
- data/lib/faker/default/company.rb +264 -0
- data/lib/faker/default/compass.rb +67 -0
- data/lib/faker/default/construction.rb +29 -0
- data/lib/faker/default/cosmere.rb +48 -0
- data/lib/faker/default/crypto.rb +21 -0
- data/lib/faker/default/crypto_coin.rb +49 -0
- data/lib/faker/default/currency.rb +19 -0
- data/lib/faker/default/date.rb +182 -0
- data/lib/faker/default/dc_comics.rb +25 -0
- data/lib/faker/default/demographic.rb +41 -0
- data/lib/faker/default/dessert.rb +48 -0
- data/lib/faker/default/device.rb +85 -0
- data/lib/faker/default/driving_licence.rb +65 -0
- data/lib/faker/default/educator.rb +35 -0
- data/lib/faker/default/electrical_components.rb +48 -0
- data/lib/faker/default/esport.rb +27 -0
- data/lib/faker/default/file.rb +49 -0
- data/lib/faker/default/fillmurray.rb +23 -0
- data/lib/faker/default/finance.rb +44 -0
- data/lib/faker/default/food.rb +49 -0
- data/lib/faker/default/funny_name.rb +45 -0
- data/lib/faker/default/gender.rb +33 -0
- data/lib/faker/default/greek_philosophers.rb +33 -0
- data/lib/faker/default/hacker.rb +103 -0
- data/lib/faker/default/hipster.rb +97 -0
- data/lib/faker/default/house.rb +33 -0
- data/lib/faker/default/id_number.rb +193 -0
- data/lib/faker/default/industry_segments.rb +61 -0
- data/lib/faker/default/internet.rb +291 -0
- data/lib/faker/default/invoice.rb +109 -0
- data/lib/faker/default/job.rb +25 -0
- data/lib/faker/default/json.rb +87 -0
- data/lib/faker/default/kpop.rb +31 -0
- data/lib/faker/default/lorem.rb +151 -0
- data/lib/faker/default/lorem_flickr.rb +78 -0
- data/lib/faker/default/lorem_pixel.rb +47 -0
- data/lib/faker/default/markdown.rb +84 -0
- data/lib/faker/default/marketing.rb +22 -0
- data/lib/faker/default/measurement.rb +116 -0
- data/lib/faker/default/military.rb +72 -0
- data/lib/faker/default/name.rb +58 -0
- data/lib/faker/default/nation.rb +76 -0
- data/lib/faker/default/nato_phonetic_alphabet.rb +20 -0
- data/lib/faker/default/nhs.rb +38 -0
- data/lib/faker/default/number.rb +274 -0
- data/lib/faker/default/omniauth.rb +413 -0
- data/lib/faker/default/phone_number.rb +54 -0
- data/lib/faker/default/placeholdit.rb +41 -0
- data/lib/faker/default/programming_language.rb +33 -0
- data/lib/faker/default/relationship.rb +46 -0
- data/lib/faker/default/restaurant.rb +63 -0
- data/lib/faker/default/science.rb +46 -0
- data/lib/faker/default/slack_emoji.rb +43 -0
- data/lib/faker/default/source.rb +76 -0
- data/lib/faker/default/south_africa.rb +51 -0
- data/lib/faker/default/space.rb +64 -0
- data/lib/faker/default/string.rb +49 -0
- data/lib/faker/default/stripe.rb +81 -0
- data/lib/faker/default/subscription.rb +70 -0
- data/lib/faker/default/superhero.rb +72 -0
- data/lib/faker/default/team.rb +29 -0
- data/lib/faker/default/time.rb +179 -0
- data/lib/faker/default/twitter.rb +188 -0
- data/lib/faker/default/types.rb +101 -0
- data/lib/faker/default/university.rb +30 -0
- data/lib/faker/default/vehicle.rb +162 -0
- data/lib/faker/default/verb.rb +27 -0
- data/lib/faker/default/world_cup.rb +86 -0
- data/lib/faker/games/dota.rb +80 -0
- data/lib/faker/games/elder_scrolls.rb +113 -0
- data/lib/faker/games/fallout.rb +62 -0
- data/lib/faker/games/game.rb +48 -0
- data/lib/faker/games/half_life.rb +48 -0
- data/lib/faker/games/heroes.rb +48 -0
- data/lib/faker/games/heroes_of_the_storm.rb +61 -0
- data/lib/faker/games/league_of_legends.rb +87 -0
- data/lib/faker/games/myst.rb +74 -0
- data/lib/faker/games/overwatch.rb +48 -0
- data/lib/faker/games/pokemon.rb +48 -0
- data/lib/faker/games/sonic_the_hedgehog.rb +48 -0
- data/lib/faker/games/super_smash_bros.rb +35 -0
- data/lib/faker/games/witcher.rb +87 -0
- data/lib/faker/games/world_of_warcraft.rb +35 -0
- data/lib/faker/games/zelda.rb +62 -0
- data/lib/faker/japanese_media/dragon_ball.rb +22 -0
- data/lib/faker/japanese_media/one_piece.rb +87 -0
- data/lib/faker/japanese_media/sword_art_online.rb +61 -0
- data/lib/faker/movies/back_to_the_future.rb +49 -0
- data/lib/faker/movies/ghostbusters.rb +49 -0
- data/lib/faker/movies/harry_potter.rb +87 -0
- data/lib/faker/movies/hitchhikers_guide_to_the_galaxy.rb +106 -0
- data/lib/faker/movies/hobbit.rb +62 -0
- data/lib/faker/movies/lebowski.rb +48 -0
- data/lib/faker/movies/lord_of_the_rings.rb +49 -0
- data/lib/faker/movies/movie.rb +20 -0
- data/lib/faker/movies/princess_bride.rb +36 -0
- data/lib/faker/movies/star_wars.rb +201 -0
- data/lib/faker/movies/v_for_vendetta.rb +50 -0
- data/lib/faker/music/grateful_dead.rb +37 -0
- data/lib/faker/music/music.rb +47 -0
- data/lib/faker/music/opera.rb +26 -0
- data/lib/faker/music/phish.rb +22 -0
- data/lib/faker/music/rock_band.rb +22 -0
- data/lib/faker/music/umphreys_mcgee.rb +22 -0
- data/lib/faker/quotes/quote.rb +32 -0
- data/lib/faker/quotes/shakespeare.rb +41 -0
- data/lib/faker/sports/basketball.rb +61 -0
- data/lib/faker/sports/football.rb +74 -0
- data/lib/faker/tv_shows/aqua_teen_hunger_force.rb +24 -0
- data/lib/faker/tv_shows/bojack_horseman.rb +51 -0
- data/lib/faker/tv_shows/breaking_bad.rb +37 -0
- data/lib/faker/tv_shows/buffy.rb +76 -0
- data/lib/faker/tv_shows/community.rb +38 -0
- data/lib/faker/tv_shows/dr_who.rb +115 -0
- data/lib/faker/tv_shows/dumb_and_dumber.rb +51 -0
- data/lib/faker/tv_shows/family_guy.rb +51 -0
- data/lib/faker/tv_shows/friends.rb +50 -0
- data/lib/faker/tv_shows/game_of_thrones.rb +77 -0
- data/lib/faker/tv_shows/hey_arnold.rb +50 -0
- data/lib/faker/tv_shows/how_i_met_your_mother.rb +64 -0
- data/lib/faker/tv_shows/michael_scott.rb +26 -0
- data/lib/faker/tv_shows/new_girl.rb +38 -0
- data/lib/faker/tv_shows/parks_and_rec.rb +37 -0
- data/lib/faker/tv_shows/rick_and_morty.rb +51 -0
- data/lib/faker/tv_shows/ru_paul.rb +37 -0
- data/lib/faker/tv_shows/seinfeld.rb +51 -0
- data/lib/faker/tv_shows/silicon_valley.rb +118 -0
- data/lib/faker/tv_shows/simpsons.rb +51 -0
- data/lib/faker/tv_shows/south_park.rb +38 -0
- data/lib/faker/tv_shows/star_trek.rb +63 -0
- data/lib/faker/tv_shows/stargate.rb +51 -0
- data/lib/faker/tv_shows/stranger_things.rb +38 -0
- data/lib/faker/tv_shows/the_expanse.rb +63 -0
- data/lib/faker/tv_shows/the_fresh_prince_of_bel_air.rb +51 -0
- data/lib/faker/tv_shows/the_it_crowd.rb +64 -0
- data/lib/faker/tv_shows/the_thick_of_it.rb +51 -0
- data/lib/faker/tv_shows/twin_peaks.rb +51 -0
- data/lib/faker/tv_shows/venture_bros.rb +65 -0
- data/lib/faker/version.rb +5 -0
- data/lib/helpers/base58.rb +22 -0
- data/lib/helpers/char.rb +66 -0
- data/lib/helpers/unique_generator.rb +56 -0
- data/lib/locales/README.md +40 -0
- data/lib/locales/ar.yml +102 -0
- data/lib/locales/bg.yml +44 -0
- data/lib/locales/ca-CAT.yml +24 -0
- data/lib/locales/ca.yml +31 -0
- data/lib/locales/da-DK.yml +73 -0
- data/lib/locales/de-AT.yml +56 -0
- data/lib/locales/de-CH.yml +19 -0
- data/lib/locales/de.yml +174 -0
- data/lib/locales/ee.yml +61 -0
- data/lib/locales/en-AU.yml +28 -0
- data/lib/locales/en-BORK.yml +4 -0
- data/lib/locales/en-CA.yml +37 -0
- data/lib/locales/en-GB.yml +14 -0
- data/lib/locales/en-IND.yml +25 -0
- data/lib/locales/en-MS.yml +47 -0
- data/lib/locales/en-NEP.yml +49 -0
- data/lib/locales/en-NG.yml +77 -0
- data/lib/locales/en-NZ.yml +39 -0
- data/lib/locales/en-PAK.yml +18 -0
- data/lib/locales/en-SG.yml +35 -0
- data/lib/locales/en-TH.yml +360 -0
- data/lib/locales/en-UG.yml +128 -0
- data/lib/locales/en-US.yml +103 -0
- data/lib/locales/en-ZA.yml +148 -0
- data/lib/locales/en-au-ocker.yml +33 -0
- data/lib/locales/en.yml +11 -0
- data/lib/locales/en/README.md +13 -0
- data/lib/locales/en/address.yml +581 -0
- data/lib/locales/en/ancient.yml +7 -0
- data/lib/locales/en/animal.yml +6 -0
- data/lib/locales/en/app.yml +8 -0
- data/lib/locales/en/appliance.yml +5 -0
- data/lib/locales/en/aqua_teen_hunger_force.yml +4 -0
- data/lib/locales/en/artist.yml +4 -0
- data/lib/locales/en/back_to_the_future.yml +120 -0
- data/lib/locales/en/bank.yml +302 -0
- data/lib/locales/en/basketball.yml +99 -0
- data/lib/locales/en/beer.yml +9 -0
- data/lib/locales/en/bojack_horseman.yml +6 -0
- data/lib/locales/en/book.yml +7 -0
- data/lib/locales/en/bossa_nova.yml +6 -0
- data/lib/locales/en/breaking_bad.yml +28 -0
- data/lib/locales/en/buffy.yml +260 -0
- data/lib/locales/en/business.yml +5 -0
- data/lib/locales/en/cannabis.yml +13 -0
- data/lib/locales/en/cat.yml +7 -0
- data/lib/locales/en/chuck_norris.yml +82 -0
- data/lib/locales/en/code.yml +4 -0
- data/lib/locales/en/coffee.yml +31 -0
- data/lib/locales/en/coin.yml +6 -0
- data/lib/locales/en/color.yml +4 -0
- data/lib/locales/en/commerce.yml +11 -0
- data/lib/locales/en/community.yml +33 -0
- data/lib/locales/en/company.yml +22 -0
- data/lib/locales/en/compass.yml +34 -0
- data/lib/locales/en/construction.yml +425 -0
- data/lib/locales/en/cosmere.yml +57 -0
- data/lib/locales/en/crypto_coin.yml +25 -0
- data/lib/locales/en/culture_series.yml +307 -0
- data/lib/locales/en/currency.yml +6 -0
- data/lib/locales/en/dc_comics.yml +52 -0
- data/lib/locales/en/demographic.yml +8 -0
- data/lib/locales/en/dessert.yml +6 -0
- data/lib/locales/en/device.yml +7 -0
- data/lib/locales/en/dog.yml +11 -0
- data/lib/locales/en/dota.yml +105 -0
- data/lib/locales/en/dr_who.yml +96 -0
- data/lib/locales/en/dragon_ball.yml +4 -0
- data/lib/locales/en/dumb_and_dumber.yml +59 -0
- data/lib/locales/en/dune.yml +159 -0
- data/lib/locales/en/educator.yml +11 -0
- data/lib/locales/en/elder_scrolls.yml +11 -0
- data/lib/locales/en/electrical_components.yml +6 -0
- data/lib/locales/en/esport.yml +8 -0
- data/lib/locales/en/fallout.yml +137 -0
- data/lib/locales/en/family_guy.yml +7 -0
- data/lib/locales/en/file.yml +5 -0
- data/lib/locales/en/finance.yml +113 -0
- data/lib/locales/en/food.yml +13 -0
- data/lib/locales/en/football.yml +8 -0
- data/lib/locales/en/fresh_prince_of_bel_air.yml +73 -0
- data/lib/locales/en/friends.yml +6 -0
- data/lib/locales/en/funny_name.yml +4 -0
- data/lib/locales/en/game.yml +283 -0
- data/lib/locales/en/game_of_thrones.yml +8 -0
- data/lib/locales/en/gender.yml +5 -0
- data/lib/locales/en/ghostbusters.yml +91 -0
- data/lib/locales/en/grateful_dead.yml +48 -0
- data/lib/locales/en/greek_philosophers.yml +26 -0
- data/lib/locales/en/hacker.yml +8 -0
- data/lib/locales/en/half_life.yml +7 -0
- data/lib/locales/en/harry_potter.yml +9 -0
- data/lib/locales/en/heroes.yml +6 -0
- data/lib/locales/en/heroes_of_the_storm.yml +7 -0
- data/lib/locales/en/hey_arnold.yml +24 -0
- data/lib/locales/en/hipster.yml +4 -0
- data/lib/locales/en/hitchhikers_guide_to_the_galaxy.yml +45 -0
- data/lib/locales/en/hobbit.yml +19 -0
- data/lib/locales/en/horse.yml +6 -0
- data/lib/locales/en/house.yml +5 -0
- data/lib/locales/en/how_i_met_your_mother.yml +28 -0
- data/lib/locales/en/id_number.yml +5 -0
- data/lib/locales/en/industry_segments.yml +7 -0
- data/lib/locales/en/internet.yml +21 -0
- data/lib/locales/en/invoice.yml +6 -0
- data/lib/locales/en/job.yml +15 -0
- data/lib/locales/en/kpop.yml +83 -0
- data/lib/locales/en/league_of_legends.yml +10 -0
- data/lib/locales/en/lebowski.yml +43 -0
- data/lib/locales/en/lord_of_the_rings.yml +6 -0
- data/lib/locales/en/lorem.yml +11 -0
- data/lib/locales/en/lovecraft.yml +9 -0
- data/lib/locales/en/markdown.yml +5 -0
- data/lib/locales/en/marketing.yml +4 -0
- data/lib/locales/en/measurement.yml +11 -0
- data/lib/locales/en/michael_scott.yml +45 -0
- data/lib/locales/en/military.yml +8 -0
- data/lib/locales/en/movie.yml +5 -0
- data/lib/locales/en/music.yml +32 -0
- data/lib/locales/en/myst.yml +48 -0
- data/lib/locales/en/name.yml +25 -0
- data/lib/locales/en/nation.yml +11 -0
- data/lib/locales/en/nato_phonetic_alphabet.yml +4 -0
- data/lib/locales/en/new_girl.yml +40 -0
- data/lib/locales/en/one_piece.yml +9 -0
- data/lib/locales/en/opera.yml +172 -0
- data/lib/locales/en/overwatch.yml +41 -0
- data/lib/locales/en/parks_and_rec.yml +7 -0
- data/lib/locales/en/phish.yml +4 -0
- data/lib/locales/en/phone_number.yml +7 -0
- data/lib/locales/en/pokemon.yml +8 -0
- data/lib/locales/en/princess_bride.yml +5 -0
- data/lib/locales/en/programming_language.yml +6 -0
- data/lib/locales/en/quote.yml +166 -0
- data/lib/locales/en/relationship.yml +10 -0
- data/lib/locales/en/restaurant.yml +129 -0
- data/lib/locales/en/rick_and_morty.yml +6 -0
- data/lib/locales/en/rock_band.yml +4 -0
- data/lib/locales/en/rupaul.yml +125 -0
- data/lib/locales/en/science.yml +6 -0
- data/lib/locales/en/seinfeld.yml +6 -0
- data/lib/locales/en/shakespeare.yml +56 -0
- data/lib/locales/en/silicon_valley.yml +53 -0
- data/lib/locales/en/simpsons.yml +26 -0
- data/lib/locales/en/slack_emoji.yml +20 -0
- data/lib/locales/en/sonic_the_hedgehog.yml +410 -0
- data/lib/locales/en/source.yml +16 -0
- data/lib/locales/en/south_park.yml +5 -0
- data/lib/locales/en/space.yml +17 -0
- data/lib/locales/en/star_trek.yml +7 -0
- data/lib/locales/en/star_wars.yml +258 -0
- data/lib/locales/en/stargate.yml +21 -0
- data/lib/locales/en/stranger_thing.yml +36 -0
- data/lib/locales/en/stripe.yml +42 -0
- data/lib/locales/en/subscription.yml +8 -0
- data/lib/locales/en/super_smash_bros.yml +206 -0
- data/lib/locales/en/superhero.yml +12 -0
- data/lib/locales/en/sword_art_online.yml +334 -0
- data/lib/locales/en/team.yml +8 -0
- data/lib/locales/en/the_expanse.yml +7 -0
- data/lib/locales/en/the_it_crowd.yml +155 -0
- data/lib/locales/en/the_thick_of_it.yml +6 -0
- data/lib/locales/en/twin_peaks.yml +6 -0
- data/lib/locales/en/umphreys_mcgee.yml +4 -0
- data/lib/locales/en/university.yml +10 -0
- data/lib/locales/en/v_for_vendetta.yml +163 -0
- data/lib/locales/en/vehicle.yml +80 -0
- data/lib/locales/en/venture_bros.yml +7 -0
- data/lib/locales/en/verbs.yml +8 -0
- data/lib/locales/en/witcher.yml +11 -0
- data/lib/locales/en/world_cup.yml +271 -0
- data/lib/locales/en/world_of_warcraft.yml +8 -0
- data/lib/locales/en/yoda.yml +4 -0
- data/lib/locales/en/zelda.yml +8 -0
- data/lib/locales/es-MX.yml +102 -0
- data/lib/locales/es.yml +94 -0
- data/lib/locales/fa.yml +10 -0
- data/lib/locales/fi-FI.yml +35 -0
- data/lib/locales/fr-CA.yml +90 -0
- data/lib/locales/fr-CH.yml +78 -0
- data/lib/locales/fr.yml +114 -0
- data/lib/locales/he.yml +27 -0
- data/lib/locales/hy.yml +416 -0
- data/lib/locales/id.yml +23 -0
- data/lib/locales/it.yml +70 -0
- data/lib/locales/ja.yml +101 -0
- data/lib/locales/ko.yml +40 -0
- data/lib/locales/lv.yml +55 -0
- data/lib/locales/nb-NO.yml +62 -0
- data/lib/locales/nl.yml +92 -0
- data/lib/locales/no.yml +7 -0
- data/lib/locales/pl.yml +77 -0
- data/lib/locales/pt-BR.yml +697 -0
- data/lib/locales/pt.yml +66 -0
- data/lib/locales/ru.yml +76 -0
- data/lib/locales/sk.yml +78 -0
- data/lib/locales/sv.yml +81 -0
- data/lib/locales/th.yml +380 -0
- data/lib/locales/tr.yml +40 -0
- data/lib/locales/uk.yml +86 -0
- data/lib/locales/vi.yml +68 -0
- data/lib/locales/zh-CN.yml +56 -0
- data/lib/locales/zh-TW.yml +29 -0
- metadata +568 -0
data/History.md
ADDED
@@ -0,0 +1,176 @@
|
|
1
|
+
## v1.6.5 (2016-07-08)
|
2
|
+
* Removed Faker::ChuckNorris.name
|
3
|
+
|
4
|
+
## v1.6.4 (2016-07-06)
|
5
|
+
* Removed support for Ruby 1.9.3
|
6
|
+
* Added Faker::ChuckNorris, Faker::Crypto, Faker::Educator, Faker::File, Faker::Music, Faker::Space, Faker::Vehicle, and Faker::Yoda
|
7
|
+
* Fixed bug with credit card types
|
8
|
+
* DST fixes in Faker::Time
|
9
|
+
* Added Faker::Name.name_with_middle
|
10
|
+
* Added Faker::Code.imei
|
11
|
+
* Added Faker::Code.asin
|
12
|
+
* Added Faker::Lorem.question and Faker::Lorem.questions
|
13
|
+
* Added Faker::Internet.private_ip_v4_address
|
14
|
+
* Added Faker::Company.australian_business_number
|
15
|
+
* Other miscellaneous fixes and locale updates
|
16
|
+
|
17
|
+
## v1.6.3 (2016-02-23)
|
18
|
+
* Fix for UTF problem in Ruby 1.9.3
|
19
|
+
* Fix for Faker::StarWars.character
|
20
|
+
* Updated sv locale
|
21
|
+
|
22
|
+
## v1.6.2 (2016-02-20)
|
23
|
+
* Fix for locale-switching (Russian email addresses)
|
24
|
+
* Added Faker::Beer, Faker::Boolean, Faker::Cat, Faker::StarWars, and Faker::Superhero
|
25
|
+
* Added Faker::Color.color_name
|
26
|
+
* Added Faker::Date.between_except
|
27
|
+
* Fixed Faker::Internet.ip_v4_cidr and Faker::Internet.ip_v6_cidr
|
28
|
+
* Added locales: ca, ca-CAT, da-DK, fi-FI, and pt
|
29
|
+
|
30
|
+
## v1.6.1 (2015-11-23)
|
31
|
+
* Fix for locale issues in tests
|
32
|
+
|
33
|
+
## v1.6.0 (2015-11-23)
|
34
|
+
* Lots of bug fixes -- most notably, a fix for email addresses and domains in non-en locales
|
35
|
+
* Updated locales: de, en-AU, en-NZ, en-SG, en-US, en-au-ocker, en, es, fr, he, it, ja, nb-NO, pl, pt-BR, sk, and zh-CN
|
36
|
+
* Updated classes: Address, Avatar, Book, Code, Commerce, Company, Hipster, IDNumber, Internet, Number, Placeholdit, Shakespeare, and Time
|
37
|
+
|
38
|
+
## v1.5.0 (2015-08-17)
|
39
|
+
* Added logos
|
40
|
+
* Added Slack Emoji
|
41
|
+
* Updated image generators
|
42
|
+
* Updated Dutch Locale
|
43
|
+
* Added support for generating RGB values, HSL colors, alpha channel, and HSLA colors
|
44
|
+
* Added locale for Uganda
|
45
|
+
* Added basic Ukrainian support
|
46
|
+
* Added university name generator
|
47
|
+
* Updated documentation
|
48
|
+
* Updated a variety of locales
|
49
|
+
* Various fixes
|
50
|
+
|
51
|
+
## v1.4.3 (2014-08-15)
|
52
|
+
* Updated Russian locale
|
53
|
+
* Added EIN generator
|
54
|
+
* Fixed Swedish locale
|
55
|
+
* Added birthday to Faker::Date
|
56
|
+
* Added Faker::App
|
57
|
+
|
58
|
+
## v1.4.2 (2014-07-15)
|
59
|
+
* Added Swedish locale
|
60
|
+
* README update
|
61
|
+
|
62
|
+
## v1.4.1 (2014-07-04)
|
63
|
+
* Bugfix and cleanup
|
64
|
+
|
65
|
+
## v1.4.0 (2014-07-03)
|
66
|
+
* Many enhancements and bugfixes
|
67
|
+
|
68
|
+
## v1.3.0 (2014-03-08)
|
69
|
+
* Many enhancements and few bugfixes
|
70
|
+
|
71
|
+
## v1.2.0 (2013-07-27)
|
72
|
+
* Many major and minor enhancements :)
|
73
|
+
|
74
|
+
## v1.1.2 (2012-09-18)
|
75
|
+
* 1 minor change:
|
76
|
+
* Fixed Ruby 1.8 compatibility
|
77
|
+
|
78
|
+
## v1.1.1 (2012-09-17)
|
79
|
+
* 1 minor change:
|
80
|
+
* Removed ja locale because of parse errors
|
81
|
+
|
82
|
+
## v1.1.0 (2012-09-15)
|
83
|
+
* 1 major change:
|
84
|
+
* Removed deprecated methods from Address: earth_country, us_state, us_state_abbr, uk_postcode, uk_county
|
85
|
+
* Many minor changes (please see github pull requests for credits)
|
86
|
+
* Added many localizations
|
87
|
+
* Added range and array support for Lorem
|
88
|
+
|
89
|
+
## v1.0.1 (2011-09-27)
|
90
|
+
* 1 minor enhancement
|
91
|
+
* Added safe_email method to get someaddress@example.com [Kazimierz Kiełkowicz]
|
92
|
+
* 1 bug fix:
|
93
|
+
* Use the locale fallback properly when parsing string formats
|
94
|
+
|
95
|
+
## v1.0.0 (2011-09-08)
|
96
|
+
* 2 major enhancements
|
97
|
+
* Moved all formats to locale files
|
98
|
+
* Stopped interfering with I18n's global settings for fallbacks
|
99
|
+
* 3 minor bug fixes:
|
100
|
+
* Ruby 1.9.2 fixes [eMxyzptlk]
|
101
|
+
* UTF8 fixes [maxmiliano]
|
102
|
+
* Updated IPv4 generator to return valid addresses [Sylvain Desbureaux]
|
103
|
+
* Many minor enhancements:
|
104
|
+
* Added bork locale for bork-ified lorem [johnbentcope]
|
105
|
+
* Added IPv6 address generator [jc00ke]
|
106
|
+
* Removed deprecation warnings for Array#rand [chrismarshall]
|
107
|
+
* Added German translation and I18n improvments [Matthias Kühnert]
|
108
|
+
* Added Dutch translation [moretea]
|
109
|
+
* Added Lat/Long generator [Andy Callaghan]
|
110
|
+
* Added buzzword-laden title generator [supercleanse]
|
111
|
+
* Added optional extended wordlist for lorem [chriskottom]
|
112
|
+
* Updated German translation [Jan Schwenzien]
|
113
|
+
* Locale improvements [suweller]
|
114
|
+
* Added limit to lorem generator [darrenterhune]
|
115
|
+
* Added Brazilian Portuguese translation [maxmiliano]
|
116
|
+
* Added Australian translation [madeindata]
|
117
|
+
* Added Canadian translation [igbanam]
|
118
|
+
* Added Norwegian translation [kytrinyx]
|
119
|
+
* Lots of translation-related cleanup [kytrinyx]
|
120
|
+
|
121
|
+
|
122
|
+
## v0.9.5 (2011-01-27)
|
123
|
+
* 1 minor bug fix:
|
124
|
+
* Fixed YAML [Aaron Patterson]
|
125
|
+
* 3 minor enhancements:
|
126
|
+
* Added default rake task to run all tests [Aaron Patterson]
|
127
|
+
* Removed shuffle method [Aaron Patterson]
|
128
|
+
* Use psych if present [Aaron Patterson]
|
129
|
+
|
130
|
+
## v0.9.4 (2010-12-29)
|
131
|
+
* 1 minor bug fix:
|
132
|
+
* Stopped getting in the way of Rails' late locale loading
|
133
|
+
|
134
|
+
## v0.9.3 (2010-12-28)
|
135
|
+
* 1 minor enhancement:
|
136
|
+
* Added a faker namespace for translations
|
137
|
+
|
138
|
+
## v0.9.2 (2010-12-22)
|
139
|
+
* 1 bug fix:
|
140
|
+
* Stopped stomping on I18n load path
|
141
|
+
|
142
|
+
## v0.9.1 (2010-12-22)
|
143
|
+
* 1 bug fix:
|
144
|
+
* Stopped setting I18n default locale
|
145
|
+
* 1 major enhancement:
|
146
|
+
* Added method_missing to Address to add methods based on data in locale files
|
147
|
+
* 1 minor enhancement:
|
148
|
+
* Added Swiss locale [Lukas Westermann]
|
149
|
+
|
150
|
+
## v0.9.0 (2010-12-21)
|
151
|
+
* 1 major enhancement:
|
152
|
+
* Moved strings and some formats to locale files
|
153
|
+
|
154
|
+
## v0.3.1 (2008-04-03)
|
155
|
+
* 1 minor enhancement:
|
156
|
+
* Added city to Address
|
157
|
+
|
158
|
+
## v0.3.0 (2008-01-01)
|
159
|
+
* 3 major enhancements:
|
160
|
+
* Added Lorem to generate fake Latin
|
161
|
+
* Added secondary_address to Address, and made inclusion of
|
162
|
+
secondary address in street_address optional (false by
|
163
|
+
default).
|
164
|
+
* Added UK address methods [Caius Durling]
|
165
|
+
|
166
|
+
## v0.2.1 (2007-12-05)
|
167
|
+
* 1 major enhancement:
|
168
|
+
* Dropped facets to avoid conflict with ActiveSupport
|
169
|
+
* 2 minor enhancements:
|
170
|
+
* Changed the output of user_name to randomly separate with a . or _
|
171
|
+
* Added a few tests
|
172
|
+
|
173
|
+
## v0.1.0 (2007-11-22)
|
174
|
+
|
175
|
+
* 1 major enhancement:
|
176
|
+
* Initial release
|
data/License.txt
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2007-2019 Benjamin Curtis
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,367 @@
|
|
1
|
+
|
2
|
+
![logotype a happy-07](https://user-images.githubusercontent.com/36028424/40263395-4318481e-5b44-11e8-92e5-3dcc1ce169b3.png)
|
3
|
+
|
4
|
+
# Faker
|
5
|
+
[![Build Status](https://travis-ci.org/faker-ruby/faker.svg?branch=master)](https://travis-ci.org/faker-ruby/faker)
|
6
|
+
[![Gem Version](https://badge.fury.io/rb/faker.svg)](https://badge.fury.io/rb/faker)
|
7
|
+
[![Inline docs](https://inch-ci.org/github/faker-ruby/faker.svg?branch=master)](https://inch-ci.org/github/faker-ruby/faker)
|
8
|
+
[![Test Coverage](https://api.codeclimate.com/v1/badges/ef54c7f9df86e965d64b/test_coverage)](https://codeclimate.com/github/stympy/faker/test_coverage)
|
9
|
+
[![Maintainability](https://api.codeclimate.com/v1/badges/ef54c7f9df86e965d64b/maintainability)](https://codeclimate.com/github/stympy/faker/maintainability)
|
10
|
+
[![SemVer compatibility](https://api.dependabot.com/badges/compatibility_score?dependency-name=faker&package-manager=bundler&version-scheme=semver)](https://dependabot.com/compatibility-score.html?dependency-name=faker&package-manager=bundler&version-scheme=semver)
|
11
|
+
|
12
|
+
This gem is a port of [Perl's Data::Faker library](https://metacpan.org/pod/Data::Faker) that generates fake data.
|
13
|
+
|
14
|
+
It comes in very handy for taking screenshots (taking screenshots for my
|
15
|
+
project, [Catch the Best](http://catchthebest.com/) was the original impetus
|
16
|
+
for the creation of this gem), having real-looking test data, and having your
|
17
|
+
database populated with more than one or two records while you're doing
|
18
|
+
development.
|
19
|
+
|
20
|
+
- [Faker](#faker)
|
21
|
+
- [NOTE](#note)
|
22
|
+
- [Installing](#installing)
|
23
|
+
- [Usage](#usage)
|
24
|
+
- [CLI](#cli)
|
25
|
+
- [Ensuring unique values](#ensuring-unique-values)
|
26
|
+
- [Deterministic Random](#deterministic-random)
|
27
|
+
- [Generators](#generators)
|
28
|
+
- [Default](#default)
|
29
|
+
- [Blockchain](#blockchain)
|
30
|
+
- [Books](#books)
|
31
|
+
- [Creature](#creature)
|
32
|
+
- [Games](#games)
|
33
|
+
- [Japanese Media](#japanese-media)
|
34
|
+
- [Movies](#movies)
|
35
|
+
- [Music](#music)
|
36
|
+
- [Quotes](#quotes)
|
37
|
+
- [Sports](#sports)
|
38
|
+
- [Tv Shows](#tv-shows)
|
39
|
+
- [Customization](#customization)
|
40
|
+
- [Contributing](#contributing)
|
41
|
+
- [Contact](#contact)
|
42
|
+
- [License](#license)
|
43
|
+
|
44
|
+
### NOTE
|
45
|
+
* While Faker generates data at random, returned values are not guaranteed to be unique by default.
|
46
|
+
You must explicity specify when you require unique values, see [details](#ensuring-unique-values).
|
47
|
+
Values also can be deterministic if you use the deterministic feature, see [details](#deterministic-random)
|
48
|
+
* This is the `master` branch of Faker and may contain changes that are not yet released.
|
49
|
+
Please refer the README of your version for the available methods.
|
50
|
+
List of all versions is [available here](https://github.com/stympy/faker/releases).
|
51
|
+
|
52
|
+
## Installing
|
53
|
+
```bash
|
54
|
+
gem install faker
|
55
|
+
```
|
56
|
+
Note: if you are getting a `uninitialized constant Faker::[some_class]` error, your version of the gem is behind the one documented here. To make sure that your gem is the one documented here, change the line in your Gemfile to:
|
57
|
+
|
58
|
+
```ruby
|
59
|
+
gem 'faker', :git => 'https://github.com/faker-ruby/faker.git', :branch => 'master'
|
60
|
+
```
|
61
|
+
|
62
|
+
## Usage
|
63
|
+
```ruby
|
64
|
+
require 'faker'
|
65
|
+
|
66
|
+
Faker::Name.name #=> "Christophe Bartell"
|
67
|
+
|
68
|
+
Faker::Internet.email #=> "kirsten.greenholt@corkeryfisher.info"
|
69
|
+
```
|
70
|
+
|
71
|
+
### CLI
|
72
|
+
Instructions are available in the [faker-bot README](https://github.com/faker-ruby/faker-bot).
|
73
|
+
|
74
|
+
### Ensuring unique values
|
75
|
+
Prefix your method call with `unique`. For example:
|
76
|
+
```ruby
|
77
|
+
Faker::Name.unique.name # This will return a unique name every time it is called
|
78
|
+
```
|
79
|
+
|
80
|
+
If too many unique values are requested from a generator that has a limited
|
81
|
+
number of potential values, a `Faker::UniqueGenerator::RetryLimitExceeded`
|
82
|
+
exception may be raised. It is possible to clear the record of unique values
|
83
|
+
that have been returned, for example between tests.
|
84
|
+
```ruby
|
85
|
+
Faker::Name.unique.clear # Clears used values for Faker::Name
|
86
|
+
Faker::UniqueGenerator.clear # Clears used values for all generators
|
87
|
+
```
|
88
|
+
|
89
|
+
You also can give some already used values to the unique generator if you have
|
90
|
+
collisions with the generated data (i.e: using FactoryBot with random and
|
91
|
+
manually set values).
|
92
|
+
|
93
|
+
```ruby
|
94
|
+
# Usage:
|
95
|
+
# Faker::<generator>.unique.exclude(method, arguments, list)
|
96
|
+
|
97
|
+
# Add 'azerty' and 'wxcvbn' to the string generator with 6 char length
|
98
|
+
Faker::Lorem.unique.exclude :string, [6], %w[azerty wxcvbn]
|
99
|
+
```
|
100
|
+
|
101
|
+
### Deterministic Random
|
102
|
+
Faker supports seeding of its pseudo-random number generator (PRNG) to provide deterministic output of repeated method calls.
|
103
|
+
|
104
|
+
```ruby
|
105
|
+
Faker::Config.random = Random.new(42)
|
106
|
+
Faker::Company.bs #=> "seize collaborative mindshare"
|
107
|
+
Faker::Company.bs #=> "engage strategic platforms"
|
108
|
+
Faker::Config.random = Random.new(42)
|
109
|
+
Faker::Company.bs #=> "seize collaborative mindshare"
|
110
|
+
Faker::Company.bs #=> "engage strategic platforms"
|
111
|
+
|
112
|
+
Faker::Config.random = nil # seeds the PRNG using default entropy sources
|
113
|
+
Faker::Config.random.seed #=> 185180369676275068918401850258677722187
|
114
|
+
Faker::Company.bs #=> "cultivate viral synergies"
|
115
|
+
```
|
116
|
+
|
117
|
+
## Generators
|
118
|
+
**NOTE: Some of the generators below aren't released yet. If you want to use them, change the line in your gemfile to:**
|
119
|
+
|
120
|
+
```ruby
|
121
|
+
gem 'faker', :git => 'https://github.com/faker-ruby/faker.git', :branch => 'master'
|
122
|
+
```
|
123
|
+
|
124
|
+
### Default
|
125
|
+
- [Faker::Address](doc/default/address.md)
|
126
|
+
- [Faker::Alphanumeric](doc/default/alphanumeric.md)
|
127
|
+
- [Faker::Ancient](doc/default/ancient.md)
|
128
|
+
- [Faker::App](doc/default/app.md)
|
129
|
+
- [Faker::Appliance](doc/default/appliance.md)
|
130
|
+
- [Faker::Artist](doc/default/artist.md)
|
131
|
+
- [Faker::Avatar](doc/default/avatar.md)
|
132
|
+
- [Faker::Bank](doc/default/bank.md)
|
133
|
+
- [Faker::Beer](doc/default/beer.md)
|
134
|
+
- [Faker::Boolean](doc/default/boolean.md)
|
135
|
+
- [Faker::BossaNova](doc/default/bossa_nova.md)
|
136
|
+
- [Faker::Business](doc/default/business.md)
|
137
|
+
- [Faker::Cannabis](doc/default/cannabis.md)
|
138
|
+
- [Faker::ChileRut](doc/default/chile_rut.md)
|
139
|
+
- [Faker::ChuckNorris](doc/default/chuck_norris.md)
|
140
|
+
- [Faker::Code](doc/default/code.md)
|
141
|
+
- [Faker::Coffee](doc/default/coffee.md)
|
142
|
+
- [Faker::Coin](doc/default/coin.md)
|
143
|
+
- [Faker::Color](doc/default/color.md)
|
144
|
+
- [Faker::Commerce](doc/default/commerce.md)
|
145
|
+
- [Faker::Company](doc/default/company.md)
|
146
|
+
- [Faker::Compass](doc/default/compass.md)
|
147
|
+
- [Faker::Construction](doc/default/construction.md)
|
148
|
+
- [Faker::Cosmere](doc/default/cosmere.md)
|
149
|
+
- [Faker::Crypto](doc/default/crypto.md)
|
150
|
+
- [Faker::CryptoCoin](doc/default/crypto_coin.md)
|
151
|
+
- [Faker::Currency](doc/default/currency.md)
|
152
|
+
- [Faker::Date](doc/default/date.md)
|
153
|
+
- [Faker::DcComics](doc/default/dc_comics.md)
|
154
|
+
- [Faker::Demographic](doc/default/demographic.md)
|
155
|
+
- [Faker::Dessert](doc/default/dessert.md)
|
156
|
+
- [Faker::Device](doc/default/device.md)
|
157
|
+
- [Faker::DrivingLicence](doc/default/driving_licence.md)
|
158
|
+
- [Faker::Educator](doc/default/educator.md)
|
159
|
+
- [Faker::ElectricalComponents](doc/default/electrical_components.md)
|
160
|
+
- [Faker::Esport](doc/default/esport.md)
|
161
|
+
- [Faker::File](doc/default/file.md)
|
162
|
+
- [Faker::Fillmurray](doc/default/fillmurray.md)
|
163
|
+
- [Faker::Finance](doc/default/finance.md)
|
164
|
+
- [Faker::Food](doc/default/food.md)
|
165
|
+
- [Faker::FunnyName](doc/default/funny_name.md)
|
166
|
+
- [Faker::Gender](doc/default/gender.md)
|
167
|
+
- [Faker::GreekPhilosophers](doc/default/greek_philosophers.md)
|
168
|
+
- [Faker::Hacker](doc/default/hacker.md)
|
169
|
+
- [Faker::Hipster](doc/default/hipster.md)
|
170
|
+
- [Faker::House](doc/default/house.md)
|
171
|
+
- [Faker::IDNumber](doc/default/id_number.md)
|
172
|
+
- [Faker::IndustrySegments](doc/default/industry_segments.md)
|
173
|
+
- [Faker::Internet](doc/default/internet.md)
|
174
|
+
- [Faker::Invoice](doc/default/invoice.md)
|
175
|
+
- [Faker::Job](doc/default/job.md)
|
176
|
+
- [Faker::Json](doc/default/json.md)
|
177
|
+
- [Faker::Kpop](doc/default/kpop.md)
|
178
|
+
- [Faker::Lorem](doc/default/lorem.md)
|
179
|
+
- [Faker::LoremFlickr](doc/default/lorem_flickr.md)
|
180
|
+
- [Faker::LoremPixel](doc/default/lorem_pixel.md)
|
181
|
+
- [Faker::Markdown](doc/default/markdown.md)
|
182
|
+
- [Faker::Marketing](doc/default/marketing.md)
|
183
|
+
- [Faker::Measurement](doc/default/measurement.md)
|
184
|
+
- [Faker::Military](doc/default/military.md)
|
185
|
+
- [Faker::Name](doc/default/name.md)
|
186
|
+
- [Faker::Nation](doc/default/nation.md)
|
187
|
+
- [Faker::NatoPhoneticAlphabet](doc/default/nato_phonetic_alphabet.md)
|
188
|
+
- [Faker::NationalHealthService](doc/default/national_health_service.md)
|
189
|
+
- [Faker::Number](doc/default/number.md)
|
190
|
+
- [Faker::Omniauth](doc/default/omniauth.md)
|
191
|
+
- [Faker::PhoneNumber](doc/default/phone_number.md)
|
192
|
+
- [Faker::Placeholdit](doc/default/placeholdit.md)
|
193
|
+
- [Faker::ProgrammingLanguage](doc/default/programming_language.md)
|
194
|
+
- [Faker::Relationship](doc/default/relationship.md)
|
195
|
+
- [Faker::Restaurant](doc/default/restaurant.md)
|
196
|
+
- [Faker::Science](doc/default/science.md)
|
197
|
+
- [Faker::SlackEmoji](doc/default/slack_emoji.md)
|
198
|
+
- [Faker::Source](doc/default/source.md)
|
199
|
+
- [Faker::SouthAfrica](doc/default/south_africa.md)
|
200
|
+
- [Faker::Space](doc/default/space.md)
|
201
|
+
- [Faker::String](doc/default/string.md)
|
202
|
+
- [Faker::Stripe](doc/default/stripe.md)
|
203
|
+
- [Faker::Subscription](doc/default/subscription.md)
|
204
|
+
- [Faker::Superhero](doc/default/superhero.md)
|
205
|
+
- [Faker::Team](doc/default/team.md)
|
206
|
+
- [Faker::Time](doc/default/time.md)
|
207
|
+
- [Faker::Twitter](doc/default/twitter.md)
|
208
|
+
- [Faker::Types](doc/default/types.md)
|
209
|
+
- [Faker::University](doc/default/university.md)
|
210
|
+
- [Faker::Vehicle](doc/default/vehicle.md)
|
211
|
+
- [Faker::Verbs](doc/default/verbs.md)
|
212
|
+
- [Faker::WorldCup](doc/default/world_cup.md)
|
213
|
+
|
214
|
+
### Blockchain
|
215
|
+
- [Faker::Blockchain::Aeternity](doc/blockchain/aeternity.md)
|
216
|
+
- [Faker::Blockchain::Bitcoin](doc/blockchain/bitcoin.md)
|
217
|
+
- [Faker::Blockchain::Ethereum](doc/blockchain/ethereum.md)
|
218
|
+
- [Faker::Blockchain::Tezos](doc/blockchain/tezos.md)
|
219
|
+
|
220
|
+
### Books
|
221
|
+
- [Faker::Book](doc/books/book.md)
|
222
|
+
- [Faker::Books::CultureSeries](doc/books/culture_series.md)
|
223
|
+
- [Faker::Books::Dune](doc/books/dune.md)
|
224
|
+
- [Faker::Books::Lovecraft](doc/books/lovecraft.md)
|
225
|
+
|
226
|
+
### Creature
|
227
|
+
- [Faker::Creature::Animal](doc/creature/animal.md)
|
228
|
+
- [Faker::Creature::Cat](doc/creature/cat.md)
|
229
|
+
- [Faker::Creature::Dog](doc/creature/dog.md)
|
230
|
+
- [Faker::Creature::Horse](doc/creature/horse.md)
|
231
|
+
|
232
|
+
### Games
|
233
|
+
- [Faker::Game](doc/games/game.md)
|
234
|
+
- [Faker::Games::Dota](doc/games/dota.md)
|
235
|
+
- [Faker::Games::ElderScrolls](doc/games/elder_scrolls.md)
|
236
|
+
- [Faker::Games::Fallout](doc/games/fallout.md)
|
237
|
+
- [Faker::Games::HalfLife](doc/games/half_life.md)
|
238
|
+
- [Faker::Games::Heroes](doc/games/heroes.md)
|
239
|
+
- [Faker::Games::HeroesOfTheStorm](doc/games/heroes_of_the_storm.md)
|
240
|
+
- [Faker::Games::LeagueOfLegends](doc/games/league_of_legends.md)
|
241
|
+
- [Faker::Games::Myst](doc/games/myst.md)
|
242
|
+
- [Faker::Games::Overwatch](doc/games/overwatch.md)
|
243
|
+
- [Faker::Games::Pokemon](doc/games/pokemon.md)
|
244
|
+
- [Faker::Games::SonicTheHedgehog](doc/games/sonic_the_hedgehog.md)
|
245
|
+
- [Faker::Games::SuperSmashBros](doc/games/super_smash_bros.md)
|
246
|
+
- [Faker::Games::Witcher](doc/games/witcher.md)
|
247
|
+
- [Faker::Games::WorldOfWarcraft](doc/games/world_of_warcraft.md)
|
248
|
+
- [Faker::Games::Zelda](doc/games/zelda.md)
|
249
|
+
|
250
|
+
### Japanese Media
|
251
|
+
- [Faker::JapaneseMedia::DragonBall](doc/japanese_media/dragon_ball.md)
|
252
|
+
- [Faker::JapaneseMedia::OnePiece](doc/japanese_media/one_piece.md)
|
253
|
+
- [Faker::JapaneseMedia::SwordArtOnline](doc/japanese_media/sword_art_online.md)
|
254
|
+
|
255
|
+
### Movies
|
256
|
+
- [Faker::Movie](doc/movies/movie.md)
|
257
|
+
- [Faker::Movies::BackToTheFuture](doc/movies/back_to_the_future.md)
|
258
|
+
- [Faker::Movies::Ghostbusters](doc/movies/ghostbusters.md)
|
259
|
+
- [Faker::Movies::HarryPotter](doc/movies/harry_potter.md)
|
260
|
+
- [Faker::Movies::HitchhikersGuideToTheGalaxy](doc/movies/hitchhikers_guide_to_the_galaxy.md)
|
261
|
+
- [Faker::Movies::Hobbit](doc/movies/hobbit.md)
|
262
|
+
- [Faker::Movies::Lebowski](doc/movies/lebowski.md)
|
263
|
+
- [Faker::Movies::LordOfTheRings](doc/movies/lord_of_the_rings.md)
|
264
|
+
- [Faker::Movies::PrincessBride](doc/movies/princess_bride.md)
|
265
|
+
- [Faker::Movies::StarWars](doc/movies/star_wars.md)
|
266
|
+
- [Faker::Movies::VForVendetta](doc/movies/v_for_vendetta.md)
|
267
|
+
|
268
|
+
### Music
|
269
|
+
- [Faker::Music](doc/music/music.md)
|
270
|
+
- [Faker::Music::GratefulDead](doc/music/grateful_dead.md)
|
271
|
+
- [Faker::Music::Opera](doc/music/opera.md)
|
272
|
+
- [Faker::Music::Phish](doc/music/phish.md)
|
273
|
+
- [Faker::Music::RockBand](doc/music/rock_band.md)
|
274
|
+
- [Faker::Music::UmphreysMcgee](doc/music/umphreys_mcgee.md)
|
275
|
+
|
276
|
+
### Quotes
|
277
|
+
- [Faker::Quote](doc/quotes/quote.md)
|
278
|
+
- [Faker::Quotes::Shakespeare](doc/quotes/shakespeare.md)
|
279
|
+
|
280
|
+
### Sports
|
281
|
+
- [Faker::Sports::Basketball](doc/sports/basketball.md)
|
282
|
+
- [Faker::Sports::Football](doc/sports/football.md)
|
283
|
+
|
284
|
+
### Tv Shows
|
285
|
+
- [Faker::TvShows::AquaTeenHungerForce](doc/tv_shows/aqua_teen_hunger_force.md)
|
286
|
+
- [Faker::TvShows::BojackHorseman](doc/tv_shows/bojack_horseman.md)
|
287
|
+
- [Faker::TvShows::BreakingBad](doc/tv_shows/breaking_bad.md)
|
288
|
+
- [Faker::TvShows::Buffy](doc/tv_shows/buffy.md)
|
289
|
+
- [Faker::TvShows::Community](doc/tv_shows/community.md)
|
290
|
+
- [Faker::TvShows::DrWho](doc/tv_shows/dr_who.md)
|
291
|
+
- [Faker::TvShows::DumbAndDumber](doc/tv_shows/dumb_and_dumber.md)
|
292
|
+
- [Faker::TvShows::FamilyGuy](doc/tv_shows/family_guy.md)
|
293
|
+
- [Faker::TvShows::Friends](doc/tv_shows/friends.md)
|
294
|
+
- [Faker::TvShows::GameOfThrones](doc/tv_shows/game_of_thrones.md)
|
295
|
+
- [Faker::TvShows::HeyArnold](doc/tv_shows/hey_arnold.md)
|
296
|
+
- [Faker::TvShows::HowIMetYourMother](doc/tv_shows/how_i_met_your_mother.md)
|
297
|
+
- [Faker::TvShows::MichaelScott](doc/tv_shows/michael_scott.md)
|
298
|
+
- [Faker::TvShows::NewGirl](doc/tv_shows/new_girl.md)
|
299
|
+
- [Faker::TvShows::ParksAndRec](doc/tv_shows/parks_and_rec.md)
|
300
|
+
- [Faker::TvShows::RickAndMorty](doc/tv_shows/rick_and_morty.md)
|
301
|
+
- [Faker::TvShows::RuPaul](doc/tv_shows/rupaul.md)
|
302
|
+
- [Faker::TvShows::Seinfeld](doc/tv_shows/seinfeld.md)
|
303
|
+
- [Faker::TvShows::SiliconValley](doc/tv_shows/silicon_valley.md)
|
304
|
+
- [Faker::TvShows::Simpsons](doc/tv_shows/simpsons.md)
|
305
|
+
- [Faker::TvShows::SouthPark](doc/tv_shows/south_park.md)
|
306
|
+
- [Faker::TvShows::StarTrek](doc/tv_shows/star_trek.md)
|
307
|
+
- [Faker::TvShows::Stargate](doc/tv_shows/stargate.md)
|
308
|
+
- [Faker::TvShows::StrangerThings](doc/tv_shows/stranger_things.md)
|
309
|
+
- [Faker::TvShows::TheExpanse](doc/tv_shows/the_expanse.md)
|
310
|
+
- [Faker::TvShows::TheFreshPrinceOfBelAir](doc/tv_shows/the_fresh_prince_of_bel_air.md)
|
311
|
+
- [Faker::TvShows::TheITCrowd](doc/tv_shows/the_it_crowd.md)
|
312
|
+
- [Faker::TvShows::TheThickOfIt](doc/tv_shows/the_thick_of_it.md)
|
313
|
+
- [Faker::TvShows::TwinPeaks](doc/tv_shows/twin_peaks.md)
|
314
|
+
- [Faker::TvShows::VentureBros](doc/tv_shows/venture_bros.md)
|
315
|
+
|
316
|
+
## Customization
|
317
|
+
Since you may want to make addresses and other types of data look different
|
318
|
+
depending on where in the world you are (US postal codes vs. UK postal codes,
|
319
|
+
for example), Faker uses the I18n gem to store strings (like state names) and
|
320
|
+
formats (US postal codes are NNNNN while UK postal codes are AAN NAA),
|
321
|
+
allowing you to get different formats by switching locales. Just set
|
322
|
+
Faker::Config.locale to the locale you want, and Faker will take care of the
|
323
|
+
rest.
|
324
|
+
|
325
|
+
If your locale doesn't already exist, create it in the `lib/locales` directory
|
326
|
+
and you can then override or add elements to suit your needs. See more about how to
|
327
|
+
use locales [here](lib/locales/README.md)
|
328
|
+
|
329
|
+
```yaml
|
330
|
+
en-au-ocker:
|
331
|
+
faker:
|
332
|
+
name:
|
333
|
+
# Existing faker field, new data
|
334
|
+
first_name:
|
335
|
+
- Charlotte
|
336
|
+
- Ava
|
337
|
+
- Chloe
|
338
|
+
- Emily
|
339
|
+
|
340
|
+
# New faker fields
|
341
|
+
ocker_first_name:
|
342
|
+
- Bazza
|
343
|
+
- Bluey
|
344
|
+
- Davo
|
345
|
+
- Johno
|
346
|
+
- Shano
|
347
|
+
- Shazza
|
348
|
+
region:
|
349
|
+
- South East Queensland
|
350
|
+
- Wide Bay Burnett
|
351
|
+
- Margaret River
|
352
|
+
- Port Pirie
|
353
|
+
- Gippsland
|
354
|
+
- Elizabeth
|
355
|
+
- Barossa
|
356
|
+
```
|
357
|
+
|
358
|
+
## Contributing
|
359
|
+
See [CONTRIBUTING.md](https://github.com/stympy/faker/blob/master/CONTRIBUTING.md).
|
360
|
+
|
361
|
+
## Contact
|
362
|
+
Comments and feedback are welcome. Send an email to Benjamin Curtis via the [google group](http://groups.google.com/group/ruby-faker).
|
363
|
+
|
364
|
+
You can also join our [discord channel](https://discord.gg/RMumTwB) to discuss anything regarding improvements or feature requests.
|
365
|
+
|
366
|
+
## License
|
367
|
+
This code is free to use under the terms of the MIT license.
|