├── .github ├── ISSUE_TEMPLATE │ └── bug-report.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── codeql.yml │ └── ruby.yml ├── .gitignore ├── .rubocop.yml ├── .yardopts ├── CHANGELOG.md ├── CONTRIBUTING.md ├── GENERATORS.md ├── Gemfile ├── Gemfile.lock ├── License.txt ├── MAINTAINING.md ├── README.md ├── Rakefile ├── SECURITY.md ├── bin └── faker ├── custom-hooks └── pre-push.sample ├── doc ├── blockchain │ ├── aeternity.md │ ├── bitcoin.md │ ├── ethereum.md │ └── tezos.md ├── books │ ├── book.md │ ├── culture_series.md │ ├── dune.md │ ├── lovecraft.md │ └── the_kingkiller_chronicle.md ├── creature │ ├── animal.md │ ├── bird.md │ ├── cat.md │ ├── dog.md │ └── horse.md ├── default │ ├── address.md │ ├── adjective.md │ ├── alphanumeric.md │ ├── ancient.md │ ├── app.md │ ├── appliance.md │ ├── artist.md │ ├── avatar.md │ ├── bank.md │ ├── barcode.md │ ├── beer.md │ ├── blood.md │ ├── boolean.md │ ├── business.md │ ├── camera.md │ ├── cannabis.md │ ├── chile_rut.md │ ├── chuck_norris.md │ ├── code.md │ ├── coffee.md │ ├── coin.md │ ├── color.md │ ├── commerce.md │ ├── company.md │ ├── compass.md │ ├── computer.md │ ├── construction.md │ ├── cosmere.md │ ├── crypto.md │ ├── crypto_coin.md │ ├── currency.md │ ├── date.md │ ├── dc_comics.md │ ├── demographic.md │ ├── dessert.md │ ├── device.md │ ├── driving_licence.md │ ├── educator.md │ ├── electrical_components.md │ ├── emotion.md │ ├── esport.md │ ├── file.md │ ├── finance.md │ ├── food.md │ ├── funny_name.md │ ├── gender.md │ ├── greek_philosophers.md │ ├── hacker.md │ ├── harry_potter.md │ ├── hipster.md │ ├── hitchhikers_guide_to_the_galaxy.md │ ├── hobby.md │ ├── house.md │ ├── html.md │ ├── id_number.md │ ├── industry_segments.md │ ├── internet.md │ ├── invoice.md │ ├── job.md │ ├── json.md │ ├── kpop.md │ ├── lorem.md │ ├── lorem_flickr.md │ ├── markdown.md │ ├── marketing.md │ ├── measurement.md │ ├── military.md │ ├── mountain.md │ ├── name.md │ ├── nation.md │ ├── national_health_service.md │ ├── nato_phonetic_alphabet.md │ ├── number.md │ ├── omniauth.md │ ├── phone_number.md │ ├── placeholdit.md │ ├── programming_language.md │ ├── relationship.md │ ├── restaurant.md │ ├── rock_band.md │ ├── science.md │ ├── slack_emoji.md │ ├── source.md │ ├── south_africa.md │ ├── space.md │ ├── string.md │ ├── stripe.md │ ├── subscription.md │ ├── superhero.md │ ├── tea.md │ ├── team.md │ ├── theater.md │ ├── time.md │ ├── types.md │ ├── university.md │ ├── vehicle.md │ ├── verbs.md │ ├── vulnerability_identifier.md │ ├── world_cup.md │ └── x.md ├── drone │ └── drone.md ├── fantasy │ └── tolkien.md ├── games │ ├── clash_of_clans.md │ ├── dnd.md │ ├── dota.md │ ├── elder_scrolls.md │ ├── fallout.md │ ├── final_fantasy_xiv.md │ ├── game.md │ ├── half_life.md │ ├── heroes.md │ ├── heroes_of_the_storm.md │ ├── league_of_legends.md │ ├── minecraft.md │ ├── myst.md │ ├── overwatch.md │ ├── pokemon.md │ ├── sonic_the_hedgehog.md │ ├── street_fighter.md │ ├── super_mario.md │ ├── super_smash_bros.md │ ├── touhou.md │ ├── warhammer_fantasy.md │ ├── witcher.md │ ├── world_of_warcraft.md │ └── zelda.md ├── internet │ └── http.md ├── japanese_media │ ├── conan.md │ ├── cowboy_bebop.md │ ├── doraemon.md │ ├── dragon_ball.md │ ├── fullmetal_alchemist_brotherhood.md │ ├── kamen_rider.md │ ├── naruto.md │ ├── one_piece.md │ ├── studio_ghibli.md │ └── sword_art_online.md ├── locations │ └── australia.md ├── movies │ ├── avatar.md │ ├── back_to_the_future.md │ ├── departed.md │ ├── ghostbusters.md │ ├── grateful_dead.md │ ├── harry_potter.md │ ├── hitchhikers_guide_to_the_galaxy.md │ ├── hobbit.md │ ├── how_to_train_your_dragon.md │ ├── lebowski.md │ ├── lord_of_the_rings.md │ ├── movie.md │ ├── princess_bride.md │ ├── star_wars.md │ ├── the_room.md │ ├── tron.md │ └── v_for_vendetta.md ├── music │ ├── bossa_nova.md │ ├── grateful_dead.md │ ├── hiphop.md │ ├── music.md │ ├── opera.md │ ├── pearl_jam.md │ ├── phish.md │ ├── prince.md │ ├── rock_band.md │ ├── rush.md │ ├── smashing_pumpkins.md │ └── umphreys_mcgee.md ├── quotes │ ├── chiquito.md │ ├── quote.md │ ├── rajnikanth.md │ └── shakespeare.md ├── religion │ └── bible.md ├── sports │ ├── basketball.md │ ├── chess.md │ ├── football.md │ ├── mountaineering.md │ ├── sport.md │ └── volleyball.md ├── travel │ ├── airport.md │ └── train_station.md └── tv_shows │ ├── aqua_teen_hunger_force.md │ ├── archer.md │ ├── big_bang_theory.md │ ├── bojack_horseman.md │ ├── breaking_bad.md │ ├── brooklyn_nine_nine.md │ ├── buffy.md │ ├── community.md │ ├── dr_who.md │ ├── dumb_and_dumber.md │ ├── family_guy.md │ ├── final_space.md │ ├── friends.md │ ├── game_of_thrones.md │ ├── hey_arnold.md │ ├── how_i_met_your_mother.md │ ├── michael_scott.md │ ├── new_girl.md │ ├── parks_and_rec.md │ ├── rick_and_morty.md │ ├── rupaul.md │ ├── seinfeld.md │ ├── silicon_valley.md │ ├── simpsons.md │ ├── south_park.md │ ├── spongebob.md │ ├── star_trek.md │ ├── stargate.md │ ├── stranger_things.md │ ├── suits.md │ ├── supernatural.md │ ├── the_expanse.md │ ├── the_fresh_prince_of_bel_air.md │ ├── the_it_crowd.md │ ├── the_office.md │ ├── the_thick_of_it.md │ ├── twin_peaks.md │ └── venture_bros.md ├── faker.gemspec ├── lib ├── faker.rb ├── faker │ ├── blockchain │ │ ├── aeternity.rb │ │ ├── bitcoin.rb │ │ ├── ethereum.rb │ │ └── tezos.rb │ ├── books │ │ ├── book.rb │ │ ├── culture_series.rb │ │ ├── dune.rb │ │ ├── lovecraft.rb │ │ └── the_kingkiller_chronicle.rb │ ├── creature │ │ ├── animal.rb │ │ ├── bird.rb │ │ ├── cat.rb │ │ ├── dog.rb │ │ └── horse.rb │ ├── default │ │ ├── address.rb │ │ ├── adjective.rb │ │ ├── alphanumeric.rb │ │ ├── ancient.rb │ │ ├── app.rb │ │ ├── appliance.rb │ │ ├── artist.rb │ │ ├── avatar.rb │ │ ├── bank.rb │ │ ├── barcode.rb │ │ ├── beer.rb │ │ ├── blood.rb │ │ ├── boolean.rb │ │ ├── business.rb │ │ ├── camera.rb │ │ ├── cannabis.rb │ │ ├── chile_rut.rb │ │ ├── chuck_norris.rb │ │ ├── code.rb │ │ ├── coffee.rb │ │ ├── coin.rb │ │ ├── color.rb │ │ ├── commerce.rb │ │ ├── company.rb │ │ ├── compass.rb │ │ ├── computer.rb │ │ ├── construction.rb │ │ ├── cosmere.rb │ │ ├── crypto.rb │ │ ├── crypto_coin.rb │ │ ├── currency.rb │ │ ├── date.rb │ │ ├── dc_comics.rb │ │ ├── demographic.rb │ │ ├── dessert.rb │ │ ├── device.rb │ │ ├── driving_licence.rb │ │ ├── drone.rb │ │ ├── educator.rb │ │ ├── electrical_components.rb │ │ ├── emotion.rb │ │ ├── esport.rb │ │ ├── file.rb │ │ ├── finance.rb │ │ ├── food.rb │ │ ├── funny_name.rb │ │ ├── gender.rb │ │ ├── greek_philosophers.rb │ │ ├── hacker.rb │ │ ├── hipster.rb │ │ ├── hobby.rb │ │ ├── house.rb │ │ ├── html.rb │ │ ├── id_number.rb │ │ ├── industry_segments.rb │ │ ├── internet.rb │ │ ├── internet_http.rb │ │ ├── invoice.rb │ │ ├── job.rb │ │ ├── json.rb │ │ ├── kpop.rb │ │ ├── lorem.rb │ │ ├── lorem_flickr.rb │ │ ├── markdown.rb │ │ ├── marketing.rb │ │ ├── measurement.rb │ │ ├── military.rb │ │ ├── mountain.rb │ │ ├── name.rb │ │ ├── nation.rb │ │ ├── national_health_service.rb │ │ ├── nato_phonetic_alphabet.rb │ │ ├── number.rb │ │ ├── omniauth.rb │ │ ├── phone_number.rb │ │ ├── placeholdit.rb │ │ ├── programming_language.rb │ │ ├── relationship.rb │ │ ├── religion.rb │ │ ├── restaurant.rb │ │ ├── science.rb │ │ ├── slack_emoji.rb │ │ ├── source.rb │ │ ├── south_africa.rb │ │ ├── space.rb │ │ ├── string.rb │ │ ├── stripe.rb │ │ ├── subscription.rb │ │ ├── superhero.rb │ │ ├── tea.rb │ │ ├── team.rb │ │ ├── theater.rb │ │ ├── time.rb │ │ ├── twitter.rb │ │ ├── types.rb │ │ ├── university.rb │ │ ├── vehicle.rb │ │ ├── verb.rb │ │ ├── vulnerability_identifier.rb │ │ └── world_cup.rb │ ├── fantasy │ │ └── tolkien.rb │ ├── games │ │ ├── clash_of_clans.rb │ │ ├── control.rb │ │ ├── dnd.rb │ │ ├── dota.rb │ │ ├── elder_scrolls.rb │ │ ├── fallout.rb │ │ ├── final_fantasy_xiv.rb │ │ ├── game.rb │ │ ├── half_life.rb │ │ ├── heroes.rb │ │ ├── heroes_of_the_storm.rb │ │ ├── league_of_legends.rb │ │ ├── minecraft.rb │ │ ├── myst.rb │ │ ├── overwatch.rb │ │ ├── pokemon.rb │ │ ├── sonic_the_hedgehog.rb │ │ ├── street_fighter.rb │ │ ├── super_mario.rb │ │ ├── super_smash_bros.rb │ │ ├── tarkov.rb │ │ ├── touhou.rb │ │ ├── warhammer_fantasy.rb │ │ ├── witcher.rb │ │ ├── world_of_warcraft.rb │ │ └── zelda.rb │ ├── japanese_media │ │ ├── conan.rb │ │ ├── cowboy_bebop.rb │ │ ├── doraemon.rb │ │ ├── dragon_ball.rb │ │ ├── fullmetal_alchemist_brotherhood.rb │ │ ├── kamen_rider.rb │ │ ├── naruto.rb │ │ ├── one_piece.rb │ │ ├── studio_ghibli.rb │ │ └── sword_art_online.rb │ ├── locations │ │ └── australia.rb │ ├── movies │ │ ├── avatar.rb │ │ ├── back_to_the_future.rb │ │ ├── departed.rb │ │ ├── ghostbusters.rb │ │ ├── hackers.rb │ │ ├── harry_potter.rb │ │ ├── hitchhikers_guide_to_the_galaxy.rb │ │ ├── hobbit.rb │ │ ├── how_to_train_your_dragon.rb │ │ ├── lebowski.rb │ │ ├── lord_of_the_rings.rb │ │ ├── movie.rb │ │ ├── princess_bride.rb │ │ ├── star_wars.rb │ │ ├── the_room.rb │ │ ├── tron.rb │ │ └── v_for_vendetta.rb │ ├── music │ │ ├── bossa_nova.rb │ │ ├── grateful_dead.rb │ │ ├── hiphop.rb │ │ ├── music.rb │ │ ├── opera.rb │ │ ├── pearl_jam.rb │ │ ├── phish.rb │ │ ├── prince.rb │ │ ├── rock_band.rb │ │ ├── rush.rb │ │ ├── smashing_pumpkins.rb │ │ └── umphreys_mcgee.rb │ ├── quotes │ │ ├── chiquito.rb │ │ ├── quote.rb │ │ ├── rajnikanth.rb │ │ └── shakespeare.rb │ ├── religion │ │ └── bible.rb │ ├── sports │ │ ├── basketball.rb │ │ ├── chess.rb │ │ ├── football.rb │ │ ├── mountaineering.rb │ │ ├── sport.rb │ │ └── volleyball.rb │ ├── travel │ │ ├── airport.rb │ │ └── train_station.rb │ ├── tv_shows │ │ ├── aqua_teen_hunger_force.rb │ │ ├── archer.rb │ │ ├── big_bang_theory.rb │ │ ├── bojack_horseman.rb │ │ ├── breaking_bad.rb │ │ ├── brooklyn_nine_nine.rb │ │ ├── buffy.rb │ │ ├── community.rb │ │ ├── dr_who.rb │ │ ├── dumb_and_dumber.rb │ │ ├── family_guy.rb │ │ ├── final_space.rb │ │ ├── friends.rb │ │ ├── futurama.rb │ │ ├── game_of_thrones.rb │ │ ├── hey_arnold.rb │ │ ├── how_i_met_your_mother.rb │ │ ├── michael_scott.rb │ │ ├── new_girl.rb │ │ ├── parks_and_rec.rb │ │ ├── rick_and_morty.rb │ │ ├── ru_paul.rb │ │ ├── seinfeld.rb │ │ ├── silicon_valley.rb │ │ ├── simpsons.rb │ │ ├── south_park.rb │ │ ├── spongebob.rb │ │ ├── star_trek.rb │ │ ├── stargate.rb │ │ ├── stranger_things.rb │ │ ├── suits.rb │ │ ├── supernatural.rb │ │ ├── the_expanse.rb │ │ ├── the_fresh_prince_of_bel_air.rb │ │ ├── the_it_crowd.rb │ │ ├── the_office.rb │ │ ├── the_thick_of_it.rb │ │ ├── twin_peaks.rb │ │ └── venture_bros.rb │ └── version.rb ├── helpers │ ├── base58.rb │ ├── char.rb │ ├── deprecator.rb │ ├── positional_generator.rb │ └── unique_generator.rb └── locales │ ├── README.md │ ├── ar.yml │ ├── bg.yml │ ├── ca-CAT.yml │ ├── ca.yml │ ├── da-DK.yml │ ├── de-AT.yml │ ├── de-CH.yml │ ├── de.yml │ ├── ee.yml │ ├── en-AU.yml │ ├── en-BORK.yml │ ├── en-CA.yml │ ├── en-GB.yml │ ├── en-IND.yml │ ├── en-KE.yml │ ├── en-MS.yml │ ├── en-NEP.yml │ ├── en-NG.yml │ ├── en-NZ.yml │ ├── en-PAK.yml │ ├── en-SG.yml │ ├── en-TH.yml │ ├── en-UG.yml │ ├── en-US.yml │ ├── en-ZA.yml │ ├── en-au-ocker.yml │ ├── en.yml │ ├── en │ ├── README.md │ ├── address.yml │ ├── adjective.yml │ ├── airport.yml │ ├── ancient.yml │ ├── animal.yml │ ├── app.yml │ ├── appliance.yml │ ├── aqua_teen_hunger_force.yml │ ├── archer.yml │ ├── artist.yml │ ├── australia.yml │ ├── avatar.yml │ ├── back_to_the_future.yml │ ├── bank.yml │ ├── barcode.yml │ ├── basketball.yml │ ├── beer.yml │ ├── bible.yml │ ├── big_bang_theory.yml │ ├── bird.yml │ ├── blood.yml │ ├── bojack_horseman.yml │ ├── book.yml │ ├── bossa_nova.yml │ ├── breaking_bad.yml │ ├── brooklyn_nine_nine.yml │ ├── buffy.yml │ ├── business.yml │ ├── camera.yml │ ├── cannabis.yml │ ├── cat.yml │ ├── chess.yml │ ├── chiquito.yml │ ├── chuck_norris.yml │ ├── clash_of_clan.yml │ ├── code.yml │ ├── coffee.yml │ ├── coin.yml │ ├── color.yml │ ├── commerce.yml │ ├── community.yml │ ├── company.yml │ ├── compass.yml │ ├── computer.yml │ ├── conan.yml │ ├── construction.yml │ ├── control.yml │ ├── cosmere.yml │ ├── cowboy_bebop.yml │ ├── crypto_coin.yml │ ├── culture_series.yml │ ├── currency.yml │ ├── dc_comics.yml │ ├── demographic.yml │ ├── departed.yml │ ├── dessert.yml │ ├── device.yml │ ├── dnd.yml │ ├── dog.yml │ ├── doraemon.yml │ ├── dota.yml │ ├── dr_who.yml │ ├── dragon_ball.yml │ ├── driving_license.yml │ ├── drone.yml │ ├── dumb_and_dumber.yml │ ├── dune.yml │ ├── educator.yml │ ├── elder_scrolls.yml │ ├── electrical_components.yml │ ├── emotion.yml │ ├── esport.yml │ ├── fallout.yml │ ├── family_guy.yml │ ├── file.yml │ ├── final_fantasy_xiv.yml │ ├── final_space.yml │ ├── finance.yml │ ├── food.yml │ ├── football.yml │ ├── fresh_prince_of_bel_air.yml │ ├── friends.yml │ ├── fullmetal_alchemist_brotherhood.yml │ ├── funny_name.yml │ ├── futurama.yml │ ├── game.yml │ ├── game_of_thrones.yml │ ├── gender.yml │ ├── ghostbusters.yml │ ├── grateful_dead.yml │ ├── greek_philosophers.yml │ ├── hacker.yml │ ├── hackers.yml │ ├── half_life.yml │ ├── harry_potter.yml │ ├── heroes.yml │ ├── heroes_of_the_storm.yml │ ├── hey_arnold.yml │ ├── hipster.yml │ ├── hitchhikers_guide_to_the_galaxy.yml │ ├── hobby.yml │ ├── horse.yml │ ├── house.yml │ ├── how_i_met_your_mother.yml │ ├── how_to_train_your_dragon.yml │ ├── id_number.yml │ ├── industry_segments.yml │ ├── internet.yml │ ├── invoice.yml │ ├── jack_handey.yml │ ├── job.yml │ ├── kamen_rider.yml │ ├── kpop.yml │ ├── league_of_legends.yml │ ├── lebowski.yml │ ├── lorem.yml │ ├── lovecraft.yml │ ├── markdown.yml │ ├── marketing.yml │ ├── measurement.yml │ ├── michael_scott.yml │ ├── military.yml │ ├── minecraft.yml │ ├── mitch_hedberg.yml │ ├── mountain.yml │ ├── mountaineering.yml │ ├── movie.yml │ ├── music.yml │ ├── myst.yml │ ├── name.yml │ ├── naruto.yml │ ├── nation.yml │ ├── nato_phonetic_alphabet.yml │ ├── new_girl.yml │ ├── one_piece.yml │ ├── opera.yml │ ├── overwatch.yml │ ├── parks_and_rec.yml │ ├── pearl_jam.yml │ ├── phish.yml │ ├── phone_number.yml │ ├── pokemon.yml │ ├── prince.yml │ ├── princess_bride.yml │ ├── programming_language.yml │ ├── quote.yml │ ├── rajnikanth.yml │ ├── relationship.yml │ ├── restaurant.yml │ ├── rick_and_morty.yml │ ├── rock_band.yml │ ├── rupaul.yml │ ├── rush.yml │ ├── science.yml │ ├── seinfeld.yml │ ├── shakespeare.yml │ ├── silicon_valley.yml │ ├── simpsons.yml │ ├── slack_emoji.yml │ ├── smashing_pumpkins.yml │ ├── sonic_the_hedgehog.yml │ ├── source.yml │ ├── south_park.yml │ ├── space.yml │ ├── spongebob.yml │ ├── sport.yml │ ├── star_trek.yml │ ├── star_wars.yml │ ├── stargate.yml │ ├── stranger_thing.yml │ ├── street_fighter.yml │ ├── stripe.yml │ ├── studio_ghibli.yml │ ├── subscription.yml │ ├── suits.yml │ ├── super_mario.yml │ ├── super_smash_bros.yml │ ├── superhero.yml │ ├── supernatural.yml │ ├── sword_art_online.yml │ ├── tarkov.yml │ ├── tea.yml │ ├── team.yml │ ├── the_expanse.yml │ ├── the_it_crowd.yml │ ├── the_kingkiller_chronicle.yml │ ├── the_office.yml │ ├── the_room.yml │ ├── the_thick_of_it.yml │ ├── theater.yml │ ├── tolkien.yml │ ├── touhou.yml │ ├── train_station.yml │ ├── tron.yml │ ├── twin_peaks.yml │ ├── umphreys_mcgee.yml │ ├── university.yml │ ├── v_for_vendetta.yml │ ├── vehicle.yml │ ├── venture_bros.yml │ ├── verbs.yml │ ├── volleyball.yml │ ├── warhammer_fantasy.yml │ ├── witcher.yml │ ├── world_cup.yml │ ├── world_of_warcraft.yml │ ├── yoda.yml │ └── zelda.yml │ ├── es-AR.yml │ ├── es-MX.yml │ ├── es.yml │ ├── fa.yml │ ├── fi-FI.yml │ ├── fr-CA.yml │ ├── fr-CH.yml │ ├── fr.yml │ ├── fr │ ├── address.yml │ ├── adjective.yml │ ├── ancient.yml │ ├── animal.yml │ ├── appliance.yml │ ├── book.yml │ ├── color.yml │ ├── company.yml │ ├── compass.yml │ ├── demographic.yml │ ├── gender.yml │ ├── internet.yml │ ├── lorem.yml │ ├── measurement.yml │ ├── name.yml │ ├── phone_number.yml │ └── pokemon.yml │ ├── he.yml │ ├── hy.yml │ ├── id.yml │ ├── it.yml │ ├── ja │ ├── README.md │ ├── address.yml │ ├── adjective.yml │ ├── ancient.yml │ ├── animal.yml │ ├── artist.yml │ ├── bank.yml │ ├── book.yml │ ├── cat.yml │ ├── coffee.yml │ ├── color.yml │ ├── commerce.yml │ ├── company.yml │ ├── dog.yml │ ├── emotion.yml │ ├── food.yml │ ├── football.yml │ ├── gender.yml │ ├── lorem.yml │ ├── name.yml │ ├── naruto.yml │ ├── overwatch.yml │ ├── phone_number.yml │ ├── pokemon.yml │ ├── relationship.yml │ ├── restaurant.yml │ ├── space.yml │ ├── sport.yml │ ├── studio_ghibli.yml │ ├── subscription.yml │ ├── super_mario.yml │ ├── super_smash_bros.yml │ ├── touhou.yml │ ├── university.yml │ └── zelda.yml │ ├── ko.yml │ ├── lt.yml │ ├── lv.yml │ ├── mi-NZ.yml │ ├── nb-NO.yml │ ├── nl.yml │ ├── no.yml │ ├── pl.yml │ ├── pt-BR.yml │ ├── pt.yml │ ├── ru.yml │ ├── sk.yml │ ├── sv.yml │ ├── th.yml │ ├── tr.yml │ ├── uk.yml │ ├── vi.yml │ ├── zh-CN.yml │ ├── zh-CN │ └── bank.yml │ └── zh-TW.yml ├── script ├── destroy ├── generate └── txt2html ├── tasks ├── benchmark.rake ├── reformat_yaml.rake └── test.rake └── test ├── faker ├── blockchain │ ├── test_aeternity.rb │ ├── test_bitcoin.rb │ ├── test_ethereum.rb │ └── test_tezos.rb ├── books │ ├── test_book.rb │ ├── test_dune.rb │ ├── test_faker_culture_series.rb │ ├── test_faker_dune.rb │ ├── test_lovecraft.rb │ └── test_the_kingkiller_chronicle.rb ├── creature │ ├── test_faker_animal.rb │ ├── test_faker_bird.rb │ ├── test_faker_cat.rb │ ├── test_faker_dog.rb │ └── test_faker_horse.rb ├── default │ ├── test_alphanum.rb │ ├── test_array_sample_method_compat.rb │ ├── test_avatar.rb │ ├── test_barcodes.rb │ ├── test_country_code.rb │ ├── test_faker_address.rb │ ├── test_faker_adjective.rb │ ├── test_faker_ancient.rb │ ├── test_faker_app.rb │ ├── test_faker_appliance.rb │ ├── test_faker_artist.rb │ ├── test_faker_bank.rb │ ├── test_faker_beer.rb │ ├── test_faker_birthday_in_leap_year.rb │ ├── test_faker_blood.rb │ ├── test_faker_boolean.rb │ ├── test_faker_business.rb │ ├── test_faker_camera.rb │ ├── test_faker_cannabis.rb │ ├── test_faker_char.rb │ ├── test_faker_chile_rut.rb │ ├── test_faker_chuck_norris.rb │ ├── test_faker_city.rb │ ├── test_faker_code.rb │ ├── test_faker_coffee.rb │ ├── test_faker_coin.rb │ ├── test_faker_color.rb │ ├── test_faker_commerce.rb │ ├── test_faker_company.rb │ ├── test_faker_compass.rb │ ├── test_faker_computer.rb │ ├── test_faker_construction.rb │ ├── test_faker_cosmere.rb │ ├── test_faker_crypto.rb │ ├── test_faker_crypto_coin.rb │ ├── test_faker_currency.rb │ ├── test_faker_date.rb │ ├── test_faker_dc_comics.rb │ ├── test_faker_demographic.rb │ ├── test_faker_dessert.rb │ ├── test_faker_device.rb │ ├── test_faker_driving_licence.rb │ ├── test_faker_drone.rb │ ├── test_faker_educator.rb │ ├── test_faker_electrical_components.rb │ ├── test_faker_emotion.rb │ ├── test_faker_esport.rb │ ├── test_faker_file.rb │ ├── test_faker_finance.rb │ ├── test_faker_food.rb │ ├── test_faker_funny_name.rb │ ├── test_faker_gender.rb │ ├── test_faker_greek_philosophers.rb │ ├── test_faker_hacker_talk.rb │ ├── test_faker_hipster.rb │ ├── test_faker_hobby.rb │ ├── test_faker_house.rb │ ├── test_faker_html.rb │ ├── test_faker_id_number.rb │ ├── test_faker_industry_segments.rb │ ├── test_faker_internet.rb │ ├── test_faker_internet_http.rb │ ├── test_faker_job.rb │ ├── test_faker_job_locale.rb │ ├── test_faker_json.rb │ ├── test_faker_kpop.rb │ ├── test_faker_lorem.rb │ ├── test_faker_lorem_flickr.rb │ ├── test_faker_markdown.rb │ ├── test_faker_marketing.rb │ ├── test_faker_measurement.rb │ ├── test_faker_military.rb │ ├── test_faker_mountain.rb │ ├── test_faker_name.rb │ ├── test_faker_nation.rb │ ├── test_faker_national_health_service.rb │ ├── test_faker_number.rb │ ├── test_faker_omniauth.rb │ ├── test_faker_phone_number.rb │ ├── test_faker_programming_language.rb │ ├── test_faker_relationship.rb │ ├── test_faker_restaurant.rb │ ├── test_faker_science.rb │ ├── test_faker_slack_emoji.rb │ ├── test_faker_source.rb │ ├── test_faker_south_africa.rb │ ├── test_faker_space.rb │ ├── test_faker_street.rb │ ├── test_faker_string.rb │ ├── test_faker_stripe.rb │ ├── test_faker_subscription.rb │ ├── test_faker_superhero.rb │ ├── test_faker_tea.rb │ ├── test_faker_team.rb │ ├── test_faker_theater.rb │ ├── test_faker_time.rb │ ├── test_faker_types.rb │ ├── test_faker_unique_generator.rb │ ├── test_faker_university.rb │ ├── test_faker_vehicle.rb │ ├── test_faker_verb.rb │ ├── test_faker_vulnerability_identifier.rb │ ├── test_faker_world_cup.rb │ ├── test_faker_zip_code.rb │ ├── test_half_life.rb │ ├── test_invoice.rb │ ├── test_nato_phonetic_alphabet.rb │ ├── test_placeholdit.rb │ └── test_twitter.rb ├── fantasy │ └── test_faker_fantasy_tolkien.rb ├── games │ ├── test_faker_clash_of_clans.rb │ ├── test_faker_control.rb │ ├── test_faker_dnd.rb │ ├── test_faker_dota.rb │ ├── test_faker_elder_scrolls.rb │ ├── test_faker_fallout.rb │ ├── test_faker_final_fantasy_xiv.rb │ ├── test_faker_game.rb │ ├── test_faker_heroes.rb │ ├── test_faker_heroes_of_the_storm.rb │ ├── test_faker_league_of_legends.rb │ ├── test_faker_minecraft.rb │ ├── test_faker_myst.rb │ ├── test_faker_overwatch.rb │ ├── test_faker_pokemon.rb │ ├── test_faker_sonic_the_hedgehog.rb │ ├── test_faker_street_fighter.rb │ ├── test_faker_super_mario.rb │ ├── test_faker_super_smash_bros.rb │ ├── test_faker_tarkov.rb │ ├── test_faker_touhou.rb │ ├── test_faker_warhammer_fantasy.rb │ ├── test_faker_witcher.rb │ ├── test_faker_world_of_warcraft.rb │ └── test_faker_zelda.rb ├── japanese_media │ ├── test_faker_conan.rb │ ├── test_faker_cowboy_bebop.rb │ ├── test_faker_doraemon.rb │ ├── test_faker_dragon_ball.rb │ ├── test_faker_fullmetal_alchemist_brotherhood.rb │ ├── test_faker_kamen_rider.rb │ ├── test_faker_one_piece.rb │ ├── test_faker_studio_ghibli.rb │ ├── test_faker_sword_art_online.rb │ └── text_faker_naruto.rb ├── locations │ └── test_faker_australia.rb ├── movies │ ├── test_faker_avatar.rb │ ├── test_faker_back_to_the_future.rb │ ├── test_faker_departed.rb │ ├── test_faker_hackers.rb │ ├── test_faker_harry_potter.rb │ ├── test_faker_hitchhikers_guide_to_the_galaxy.rb │ ├── test_faker_hobbit.rb │ ├── test_faker_how_to_train_your_dragon.rb │ ├── test_faker_lebowski.rb │ ├── test_faker_lord_of_the_rings.rb │ ├── test_faker_movie.rb │ ├── test_faker_movies_ghostbusters.rb │ ├── test_faker_princess_bride.rb │ ├── test_faker_star_wars.rb │ ├── test_faker_the_room.rb │ ├── test_faker_tron.rb │ └── test_faker_v_for_vendetta.rb ├── music │ ├── test_faker_bossa_nova.rb │ ├── test_faker_grateful_dead.rb │ ├── test_faker_hiphop.rb │ ├── test_faker_music.rb │ ├── test_faker_opera.rb │ ├── test_faker_pearl_jam.rb │ ├── test_faker_phish.rb │ ├── test_faker_prince.rb │ ├── test_faker_rock_band.rb │ ├── test_faker_rush.rb │ ├── test_faker_smashing_pumpkins.rb │ └── test_faker_umphreys_mcgee.rb ├── quotes │ ├── test_faker_chiquito.rb │ ├── test_faker_quote.rb │ ├── test_faker_rajnikanth.rb │ └── test_faker_shakespeare.rb ├── religion │ └── test_bible.rb ├── sports │ ├── test_faker_basketball.rb │ ├── test_faker_chess.rb │ ├── test_faker_football.rb │ ├── test_faker_mountaineering.rb │ ├── test_faker_sport.rb │ └── test_faker_volleyball.rb ├── travel │ ├── test_faker_airports.rb │ └── test_faker_train_station.rb └── tv_shows │ ├── spongebob.rb │ ├── test_aqua_teen_hunger_force.rb │ ├── test_archer.rb │ ├── test_big_bang_theory.rb │ ├── test_bojack_horseman.rb │ ├── test_breaking_bad.rb │ ├── test_brooklyn_nine_nine.rb │ ├── test_buffy.rb │ ├── test_community.rb │ ├── test_dr_who.rb │ ├── test_dumb_and_dumber.rb │ ├── test_family_guy.rb │ ├── test_final_space.rb │ ├── test_friends.rb │ ├── test_futurama.rb │ ├── test_game_of_thrones.rb │ ├── test_hey_arnold.rb │ ├── test_how_i_met_your_mother.rb │ ├── test_michael_scott.rb │ ├── test_new_girl.rb │ ├── test_parks_and_rec.rb │ ├── test_rick_and_morty.rb │ ├── test_ru_paul.rb │ ├── test_seinfeld.rb │ ├── test_silicon_valley.rb │ ├── test_simpsons.rb │ ├── test_south_park.rb │ ├── test_star_trek.rb │ ├── test_stargate.rb │ ├── test_stranger_things.rb │ ├── test_suits.rb │ ├── test_supernatural.rb │ ├── test_the_expanse.rb │ ├── test_the_fresh_prince_of_bel_air.rb │ ├── test_the_it_crowd.rb │ ├── test_the_office.rb │ ├── test_the_thick_of_it.rb │ ├── test_twin_peaks.rb │ └── test_venture_bros.rb ├── fixtures └── locales │ └── es-MX.json ├── helpers └── test_faker_deprecator.rb ├── support ├── assert_email_regex.rb ├── assert_not_english.rb └── deprecation.rb ├── test_ar_locale.rb ├── test_bg_locale.rb ├── test_ca_cat_locale.rb ├── test_ca_locale.rb ├── test_da_dk_locale.rb ├── test_de_at_locale.rb ├── test_de_ch_locale.rb ├── test_de_locale.rb ├── test_default_locale.rb ├── test_determinism.rb ├── test_ee_locale.rb ├── test_en_au_locale.rb ├── test_en_au_ocker_locale.rb ├── test_en_ca_locale.rb ├── test_en_gb_locale.rb ├── test_en_ind_locale.rb ├── test_en_ke_locale.rb ├── test_en_locale.rb ├── test_en_ms_locale.rb ├── test_en_nep_locale.rb ├── test_en_ng_locale.rb ├── test_en_nz_locale.rb ├── test_en_pak_locale.rb ├── test_en_sg_locale.rb ├── test_en_th_locale.rb ├── test_en_ug_locale.rb ├── test_en_us_locale.rb ├── test_en_za_locale.rb ├── test_es_ar_locale.rb ├── test_es_locale.rb ├── test_es_mx_locale.rb ├── test_fa_locale.rb ├── test_faker.rb ├── test_fi_locale.rb ├── test_flexible.rb ├── test_fr_ca_locale.rb ├── test_fr_ch_locale.rb ├── test_fr_locale.rb ├── test_he_locale.rb ├── test_helper.rb ├── test_hy_locale.rb ├── test_i18n_reload.rb ├── test_id_locale.rb ├── test_it_locale.rb ├── test_ja_locale.rb ├── test_ko_locale.rb ├── test_locale.rb ├── test_lv_locale.rb ├── test_mi_nz_locale.rb ├── test_nb_no_locale.rb ├── test_nl_locale.rb ├── test_no_no_locale.rb ├── test_pl_locale.rb ├── test_pt_br_locale.rb ├── test_pt_locale.rb ├── test_ru_locale.rb ├── test_seeding.rb ├── test_sk_locale.rb ├── test_sv_locale.rb ├── test_th_locale.rb ├── test_tr_locale.rb ├── test_uk_locale.rb ├── test_vi_locale.rb ├── test_zh_cn_locale.rb └── test_zh_tw_locale.rb /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/ruby.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/.github/workflows/ruby.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/.yardopts -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /GENERATORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/GENERATORS.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/License.txt -------------------------------------------------------------------------------- /MAINTAINING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/MAINTAINING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/Rakefile -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/SECURITY.md -------------------------------------------------------------------------------- /bin/faker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/bin/faker -------------------------------------------------------------------------------- /custom-hooks/pre-push.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/custom-hooks/pre-push.sample -------------------------------------------------------------------------------- /doc/blockchain/aeternity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/blockchain/aeternity.md -------------------------------------------------------------------------------- /doc/blockchain/bitcoin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/blockchain/bitcoin.md -------------------------------------------------------------------------------- /doc/blockchain/ethereum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/blockchain/ethereum.md -------------------------------------------------------------------------------- /doc/blockchain/tezos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/blockchain/tezos.md -------------------------------------------------------------------------------- /doc/books/book.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/books/book.md -------------------------------------------------------------------------------- /doc/books/culture_series.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/books/culture_series.md -------------------------------------------------------------------------------- /doc/books/dune.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/books/dune.md -------------------------------------------------------------------------------- /doc/books/lovecraft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/books/lovecraft.md -------------------------------------------------------------------------------- /doc/books/the_kingkiller_chronicle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/books/the_kingkiller_chronicle.md -------------------------------------------------------------------------------- /doc/creature/animal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/creature/animal.md -------------------------------------------------------------------------------- /doc/creature/bird.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/creature/bird.md -------------------------------------------------------------------------------- /doc/creature/cat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/creature/cat.md -------------------------------------------------------------------------------- /doc/creature/dog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/creature/dog.md -------------------------------------------------------------------------------- /doc/creature/horse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/creature/horse.md -------------------------------------------------------------------------------- /doc/default/address.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/address.md -------------------------------------------------------------------------------- /doc/default/adjective.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/adjective.md -------------------------------------------------------------------------------- /doc/default/alphanumeric.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/alphanumeric.md -------------------------------------------------------------------------------- /doc/default/ancient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/ancient.md -------------------------------------------------------------------------------- /doc/default/app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/app.md -------------------------------------------------------------------------------- /doc/default/appliance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/appliance.md -------------------------------------------------------------------------------- /doc/default/artist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/artist.md -------------------------------------------------------------------------------- /doc/default/avatar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/avatar.md -------------------------------------------------------------------------------- /doc/default/bank.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/bank.md -------------------------------------------------------------------------------- /doc/default/barcode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/barcode.md -------------------------------------------------------------------------------- /doc/default/beer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/beer.md -------------------------------------------------------------------------------- /doc/default/blood.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/blood.md -------------------------------------------------------------------------------- /doc/default/boolean.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/boolean.md -------------------------------------------------------------------------------- /doc/default/business.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/business.md -------------------------------------------------------------------------------- /doc/default/camera.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/camera.md -------------------------------------------------------------------------------- /doc/default/cannabis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/cannabis.md -------------------------------------------------------------------------------- /doc/default/chile_rut.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/chile_rut.md -------------------------------------------------------------------------------- /doc/default/chuck_norris.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/chuck_norris.md -------------------------------------------------------------------------------- /doc/default/code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/code.md -------------------------------------------------------------------------------- /doc/default/coffee.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/coffee.md -------------------------------------------------------------------------------- /doc/default/coin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/coin.md -------------------------------------------------------------------------------- /doc/default/color.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/color.md -------------------------------------------------------------------------------- /doc/default/commerce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/commerce.md -------------------------------------------------------------------------------- /doc/default/company.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/company.md -------------------------------------------------------------------------------- /doc/default/compass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/compass.md -------------------------------------------------------------------------------- /doc/default/computer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/computer.md -------------------------------------------------------------------------------- /doc/default/construction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/construction.md -------------------------------------------------------------------------------- /doc/default/cosmere.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/cosmere.md -------------------------------------------------------------------------------- /doc/default/crypto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/crypto.md -------------------------------------------------------------------------------- /doc/default/crypto_coin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/crypto_coin.md -------------------------------------------------------------------------------- /doc/default/currency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/currency.md -------------------------------------------------------------------------------- /doc/default/date.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/date.md -------------------------------------------------------------------------------- /doc/default/dc_comics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/dc_comics.md -------------------------------------------------------------------------------- /doc/default/demographic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/demographic.md -------------------------------------------------------------------------------- /doc/default/dessert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/dessert.md -------------------------------------------------------------------------------- /doc/default/device.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/device.md -------------------------------------------------------------------------------- /doc/default/driving_licence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/driving_licence.md -------------------------------------------------------------------------------- /doc/default/educator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/educator.md -------------------------------------------------------------------------------- /doc/default/electrical_components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/electrical_components.md -------------------------------------------------------------------------------- /doc/default/emotion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/emotion.md -------------------------------------------------------------------------------- /doc/default/esport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/esport.md -------------------------------------------------------------------------------- /doc/default/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/file.md -------------------------------------------------------------------------------- /doc/default/finance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/finance.md -------------------------------------------------------------------------------- /doc/default/food.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/food.md -------------------------------------------------------------------------------- /doc/default/funny_name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/funny_name.md -------------------------------------------------------------------------------- /doc/default/gender.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/gender.md -------------------------------------------------------------------------------- /doc/default/greek_philosophers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/greek_philosophers.md -------------------------------------------------------------------------------- /doc/default/hacker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/hacker.md -------------------------------------------------------------------------------- /doc/default/harry_potter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/harry_potter.md -------------------------------------------------------------------------------- /doc/default/hipster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/hipster.md -------------------------------------------------------------------------------- /doc/default/hobby.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/hobby.md -------------------------------------------------------------------------------- /doc/default/house.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/house.md -------------------------------------------------------------------------------- /doc/default/html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/html.md -------------------------------------------------------------------------------- /doc/default/id_number.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/id_number.md -------------------------------------------------------------------------------- /doc/default/industry_segments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/industry_segments.md -------------------------------------------------------------------------------- /doc/default/internet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/internet.md -------------------------------------------------------------------------------- /doc/default/invoice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/invoice.md -------------------------------------------------------------------------------- /doc/default/job.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/job.md -------------------------------------------------------------------------------- /doc/default/json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/json.md -------------------------------------------------------------------------------- /doc/default/kpop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/kpop.md -------------------------------------------------------------------------------- /doc/default/lorem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/lorem.md -------------------------------------------------------------------------------- /doc/default/lorem_flickr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/lorem_flickr.md -------------------------------------------------------------------------------- /doc/default/markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/markdown.md -------------------------------------------------------------------------------- /doc/default/marketing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/marketing.md -------------------------------------------------------------------------------- /doc/default/measurement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/measurement.md -------------------------------------------------------------------------------- /doc/default/military.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/military.md -------------------------------------------------------------------------------- /doc/default/mountain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/mountain.md -------------------------------------------------------------------------------- /doc/default/name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/name.md -------------------------------------------------------------------------------- /doc/default/nation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/nation.md -------------------------------------------------------------------------------- /doc/default/national_health_service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/national_health_service.md -------------------------------------------------------------------------------- /doc/default/nato_phonetic_alphabet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/nato_phonetic_alphabet.md -------------------------------------------------------------------------------- /doc/default/number.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/number.md -------------------------------------------------------------------------------- /doc/default/omniauth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/omniauth.md -------------------------------------------------------------------------------- /doc/default/phone_number.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/phone_number.md -------------------------------------------------------------------------------- /doc/default/placeholdit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/placeholdit.md -------------------------------------------------------------------------------- /doc/default/programming_language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/programming_language.md -------------------------------------------------------------------------------- /doc/default/relationship.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/relationship.md -------------------------------------------------------------------------------- /doc/default/restaurant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/restaurant.md -------------------------------------------------------------------------------- /doc/default/rock_band.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/rock_band.md -------------------------------------------------------------------------------- /doc/default/science.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/science.md -------------------------------------------------------------------------------- /doc/default/slack_emoji.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/slack_emoji.md -------------------------------------------------------------------------------- /doc/default/source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/source.md -------------------------------------------------------------------------------- /doc/default/south_africa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/south_africa.md -------------------------------------------------------------------------------- /doc/default/space.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/space.md -------------------------------------------------------------------------------- /doc/default/string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/string.md -------------------------------------------------------------------------------- /doc/default/stripe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/stripe.md -------------------------------------------------------------------------------- /doc/default/subscription.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/subscription.md -------------------------------------------------------------------------------- /doc/default/superhero.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/superhero.md -------------------------------------------------------------------------------- /doc/default/tea.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/tea.md -------------------------------------------------------------------------------- /doc/default/team.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/team.md -------------------------------------------------------------------------------- /doc/default/theater.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/theater.md -------------------------------------------------------------------------------- /doc/default/time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/time.md -------------------------------------------------------------------------------- /doc/default/types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/types.md -------------------------------------------------------------------------------- /doc/default/university.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/university.md -------------------------------------------------------------------------------- /doc/default/vehicle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/vehicle.md -------------------------------------------------------------------------------- /doc/default/verbs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/verbs.md -------------------------------------------------------------------------------- /doc/default/world_cup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/world_cup.md -------------------------------------------------------------------------------- /doc/default/x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/default/x.md -------------------------------------------------------------------------------- /doc/drone/drone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/drone/drone.md -------------------------------------------------------------------------------- /doc/fantasy/tolkien.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/fantasy/tolkien.md -------------------------------------------------------------------------------- /doc/games/clash_of_clans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/games/clash_of_clans.md -------------------------------------------------------------------------------- /doc/games/dnd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/games/dnd.md -------------------------------------------------------------------------------- /doc/games/dota.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/games/dota.md -------------------------------------------------------------------------------- /doc/games/elder_scrolls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/games/elder_scrolls.md -------------------------------------------------------------------------------- /doc/games/fallout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/games/fallout.md -------------------------------------------------------------------------------- /doc/games/final_fantasy_xiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/games/final_fantasy_xiv.md -------------------------------------------------------------------------------- /doc/games/game.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/games/game.md -------------------------------------------------------------------------------- /doc/games/half_life.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/games/half_life.md -------------------------------------------------------------------------------- /doc/games/heroes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/games/heroes.md -------------------------------------------------------------------------------- /doc/games/heroes_of_the_storm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/games/heroes_of_the_storm.md -------------------------------------------------------------------------------- /doc/games/league_of_legends.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/games/league_of_legends.md -------------------------------------------------------------------------------- /doc/games/minecraft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/games/minecraft.md -------------------------------------------------------------------------------- /doc/games/myst.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/games/myst.md -------------------------------------------------------------------------------- /doc/games/overwatch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/games/overwatch.md -------------------------------------------------------------------------------- /doc/games/pokemon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/games/pokemon.md -------------------------------------------------------------------------------- /doc/games/sonic_the_hedgehog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/games/sonic_the_hedgehog.md -------------------------------------------------------------------------------- /doc/games/street_fighter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/games/street_fighter.md -------------------------------------------------------------------------------- /doc/games/super_mario.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/games/super_mario.md -------------------------------------------------------------------------------- /doc/games/super_smash_bros.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/games/super_smash_bros.md -------------------------------------------------------------------------------- /doc/games/touhou.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/games/touhou.md -------------------------------------------------------------------------------- /doc/games/warhammer_fantasy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/games/warhammer_fantasy.md -------------------------------------------------------------------------------- /doc/games/witcher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/games/witcher.md -------------------------------------------------------------------------------- /doc/games/world_of_warcraft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/games/world_of_warcraft.md -------------------------------------------------------------------------------- /doc/games/zelda.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/games/zelda.md -------------------------------------------------------------------------------- /doc/internet/http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/internet/http.md -------------------------------------------------------------------------------- /doc/japanese_media/conan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/japanese_media/conan.md -------------------------------------------------------------------------------- /doc/japanese_media/cowboy_bebop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/japanese_media/cowboy_bebop.md -------------------------------------------------------------------------------- /doc/japanese_media/doraemon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/japanese_media/doraemon.md -------------------------------------------------------------------------------- /doc/japanese_media/dragon_ball.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/japanese_media/dragon_ball.md -------------------------------------------------------------------------------- /doc/japanese_media/kamen_rider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/japanese_media/kamen_rider.md -------------------------------------------------------------------------------- /doc/japanese_media/naruto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/japanese_media/naruto.md -------------------------------------------------------------------------------- /doc/japanese_media/one_piece.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/japanese_media/one_piece.md -------------------------------------------------------------------------------- /doc/japanese_media/studio_ghibli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/japanese_media/studio_ghibli.md -------------------------------------------------------------------------------- /doc/japanese_media/sword_art_online.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/japanese_media/sword_art_online.md -------------------------------------------------------------------------------- /doc/locations/australia.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/locations/australia.md -------------------------------------------------------------------------------- /doc/movies/avatar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/movies/avatar.md -------------------------------------------------------------------------------- /doc/movies/back_to_the_future.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/movies/back_to_the_future.md -------------------------------------------------------------------------------- /doc/movies/departed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/movies/departed.md -------------------------------------------------------------------------------- /doc/movies/ghostbusters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/movies/ghostbusters.md -------------------------------------------------------------------------------- /doc/movies/grateful_dead.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/movies/grateful_dead.md -------------------------------------------------------------------------------- /doc/movies/harry_potter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/movies/harry_potter.md -------------------------------------------------------------------------------- /doc/movies/hobbit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/movies/hobbit.md -------------------------------------------------------------------------------- /doc/movies/how_to_train_your_dragon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/movies/how_to_train_your_dragon.md -------------------------------------------------------------------------------- /doc/movies/lebowski.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/movies/lebowski.md -------------------------------------------------------------------------------- /doc/movies/lord_of_the_rings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/movies/lord_of_the_rings.md -------------------------------------------------------------------------------- /doc/movies/movie.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/movies/movie.md -------------------------------------------------------------------------------- /doc/movies/princess_bride.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/movies/princess_bride.md -------------------------------------------------------------------------------- /doc/movies/star_wars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/movies/star_wars.md -------------------------------------------------------------------------------- /doc/movies/the_room.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/movies/the_room.md -------------------------------------------------------------------------------- /doc/movies/tron.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/movies/tron.md -------------------------------------------------------------------------------- /doc/movies/v_for_vendetta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/movies/v_for_vendetta.md -------------------------------------------------------------------------------- /doc/music/bossa_nova.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/music/bossa_nova.md -------------------------------------------------------------------------------- /doc/music/grateful_dead.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/music/grateful_dead.md -------------------------------------------------------------------------------- /doc/music/hiphop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/music/hiphop.md -------------------------------------------------------------------------------- /doc/music/music.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/music/music.md -------------------------------------------------------------------------------- /doc/music/opera.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/music/opera.md -------------------------------------------------------------------------------- /doc/music/pearl_jam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/music/pearl_jam.md -------------------------------------------------------------------------------- /doc/music/phish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/music/phish.md -------------------------------------------------------------------------------- /doc/music/prince.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/music/prince.md -------------------------------------------------------------------------------- /doc/music/rock_band.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/music/rock_band.md -------------------------------------------------------------------------------- /doc/music/rush.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/music/rush.md -------------------------------------------------------------------------------- /doc/music/smashing_pumpkins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/music/smashing_pumpkins.md -------------------------------------------------------------------------------- /doc/music/umphreys_mcgee.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/music/umphreys_mcgee.md -------------------------------------------------------------------------------- /doc/quotes/chiquito.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/quotes/chiquito.md -------------------------------------------------------------------------------- /doc/quotes/quote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/quotes/quote.md -------------------------------------------------------------------------------- /doc/quotes/rajnikanth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/quotes/rajnikanth.md -------------------------------------------------------------------------------- /doc/quotes/shakespeare.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/quotes/shakespeare.md -------------------------------------------------------------------------------- /doc/religion/bible.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/religion/bible.md -------------------------------------------------------------------------------- /doc/sports/basketball.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/sports/basketball.md -------------------------------------------------------------------------------- /doc/sports/chess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/sports/chess.md -------------------------------------------------------------------------------- /doc/sports/football.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/sports/football.md -------------------------------------------------------------------------------- /doc/sports/mountaineering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/sports/mountaineering.md -------------------------------------------------------------------------------- /doc/sports/sport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/sports/sport.md -------------------------------------------------------------------------------- /doc/sports/volleyball.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/sports/volleyball.md -------------------------------------------------------------------------------- /doc/travel/airport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/travel/airport.md -------------------------------------------------------------------------------- /doc/travel/train_station.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/travel/train_station.md -------------------------------------------------------------------------------- /doc/tv_shows/aqua_teen_hunger_force.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/tv_shows/aqua_teen_hunger_force.md -------------------------------------------------------------------------------- /doc/tv_shows/archer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/tv_shows/archer.md -------------------------------------------------------------------------------- /doc/tv_shows/big_bang_theory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/tv_shows/big_bang_theory.md -------------------------------------------------------------------------------- /doc/tv_shows/bojack_horseman.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/tv_shows/bojack_horseman.md -------------------------------------------------------------------------------- /doc/tv_shows/breaking_bad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/tv_shows/breaking_bad.md -------------------------------------------------------------------------------- /doc/tv_shows/brooklyn_nine_nine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/tv_shows/brooklyn_nine_nine.md -------------------------------------------------------------------------------- /doc/tv_shows/buffy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/tv_shows/buffy.md -------------------------------------------------------------------------------- /doc/tv_shows/community.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/tv_shows/community.md -------------------------------------------------------------------------------- /doc/tv_shows/dr_who.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/tv_shows/dr_who.md -------------------------------------------------------------------------------- /doc/tv_shows/dumb_and_dumber.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/tv_shows/dumb_and_dumber.md -------------------------------------------------------------------------------- /doc/tv_shows/family_guy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/tv_shows/family_guy.md -------------------------------------------------------------------------------- /doc/tv_shows/final_space.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/tv_shows/final_space.md -------------------------------------------------------------------------------- /doc/tv_shows/friends.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/tv_shows/friends.md -------------------------------------------------------------------------------- /doc/tv_shows/game_of_thrones.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/tv_shows/game_of_thrones.md -------------------------------------------------------------------------------- /doc/tv_shows/hey_arnold.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/tv_shows/hey_arnold.md -------------------------------------------------------------------------------- /doc/tv_shows/how_i_met_your_mother.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/tv_shows/how_i_met_your_mother.md -------------------------------------------------------------------------------- /doc/tv_shows/michael_scott.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/tv_shows/michael_scott.md -------------------------------------------------------------------------------- /doc/tv_shows/new_girl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/tv_shows/new_girl.md -------------------------------------------------------------------------------- /doc/tv_shows/parks_and_rec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/tv_shows/parks_and_rec.md -------------------------------------------------------------------------------- /doc/tv_shows/rick_and_morty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/tv_shows/rick_and_morty.md -------------------------------------------------------------------------------- /doc/tv_shows/rupaul.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/tv_shows/rupaul.md -------------------------------------------------------------------------------- /doc/tv_shows/seinfeld.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/tv_shows/seinfeld.md -------------------------------------------------------------------------------- /doc/tv_shows/silicon_valley.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/tv_shows/silicon_valley.md -------------------------------------------------------------------------------- /doc/tv_shows/simpsons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/tv_shows/simpsons.md -------------------------------------------------------------------------------- /doc/tv_shows/south_park.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/tv_shows/south_park.md -------------------------------------------------------------------------------- /doc/tv_shows/spongebob.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/tv_shows/spongebob.md -------------------------------------------------------------------------------- /doc/tv_shows/star_trek.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/tv_shows/star_trek.md -------------------------------------------------------------------------------- /doc/tv_shows/stargate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/tv_shows/stargate.md -------------------------------------------------------------------------------- /doc/tv_shows/stranger_things.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/tv_shows/stranger_things.md -------------------------------------------------------------------------------- /doc/tv_shows/suits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/tv_shows/suits.md -------------------------------------------------------------------------------- /doc/tv_shows/supernatural.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/tv_shows/supernatural.md -------------------------------------------------------------------------------- /doc/tv_shows/the_expanse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/tv_shows/the_expanse.md -------------------------------------------------------------------------------- /doc/tv_shows/the_it_crowd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/tv_shows/the_it_crowd.md -------------------------------------------------------------------------------- /doc/tv_shows/the_office.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/tv_shows/the_office.md -------------------------------------------------------------------------------- /doc/tv_shows/the_thick_of_it.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/tv_shows/the_thick_of_it.md -------------------------------------------------------------------------------- /doc/tv_shows/twin_peaks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/tv_shows/twin_peaks.md -------------------------------------------------------------------------------- /doc/tv_shows/venture_bros.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/doc/tv_shows/venture_bros.md -------------------------------------------------------------------------------- /faker.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/faker.gemspec -------------------------------------------------------------------------------- /lib/faker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker.rb -------------------------------------------------------------------------------- /lib/faker/blockchain/aeternity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/blockchain/aeternity.rb -------------------------------------------------------------------------------- /lib/faker/blockchain/bitcoin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/blockchain/bitcoin.rb -------------------------------------------------------------------------------- /lib/faker/blockchain/ethereum.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/blockchain/ethereum.rb -------------------------------------------------------------------------------- /lib/faker/blockchain/tezos.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/blockchain/tezos.rb -------------------------------------------------------------------------------- /lib/faker/books/book.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/books/book.rb -------------------------------------------------------------------------------- /lib/faker/books/culture_series.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/books/culture_series.rb -------------------------------------------------------------------------------- /lib/faker/books/dune.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/books/dune.rb -------------------------------------------------------------------------------- /lib/faker/books/lovecraft.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/books/lovecraft.rb -------------------------------------------------------------------------------- /lib/faker/creature/animal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/creature/animal.rb -------------------------------------------------------------------------------- /lib/faker/creature/bird.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/creature/bird.rb -------------------------------------------------------------------------------- /lib/faker/creature/cat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/creature/cat.rb -------------------------------------------------------------------------------- /lib/faker/creature/dog.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/creature/dog.rb -------------------------------------------------------------------------------- /lib/faker/creature/horse.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/creature/horse.rb -------------------------------------------------------------------------------- /lib/faker/default/address.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/address.rb -------------------------------------------------------------------------------- /lib/faker/default/adjective.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/adjective.rb -------------------------------------------------------------------------------- /lib/faker/default/alphanumeric.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/alphanumeric.rb -------------------------------------------------------------------------------- /lib/faker/default/ancient.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/ancient.rb -------------------------------------------------------------------------------- /lib/faker/default/app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/app.rb -------------------------------------------------------------------------------- /lib/faker/default/appliance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/appliance.rb -------------------------------------------------------------------------------- /lib/faker/default/artist.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/artist.rb -------------------------------------------------------------------------------- /lib/faker/default/avatar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/avatar.rb -------------------------------------------------------------------------------- /lib/faker/default/bank.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/bank.rb -------------------------------------------------------------------------------- /lib/faker/default/barcode.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/barcode.rb -------------------------------------------------------------------------------- /lib/faker/default/beer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/beer.rb -------------------------------------------------------------------------------- /lib/faker/default/blood.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/blood.rb -------------------------------------------------------------------------------- /lib/faker/default/boolean.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/boolean.rb -------------------------------------------------------------------------------- /lib/faker/default/business.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/business.rb -------------------------------------------------------------------------------- /lib/faker/default/camera.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/camera.rb -------------------------------------------------------------------------------- /lib/faker/default/cannabis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/cannabis.rb -------------------------------------------------------------------------------- /lib/faker/default/chile_rut.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/chile_rut.rb -------------------------------------------------------------------------------- /lib/faker/default/chuck_norris.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/chuck_norris.rb -------------------------------------------------------------------------------- /lib/faker/default/code.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/code.rb -------------------------------------------------------------------------------- /lib/faker/default/coffee.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/coffee.rb -------------------------------------------------------------------------------- /lib/faker/default/coin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/coin.rb -------------------------------------------------------------------------------- /lib/faker/default/color.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/color.rb -------------------------------------------------------------------------------- /lib/faker/default/commerce.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/commerce.rb -------------------------------------------------------------------------------- /lib/faker/default/company.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/company.rb -------------------------------------------------------------------------------- /lib/faker/default/compass.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/compass.rb -------------------------------------------------------------------------------- /lib/faker/default/computer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/computer.rb -------------------------------------------------------------------------------- /lib/faker/default/construction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/construction.rb -------------------------------------------------------------------------------- /lib/faker/default/cosmere.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/cosmere.rb -------------------------------------------------------------------------------- /lib/faker/default/crypto.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/crypto.rb -------------------------------------------------------------------------------- /lib/faker/default/crypto_coin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/crypto_coin.rb -------------------------------------------------------------------------------- /lib/faker/default/currency.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/currency.rb -------------------------------------------------------------------------------- /lib/faker/default/date.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/date.rb -------------------------------------------------------------------------------- /lib/faker/default/dc_comics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/dc_comics.rb -------------------------------------------------------------------------------- /lib/faker/default/demographic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/demographic.rb -------------------------------------------------------------------------------- /lib/faker/default/dessert.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/dessert.rb -------------------------------------------------------------------------------- /lib/faker/default/device.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/device.rb -------------------------------------------------------------------------------- /lib/faker/default/driving_licence.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/driving_licence.rb -------------------------------------------------------------------------------- /lib/faker/default/drone.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/drone.rb -------------------------------------------------------------------------------- /lib/faker/default/educator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/educator.rb -------------------------------------------------------------------------------- /lib/faker/default/emotion.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/emotion.rb -------------------------------------------------------------------------------- /lib/faker/default/esport.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/esport.rb -------------------------------------------------------------------------------- /lib/faker/default/file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/file.rb -------------------------------------------------------------------------------- /lib/faker/default/finance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/finance.rb -------------------------------------------------------------------------------- /lib/faker/default/food.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/food.rb -------------------------------------------------------------------------------- /lib/faker/default/funny_name.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/funny_name.rb -------------------------------------------------------------------------------- /lib/faker/default/gender.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/gender.rb -------------------------------------------------------------------------------- /lib/faker/default/hacker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/hacker.rb -------------------------------------------------------------------------------- /lib/faker/default/hipster.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/hipster.rb -------------------------------------------------------------------------------- /lib/faker/default/hobby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/hobby.rb -------------------------------------------------------------------------------- /lib/faker/default/house.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/house.rb -------------------------------------------------------------------------------- /lib/faker/default/html.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/html.rb -------------------------------------------------------------------------------- /lib/faker/default/id_number.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/id_number.rb -------------------------------------------------------------------------------- /lib/faker/default/industry_segments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/industry_segments.rb -------------------------------------------------------------------------------- /lib/faker/default/internet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/internet.rb -------------------------------------------------------------------------------- /lib/faker/default/internet_http.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/internet_http.rb -------------------------------------------------------------------------------- /lib/faker/default/invoice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/invoice.rb -------------------------------------------------------------------------------- /lib/faker/default/job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/job.rb -------------------------------------------------------------------------------- /lib/faker/default/json.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/json.rb -------------------------------------------------------------------------------- /lib/faker/default/kpop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/kpop.rb -------------------------------------------------------------------------------- /lib/faker/default/lorem.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/lorem.rb -------------------------------------------------------------------------------- /lib/faker/default/lorem_flickr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/lorem_flickr.rb -------------------------------------------------------------------------------- /lib/faker/default/markdown.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/markdown.rb -------------------------------------------------------------------------------- /lib/faker/default/marketing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/marketing.rb -------------------------------------------------------------------------------- /lib/faker/default/measurement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/measurement.rb -------------------------------------------------------------------------------- /lib/faker/default/military.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/military.rb -------------------------------------------------------------------------------- /lib/faker/default/mountain.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/mountain.rb -------------------------------------------------------------------------------- /lib/faker/default/name.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/name.rb -------------------------------------------------------------------------------- /lib/faker/default/nation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/nation.rb -------------------------------------------------------------------------------- /lib/faker/default/number.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/number.rb -------------------------------------------------------------------------------- /lib/faker/default/omniauth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/omniauth.rb -------------------------------------------------------------------------------- /lib/faker/default/phone_number.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/phone_number.rb -------------------------------------------------------------------------------- /lib/faker/default/placeholdit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/placeholdit.rb -------------------------------------------------------------------------------- /lib/faker/default/relationship.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/relationship.rb -------------------------------------------------------------------------------- /lib/faker/default/religion.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/religion.rb -------------------------------------------------------------------------------- /lib/faker/default/restaurant.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/restaurant.rb -------------------------------------------------------------------------------- /lib/faker/default/science.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/science.rb -------------------------------------------------------------------------------- /lib/faker/default/slack_emoji.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/slack_emoji.rb -------------------------------------------------------------------------------- /lib/faker/default/source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/source.rb -------------------------------------------------------------------------------- /lib/faker/default/south_africa.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/south_africa.rb -------------------------------------------------------------------------------- /lib/faker/default/space.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/space.rb -------------------------------------------------------------------------------- /lib/faker/default/string.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/string.rb -------------------------------------------------------------------------------- /lib/faker/default/stripe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/stripe.rb -------------------------------------------------------------------------------- /lib/faker/default/subscription.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/subscription.rb -------------------------------------------------------------------------------- /lib/faker/default/superhero.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/superhero.rb -------------------------------------------------------------------------------- /lib/faker/default/tea.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/tea.rb -------------------------------------------------------------------------------- /lib/faker/default/team.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/team.rb -------------------------------------------------------------------------------- /lib/faker/default/theater.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/theater.rb -------------------------------------------------------------------------------- /lib/faker/default/time.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/time.rb -------------------------------------------------------------------------------- /lib/faker/default/twitter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/twitter.rb -------------------------------------------------------------------------------- /lib/faker/default/types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/types.rb -------------------------------------------------------------------------------- /lib/faker/default/university.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/university.rb -------------------------------------------------------------------------------- /lib/faker/default/vehicle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/vehicle.rb -------------------------------------------------------------------------------- /lib/faker/default/verb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/verb.rb -------------------------------------------------------------------------------- /lib/faker/default/world_cup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/default/world_cup.rb -------------------------------------------------------------------------------- /lib/faker/fantasy/tolkien.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/fantasy/tolkien.rb -------------------------------------------------------------------------------- /lib/faker/games/clash_of_clans.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/games/clash_of_clans.rb -------------------------------------------------------------------------------- /lib/faker/games/control.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/games/control.rb -------------------------------------------------------------------------------- /lib/faker/games/dnd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/games/dnd.rb -------------------------------------------------------------------------------- /lib/faker/games/dota.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/games/dota.rb -------------------------------------------------------------------------------- /lib/faker/games/elder_scrolls.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/games/elder_scrolls.rb -------------------------------------------------------------------------------- /lib/faker/games/fallout.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/games/fallout.rb -------------------------------------------------------------------------------- /lib/faker/games/final_fantasy_xiv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/games/final_fantasy_xiv.rb -------------------------------------------------------------------------------- /lib/faker/games/game.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/games/game.rb -------------------------------------------------------------------------------- /lib/faker/games/half_life.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/games/half_life.rb -------------------------------------------------------------------------------- /lib/faker/games/heroes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/games/heroes.rb -------------------------------------------------------------------------------- /lib/faker/games/heroes_of_the_storm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/games/heroes_of_the_storm.rb -------------------------------------------------------------------------------- /lib/faker/games/league_of_legends.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/games/league_of_legends.rb -------------------------------------------------------------------------------- /lib/faker/games/minecraft.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/games/minecraft.rb -------------------------------------------------------------------------------- /lib/faker/games/myst.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/games/myst.rb -------------------------------------------------------------------------------- /lib/faker/games/overwatch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/games/overwatch.rb -------------------------------------------------------------------------------- /lib/faker/games/pokemon.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/games/pokemon.rb -------------------------------------------------------------------------------- /lib/faker/games/sonic_the_hedgehog.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/games/sonic_the_hedgehog.rb -------------------------------------------------------------------------------- /lib/faker/games/street_fighter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/games/street_fighter.rb -------------------------------------------------------------------------------- /lib/faker/games/super_mario.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/games/super_mario.rb -------------------------------------------------------------------------------- /lib/faker/games/super_smash_bros.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/games/super_smash_bros.rb -------------------------------------------------------------------------------- /lib/faker/games/tarkov.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/games/tarkov.rb -------------------------------------------------------------------------------- /lib/faker/games/touhou.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/games/touhou.rb -------------------------------------------------------------------------------- /lib/faker/games/warhammer_fantasy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/games/warhammer_fantasy.rb -------------------------------------------------------------------------------- /lib/faker/games/witcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/games/witcher.rb -------------------------------------------------------------------------------- /lib/faker/games/world_of_warcraft.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/games/world_of_warcraft.rb -------------------------------------------------------------------------------- /lib/faker/games/zelda.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/games/zelda.rb -------------------------------------------------------------------------------- /lib/faker/japanese_media/conan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/japanese_media/conan.rb -------------------------------------------------------------------------------- /lib/faker/japanese_media/doraemon.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/japanese_media/doraemon.rb -------------------------------------------------------------------------------- /lib/faker/japanese_media/naruto.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/japanese_media/naruto.rb -------------------------------------------------------------------------------- /lib/faker/japanese_media/one_piece.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/japanese_media/one_piece.rb -------------------------------------------------------------------------------- /lib/faker/locations/australia.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/locations/australia.rb -------------------------------------------------------------------------------- /lib/faker/movies/avatar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/movies/avatar.rb -------------------------------------------------------------------------------- /lib/faker/movies/back_to_the_future.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/movies/back_to_the_future.rb -------------------------------------------------------------------------------- /lib/faker/movies/departed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/movies/departed.rb -------------------------------------------------------------------------------- /lib/faker/movies/ghostbusters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/movies/ghostbusters.rb -------------------------------------------------------------------------------- /lib/faker/movies/hackers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/movies/hackers.rb -------------------------------------------------------------------------------- /lib/faker/movies/harry_potter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/movies/harry_potter.rb -------------------------------------------------------------------------------- /lib/faker/movies/hobbit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/movies/hobbit.rb -------------------------------------------------------------------------------- /lib/faker/movies/lebowski.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/movies/lebowski.rb -------------------------------------------------------------------------------- /lib/faker/movies/lord_of_the_rings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/movies/lord_of_the_rings.rb -------------------------------------------------------------------------------- /lib/faker/movies/movie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/movies/movie.rb -------------------------------------------------------------------------------- /lib/faker/movies/princess_bride.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/movies/princess_bride.rb -------------------------------------------------------------------------------- /lib/faker/movies/star_wars.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/movies/star_wars.rb -------------------------------------------------------------------------------- /lib/faker/movies/the_room.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/movies/the_room.rb -------------------------------------------------------------------------------- /lib/faker/movies/tron.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/movies/tron.rb -------------------------------------------------------------------------------- /lib/faker/movies/v_for_vendetta.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/movies/v_for_vendetta.rb -------------------------------------------------------------------------------- /lib/faker/music/bossa_nova.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/music/bossa_nova.rb -------------------------------------------------------------------------------- /lib/faker/music/grateful_dead.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/music/grateful_dead.rb -------------------------------------------------------------------------------- /lib/faker/music/hiphop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/music/hiphop.rb -------------------------------------------------------------------------------- /lib/faker/music/music.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/music/music.rb -------------------------------------------------------------------------------- /lib/faker/music/opera.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/music/opera.rb -------------------------------------------------------------------------------- /lib/faker/music/pearl_jam.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/music/pearl_jam.rb -------------------------------------------------------------------------------- /lib/faker/music/phish.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/music/phish.rb -------------------------------------------------------------------------------- /lib/faker/music/prince.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/music/prince.rb -------------------------------------------------------------------------------- /lib/faker/music/rock_band.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/music/rock_band.rb -------------------------------------------------------------------------------- /lib/faker/music/rush.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/music/rush.rb -------------------------------------------------------------------------------- /lib/faker/music/smashing_pumpkins.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/music/smashing_pumpkins.rb -------------------------------------------------------------------------------- /lib/faker/music/umphreys_mcgee.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/music/umphreys_mcgee.rb -------------------------------------------------------------------------------- /lib/faker/quotes/chiquito.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/quotes/chiquito.rb -------------------------------------------------------------------------------- /lib/faker/quotes/quote.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/quotes/quote.rb -------------------------------------------------------------------------------- /lib/faker/quotes/rajnikanth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/quotes/rajnikanth.rb -------------------------------------------------------------------------------- /lib/faker/quotes/shakespeare.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/quotes/shakespeare.rb -------------------------------------------------------------------------------- /lib/faker/religion/bible.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/religion/bible.rb -------------------------------------------------------------------------------- /lib/faker/sports/basketball.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/sports/basketball.rb -------------------------------------------------------------------------------- /lib/faker/sports/chess.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/sports/chess.rb -------------------------------------------------------------------------------- /lib/faker/sports/football.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/sports/football.rb -------------------------------------------------------------------------------- /lib/faker/sports/mountaineering.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/sports/mountaineering.rb -------------------------------------------------------------------------------- /lib/faker/sports/sport.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/sports/sport.rb -------------------------------------------------------------------------------- /lib/faker/sports/volleyball.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/sports/volleyball.rb -------------------------------------------------------------------------------- /lib/faker/travel/airport.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/travel/airport.rb -------------------------------------------------------------------------------- /lib/faker/travel/train_station.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/travel/train_station.rb -------------------------------------------------------------------------------- /lib/faker/tv_shows/archer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/tv_shows/archer.rb -------------------------------------------------------------------------------- /lib/faker/tv_shows/big_bang_theory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/tv_shows/big_bang_theory.rb -------------------------------------------------------------------------------- /lib/faker/tv_shows/bojack_horseman.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/tv_shows/bojack_horseman.rb -------------------------------------------------------------------------------- /lib/faker/tv_shows/breaking_bad.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/tv_shows/breaking_bad.rb -------------------------------------------------------------------------------- /lib/faker/tv_shows/buffy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/tv_shows/buffy.rb -------------------------------------------------------------------------------- /lib/faker/tv_shows/community.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/tv_shows/community.rb -------------------------------------------------------------------------------- /lib/faker/tv_shows/dr_who.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/tv_shows/dr_who.rb -------------------------------------------------------------------------------- /lib/faker/tv_shows/dumb_and_dumber.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/tv_shows/dumb_and_dumber.rb -------------------------------------------------------------------------------- /lib/faker/tv_shows/family_guy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/tv_shows/family_guy.rb -------------------------------------------------------------------------------- /lib/faker/tv_shows/final_space.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/tv_shows/final_space.rb -------------------------------------------------------------------------------- /lib/faker/tv_shows/friends.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/tv_shows/friends.rb -------------------------------------------------------------------------------- /lib/faker/tv_shows/futurama.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/tv_shows/futurama.rb -------------------------------------------------------------------------------- /lib/faker/tv_shows/game_of_thrones.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/tv_shows/game_of_thrones.rb -------------------------------------------------------------------------------- /lib/faker/tv_shows/hey_arnold.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/tv_shows/hey_arnold.rb -------------------------------------------------------------------------------- /lib/faker/tv_shows/michael_scott.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/tv_shows/michael_scott.rb -------------------------------------------------------------------------------- /lib/faker/tv_shows/new_girl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/tv_shows/new_girl.rb -------------------------------------------------------------------------------- /lib/faker/tv_shows/parks_and_rec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/tv_shows/parks_and_rec.rb -------------------------------------------------------------------------------- /lib/faker/tv_shows/rick_and_morty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/tv_shows/rick_and_morty.rb -------------------------------------------------------------------------------- /lib/faker/tv_shows/ru_paul.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/tv_shows/ru_paul.rb -------------------------------------------------------------------------------- /lib/faker/tv_shows/seinfeld.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/tv_shows/seinfeld.rb -------------------------------------------------------------------------------- /lib/faker/tv_shows/silicon_valley.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/tv_shows/silicon_valley.rb -------------------------------------------------------------------------------- /lib/faker/tv_shows/simpsons.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/tv_shows/simpsons.rb -------------------------------------------------------------------------------- /lib/faker/tv_shows/south_park.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/tv_shows/south_park.rb -------------------------------------------------------------------------------- /lib/faker/tv_shows/spongebob.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/tv_shows/spongebob.rb -------------------------------------------------------------------------------- /lib/faker/tv_shows/star_trek.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/tv_shows/star_trek.rb -------------------------------------------------------------------------------- /lib/faker/tv_shows/stargate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/tv_shows/stargate.rb -------------------------------------------------------------------------------- /lib/faker/tv_shows/stranger_things.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/tv_shows/stranger_things.rb -------------------------------------------------------------------------------- /lib/faker/tv_shows/suits.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/tv_shows/suits.rb -------------------------------------------------------------------------------- /lib/faker/tv_shows/supernatural.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/tv_shows/supernatural.rb -------------------------------------------------------------------------------- /lib/faker/tv_shows/the_expanse.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/tv_shows/the_expanse.rb -------------------------------------------------------------------------------- /lib/faker/tv_shows/the_it_crowd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/tv_shows/the_it_crowd.rb -------------------------------------------------------------------------------- /lib/faker/tv_shows/the_office.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/tv_shows/the_office.rb -------------------------------------------------------------------------------- /lib/faker/tv_shows/the_thick_of_it.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/tv_shows/the_thick_of_it.rb -------------------------------------------------------------------------------- /lib/faker/tv_shows/twin_peaks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/tv_shows/twin_peaks.rb -------------------------------------------------------------------------------- /lib/faker/tv_shows/venture_bros.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/faker/tv_shows/venture_bros.rb -------------------------------------------------------------------------------- /lib/faker/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module Faker # :nodoc: 4 | VERSION = '3.5.3' 5 | end 6 | -------------------------------------------------------------------------------- /lib/helpers/base58.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/helpers/base58.rb -------------------------------------------------------------------------------- /lib/helpers/char.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/helpers/char.rb -------------------------------------------------------------------------------- /lib/helpers/deprecator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/helpers/deprecator.rb -------------------------------------------------------------------------------- /lib/helpers/positional_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/helpers/positional_generator.rb -------------------------------------------------------------------------------- /lib/helpers/unique_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/helpers/unique_generator.rb -------------------------------------------------------------------------------- /lib/locales/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/README.md -------------------------------------------------------------------------------- /lib/locales/ar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/ar.yml -------------------------------------------------------------------------------- /lib/locales/bg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/bg.yml -------------------------------------------------------------------------------- /lib/locales/ca-CAT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/ca-CAT.yml -------------------------------------------------------------------------------- /lib/locales/ca.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/ca.yml -------------------------------------------------------------------------------- /lib/locales/da-DK.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/da-DK.yml -------------------------------------------------------------------------------- /lib/locales/de-AT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/de-AT.yml -------------------------------------------------------------------------------- /lib/locales/de-CH.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/de-CH.yml -------------------------------------------------------------------------------- /lib/locales/de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/de.yml -------------------------------------------------------------------------------- /lib/locales/ee.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/ee.yml -------------------------------------------------------------------------------- /lib/locales/en-AU.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en-AU.yml -------------------------------------------------------------------------------- /lib/locales/en-BORK.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en-BORK.yml -------------------------------------------------------------------------------- /lib/locales/en-CA.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en-CA.yml -------------------------------------------------------------------------------- /lib/locales/en-GB.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en-GB.yml -------------------------------------------------------------------------------- /lib/locales/en-IND.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en-IND.yml -------------------------------------------------------------------------------- /lib/locales/en-KE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en-KE.yml -------------------------------------------------------------------------------- /lib/locales/en-MS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en-MS.yml -------------------------------------------------------------------------------- /lib/locales/en-NEP.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en-NEP.yml -------------------------------------------------------------------------------- /lib/locales/en-NG.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en-NG.yml -------------------------------------------------------------------------------- /lib/locales/en-NZ.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en-NZ.yml -------------------------------------------------------------------------------- /lib/locales/en-PAK.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en-PAK.yml -------------------------------------------------------------------------------- /lib/locales/en-SG.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en-SG.yml -------------------------------------------------------------------------------- /lib/locales/en-TH.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en-TH.yml -------------------------------------------------------------------------------- /lib/locales/en-UG.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en-UG.yml -------------------------------------------------------------------------------- /lib/locales/en-US.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en-US.yml -------------------------------------------------------------------------------- /lib/locales/en-ZA.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en-ZA.yml -------------------------------------------------------------------------------- /lib/locales/en-au-ocker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en-au-ocker.yml -------------------------------------------------------------------------------- /lib/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en.yml -------------------------------------------------------------------------------- /lib/locales/en/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/README.md -------------------------------------------------------------------------------- /lib/locales/en/address.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/address.yml -------------------------------------------------------------------------------- /lib/locales/en/adjective.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/adjective.yml -------------------------------------------------------------------------------- /lib/locales/en/airport.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/airport.yml -------------------------------------------------------------------------------- /lib/locales/en/ancient.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/ancient.yml -------------------------------------------------------------------------------- /lib/locales/en/animal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/animal.yml -------------------------------------------------------------------------------- /lib/locales/en/app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/app.yml -------------------------------------------------------------------------------- /lib/locales/en/appliance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/appliance.yml -------------------------------------------------------------------------------- /lib/locales/en/archer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/archer.yml -------------------------------------------------------------------------------- /lib/locales/en/artist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/artist.yml -------------------------------------------------------------------------------- /lib/locales/en/australia.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/australia.yml -------------------------------------------------------------------------------- /lib/locales/en/avatar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/avatar.yml -------------------------------------------------------------------------------- /lib/locales/en/back_to_the_future.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/back_to_the_future.yml -------------------------------------------------------------------------------- /lib/locales/en/bank.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/bank.yml -------------------------------------------------------------------------------- /lib/locales/en/barcode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/barcode.yml -------------------------------------------------------------------------------- /lib/locales/en/basketball.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/basketball.yml -------------------------------------------------------------------------------- /lib/locales/en/beer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/beer.yml -------------------------------------------------------------------------------- /lib/locales/en/bible.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/bible.yml -------------------------------------------------------------------------------- /lib/locales/en/big_bang_theory.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/big_bang_theory.yml -------------------------------------------------------------------------------- /lib/locales/en/bird.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/bird.yml -------------------------------------------------------------------------------- /lib/locales/en/blood.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/blood.yml -------------------------------------------------------------------------------- /lib/locales/en/bojack_horseman.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/bojack_horseman.yml -------------------------------------------------------------------------------- /lib/locales/en/book.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/book.yml -------------------------------------------------------------------------------- /lib/locales/en/bossa_nova.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/bossa_nova.yml -------------------------------------------------------------------------------- /lib/locales/en/breaking_bad.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/breaking_bad.yml -------------------------------------------------------------------------------- /lib/locales/en/brooklyn_nine_nine.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/brooklyn_nine_nine.yml -------------------------------------------------------------------------------- /lib/locales/en/buffy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/buffy.yml -------------------------------------------------------------------------------- /lib/locales/en/business.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/business.yml -------------------------------------------------------------------------------- /lib/locales/en/camera.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/camera.yml -------------------------------------------------------------------------------- /lib/locales/en/cannabis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/cannabis.yml -------------------------------------------------------------------------------- /lib/locales/en/cat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/cat.yml -------------------------------------------------------------------------------- /lib/locales/en/chess.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/chess.yml -------------------------------------------------------------------------------- /lib/locales/en/chiquito.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/chiquito.yml -------------------------------------------------------------------------------- /lib/locales/en/chuck_norris.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/chuck_norris.yml -------------------------------------------------------------------------------- /lib/locales/en/clash_of_clan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/clash_of_clan.yml -------------------------------------------------------------------------------- /lib/locales/en/code.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/code.yml -------------------------------------------------------------------------------- /lib/locales/en/coffee.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/coffee.yml -------------------------------------------------------------------------------- /lib/locales/en/coin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/coin.yml -------------------------------------------------------------------------------- /lib/locales/en/color.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/color.yml -------------------------------------------------------------------------------- /lib/locales/en/commerce.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/commerce.yml -------------------------------------------------------------------------------- /lib/locales/en/community.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/community.yml -------------------------------------------------------------------------------- /lib/locales/en/company.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/company.yml -------------------------------------------------------------------------------- /lib/locales/en/compass.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/compass.yml -------------------------------------------------------------------------------- /lib/locales/en/computer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/computer.yml -------------------------------------------------------------------------------- /lib/locales/en/conan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/conan.yml -------------------------------------------------------------------------------- /lib/locales/en/construction.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/construction.yml -------------------------------------------------------------------------------- /lib/locales/en/control.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/control.yml -------------------------------------------------------------------------------- /lib/locales/en/cosmere.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/cosmere.yml -------------------------------------------------------------------------------- /lib/locales/en/cowboy_bebop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/cowboy_bebop.yml -------------------------------------------------------------------------------- /lib/locales/en/crypto_coin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/crypto_coin.yml -------------------------------------------------------------------------------- /lib/locales/en/culture_series.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/culture_series.yml -------------------------------------------------------------------------------- /lib/locales/en/currency.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/currency.yml -------------------------------------------------------------------------------- /lib/locales/en/dc_comics.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/dc_comics.yml -------------------------------------------------------------------------------- /lib/locales/en/demographic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/demographic.yml -------------------------------------------------------------------------------- /lib/locales/en/departed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/departed.yml -------------------------------------------------------------------------------- /lib/locales/en/dessert.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/dessert.yml -------------------------------------------------------------------------------- /lib/locales/en/device.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/device.yml -------------------------------------------------------------------------------- /lib/locales/en/dnd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/dnd.yml -------------------------------------------------------------------------------- /lib/locales/en/dog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/dog.yml -------------------------------------------------------------------------------- /lib/locales/en/doraemon.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/doraemon.yml -------------------------------------------------------------------------------- /lib/locales/en/dota.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/dota.yml -------------------------------------------------------------------------------- /lib/locales/en/dr_who.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/dr_who.yml -------------------------------------------------------------------------------- /lib/locales/en/dragon_ball.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/dragon_ball.yml -------------------------------------------------------------------------------- /lib/locales/en/driving_license.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/driving_license.yml -------------------------------------------------------------------------------- /lib/locales/en/drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/drone.yml -------------------------------------------------------------------------------- /lib/locales/en/dumb_and_dumber.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/dumb_and_dumber.yml -------------------------------------------------------------------------------- /lib/locales/en/dune.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/dune.yml -------------------------------------------------------------------------------- /lib/locales/en/educator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/educator.yml -------------------------------------------------------------------------------- /lib/locales/en/elder_scrolls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/elder_scrolls.yml -------------------------------------------------------------------------------- /lib/locales/en/emotion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/emotion.yml -------------------------------------------------------------------------------- /lib/locales/en/esport.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/esport.yml -------------------------------------------------------------------------------- /lib/locales/en/fallout.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/fallout.yml -------------------------------------------------------------------------------- /lib/locales/en/family_guy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/family_guy.yml -------------------------------------------------------------------------------- /lib/locales/en/file.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/file.yml -------------------------------------------------------------------------------- /lib/locales/en/final_fantasy_xiv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/final_fantasy_xiv.yml -------------------------------------------------------------------------------- /lib/locales/en/final_space.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/final_space.yml -------------------------------------------------------------------------------- /lib/locales/en/finance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/finance.yml -------------------------------------------------------------------------------- /lib/locales/en/food.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/food.yml -------------------------------------------------------------------------------- /lib/locales/en/football.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/football.yml -------------------------------------------------------------------------------- /lib/locales/en/friends.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/friends.yml -------------------------------------------------------------------------------- /lib/locales/en/funny_name.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/funny_name.yml -------------------------------------------------------------------------------- /lib/locales/en/futurama.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/futurama.yml -------------------------------------------------------------------------------- /lib/locales/en/game.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/game.yml -------------------------------------------------------------------------------- /lib/locales/en/game_of_thrones.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/game_of_thrones.yml -------------------------------------------------------------------------------- /lib/locales/en/gender.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/gender.yml -------------------------------------------------------------------------------- /lib/locales/en/ghostbusters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/ghostbusters.yml -------------------------------------------------------------------------------- /lib/locales/en/grateful_dead.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/grateful_dead.yml -------------------------------------------------------------------------------- /lib/locales/en/greek_philosophers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/greek_philosophers.yml -------------------------------------------------------------------------------- /lib/locales/en/hacker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/hacker.yml -------------------------------------------------------------------------------- /lib/locales/en/hackers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/hackers.yml -------------------------------------------------------------------------------- /lib/locales/en/half_life.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/half_life.yml -------------------------------------------------------------------------------- /lib/locales/en/harry_potter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/harry_potter.yml -------------------------------------------------------------------------------- /lib/locales/en/heroes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/heroes.yml -------------------------------------------------------------------------------- /lib/locales/en/heroes_of_the_storm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/heroes_of_the_storm.yml -------------------------------------------------------------------------------- /lib/locales/en/hey_arnold.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/hey_arnold.yml -------------------------------------------------------------------------------- /lib/locales/en/hipster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/hipster.yml -------------------------------------------------------------------------------- /lib/locales/en/hobby.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/hobby.yml -------------------------------------------------------------------------------- /lib/locales/en/horse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/horse.yml -------------------------------------------------------------------------------- /lib/locales/en/house.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/house.yml -------------------------------------------------------------------------------- /lib/locales/en/id_number.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/id_number.yml -------------------------------------------------------------------------------- /lib/locales/en/industry_segments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/industry_segments.yml -------------------------------------------------------------------------------- /lib/locales/en/internet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/internet.yml -------------------------------------------------------------------------------- /lib/locales/en/invoice.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/invoice.yml -------------------------------------------------------------------------------- /lib/locales/en/jack_handey.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/jack_handey.yml -------------------------------------------------------------------------------- /lib/locales/en/job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/job.yml -------------------------------------------------------------------------------- /lib/locales/en/kamen_rider.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/kamen_rider.yml -------------------------------------------------------------------------------- /lib/locales/en/kpop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/kpop.yml -------------------------------------------------------------------------------- /lib/locales/en/league_of_legends.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/league_of_legends.yml -------------------------------------------------------------------------------- /lib/locales/en/lebowski.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/lebowski.yml -------------------------------------------------------------------------------- /lib/locales/en/lorem.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/lorem.yml -------------------------------------------------------------------------------- /lib/locales/en/lovecraft.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/lovecraft.yml -------------------------------------------------------------------------------- /lib/locales/en/markdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/markdown.yml -------------------------------------------------------------------------------- /lib/locales/en/marketing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/marketing.yml -------------------------------------------------------------------------------- /lib/locales/en/measurement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/measurement.yml -------------------------------------------------------------------------------- /lib/locales/en/michael_scott.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/michael_scott.yml -------------------------------------------------------------------------------- /lib/locales/en/military.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/military.yml -------------------------------------------------------------------------------- /lib/locales/en/minecraft.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/minecraft.yml -------------------------------------------------------------------------------- /lib/locales/en/mitch_hedberg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/mitch_hedberg.yml -------------------------------------------------------------------------------- /lib/locales/en/mountain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/mountain.yml -------------------------------------------------------------------------------- /lib/locales/en/mountaineering.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/mountaineering.yml -------------------------------------------------------------------------------- /lib/locales/en/movie.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/movie.yml -------------------------------------------------------------------------------- /lib/locales/en/music.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/music.yml -------------------------------------------------------------------------------- /lib/locales/en/myst.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/myst.yml -------------------------------------------------------------------------------- /lib/locales/en/name.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/name.yml -------------------------------------------------------------------------------- /lib/locales/en/naruto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/naruto.yml -------------------------------------------------------------------------------- /lib/locales/en/nation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/nation.yml -------------------------------------------------------------------------------- /lib/locales/en/new_girl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/new_girl.yml -------------------------------------------------------------------------------- /lib/locales/en/one_piece.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/one_piece.yml -------------------------------------------------------------------------------- /lib/locales/en/opera.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/opera.yml -------------------------------------------------------------------------------- /lib/locales/en/overwatch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/overwatch.yml -------------------------------------------------------------------------------- /lib/locales/en/parks_and_rec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/parks_and_rec.yml -------------------------------------------------------------------------------- /lib/locales/en/pearl_jam.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/pearl_jam.yml -------------------------------------------------------------------------------- /lib/locales/en/phish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/phish.yml -------------------------------------------------------------------------------- /lib/locales/en/phone_number.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/phone_number.yml -------------------------------------------------------------------------------- /lib/locales/en/pokemon.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/pokemon.yml -------------------------------------------------------------------------------- /lib/locales/en/prince.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/prince.yml -------------------------------------------------------------------------------- /lib/locales/en/princess_bride.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/princess_bride.yml -------------------------------------------------------------------------------- /lib/locales/en/quote.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/quote.yml -------------------------------------------------------------------------------- /lib/locales/en/rajnikanth.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/rajnikanth.yml -------------------------------------------------------------------------------- /lib/locales/en/relationship.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/relationship.yml -------------------------------------------------------------------------------- /lib/locales/en/restaurant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/restaurant.yml -------------------------------------------------------------------------------- /lib/locales/en/rick_and_morty.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/rick_and_morty.yml -------------------------------------------------------------------------------- /lib/locales/en/rock_band.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/rock_band.yml -------------------------------------------------------------------------------- /lib/locales/en/rupaul.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/rupaul.yml -------------------------------------------------------------------------------- /lib/locales/en/rush.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/rush.yml -------------------------------------------------------------------------------- /lib/locales/en/science.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/science.yml -------------------------------------------------------------------------------- /lib/locales/en/seinfeld.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/seinfeld.yml -------------------------------------------------------------------------------- /lib/locales/en/shakespeare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/shakespeare.yml -------------------------------------------------------------------------------- /lib/locales/en/silicon_valley.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/silicon_valley.yml -------------------------------------------------------------------------------- /lib/locales/en/simpsons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/simpsons.yml -------------------------------------------------------------------------------- /lib/locales/en/slack_emoji.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/slack_emoji.yml -------------------------------------------------------------------------------- /lib/locales/en/smashing_pumpkins.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/smashing_pumpkins.yml -------------------------------------------------------------------------------- /lib/locales/en/sonic_the_hedgehog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/sonic_the_hedgehog.yml -------------------------------------------------------------------------------- /lib/locales/en/source.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/source.yml -------------------------------------------------------------------------------- /lib/locales/en/south_park.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/south_park.yml -------------------------------------------------------------------------------- /lib/locales/en/space.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/space.yml -------------------------------------------------------------------------------- /lib/locales/en/spongebob.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/spongebob.yml -------------------------------------------------------------------------------- /lib/locales/en/sport.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/sport.yml -------------------------------------------------------------------------------- /lib/locales/en/star_trek.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/star_trek.yml -------------------------------------------------------------------------------- /lib/locales/en/star_wars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/star_wars.yml -------------------------------------------------------------------------------- /lib/locales/en/stargate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/stargate.yml -------------------------------------------------------------------------------- /lib/locales/en/stranger_thing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/stranger_thing.yml -------------------------------------------------------------------------------- /lib/locales/en/street_fighter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/street_fighter.yml -------------------------------------------------------------------------------- /lib/locales/en/stripe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/stripe.yml -------------------------------------------------------------------------------- /lib/locales/en/studio_ghibli.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/studio_ghibli.yml -------------------------------------------------------------------------------- /lib/locales/en/subscription.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/subscription.yml -------------------------------------------------------------------------------- /lib/locales/en/suits.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/suits.yml -------------------------------------------------------------------------------- /lib/locales/en/super_mario.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/super_mario.yml -------------------------------------------------------------------------------- /lib/locales/en/super_smash_bros.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/super_smash_bros.yml -------------------------------------------------------------------------------- /lib/locales/en/superhero.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/superhero.yml -------------------------------------------------------------------------------- /lib/locales/en/supernatural.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/supernatural.yml -------------------------------------------------------------------------------- /lib/locales/en/sword_art_online.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/sword_art_online.yml -------------------------------------------------------------------------------- /lib/locales/en/tarkov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/tarkov.yml -------------------------------------------------------------------------------- /lib/locales/en/tea.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/tea.yml -------------------------------------------------------------------------------- /lib/locales/en/team.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/team.yml -------------------------------------------------------------------------------- /lib/locales/en/the_expanse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/the_expanse.yml -------------------------------------------------------------------------------- /lib/locales/en/the_it_crowd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/the_it_crowd.yml -------------------------------------------------------------------------------- /lib/locales/en/the_office.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/the_office.yml -------------------------------------------------------------------------------- /lib/locales/en/the_room.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/the_room.yml -------------------------------------------------------------------------------- /lib/locales/en/the_thick_of_it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/the_thick_of_it.yml -------------------------------------------------------------------------------- /lib/locales/en/theater.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/theater.yml -------------------------------------------------------------------------------- /lib/locales/en/tolkien.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/tolkien.yml -------------------------------------------------------------------------------- /lib/locales/en/touhou.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/touhou.yml -------------------------------------------------------------------------------- /lib/locales/en/train_station.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/train_station.yml -------------------------------------------------------------------------------- /lib/locales/en/tron.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/tron.yml -------------------------------------------------------------------------------- /lib/locales/en/twin_peaks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/twin_peaks.yml -------------------------------------------------------------------------------- /lib/locales/en/umphreys_mcgee.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/umphreys_mcgee.yml -------------------------------------------------------------------------------- /lib/locales/en/university.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/university.yml -------------------------------------------------------------------------------- /lib/locales/en/v_for_vendetta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/v_for_vendetta.yml -------------------------------------------------------------------------------- /lib/locales/en/vehicle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/vehicle.yml -------------------------------------------------------------------------------- /lib/locales/en/venture_bros.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/venture_bros.yml -------------------------------------------------------------------------------- /lib/locales/en/verbs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/verbs.yml -------------------------------------------------------------------------------- /lib/locales/en/volleyball.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/volleyball.yml -------------------------------------------------------------------------------- /lib/locales/en/warhammer_fantasy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/warhammer_fantasy.yml -------------------------------------------------------------------------------- /lib/locales/en/witcher.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/witcher.yml -------------------------------------------------------------------------------- /lib/locales/en/world_cup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/world_cup.yml -------------------------------------------------------------------------------- /lib/locales/en/world_of_warcraft.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/world_of_warcraft.yml -------------------------------------------------------------------------------- /lib/locales/en/yoda.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/yoda.yml -------------------------------------------------------------------------------- /lib/locales/en/zelda.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/en/zelda.yml -------------------------------------------------------------------------------- /lib/locales/es-AR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/es-AR.yml -------------------------------------------------------------------------------- /lib/locales/es-MX.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/es-MX.yml -------------------------------------------------------------------------------- /lib/locales/es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/es.yml -------------------------------------------------------------------------------- /lib/locales/fa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/fa.yml -------------------------------------------------------------------------------- /lib/locales/fi-FI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/fi-FI.yml -------------------------------------------------------------------------------- /lib/locales/fr-CA.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/fr-CA.yml -------------------------------------------------------------------------------- /lib/locales/fr-CH.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/fr-CH.yml -------------------------------------------------------------------------------- /lib/locales/fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/fr.yml -------------------------------------------------------------------------------- /lib/locales/fr/address.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/fr/address.yml -------------------------------------------------------------------------------- /lib/locales/fr/adjective.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/fr/adjective.yml -------------------------------------------------------------------------------- /lib/locales/fr/ancient.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/fr/ancient.yml -------------------------------------------------------------------------------- /lib/locales/fr/animal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/fr/animal.yml -------------------------------------------------------------------------------- /lib/locales/fr/appliance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/fr/appliance.yml -------------------------------------------------------------------------------- /lib/locales/fr/book.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/fr/book.yml -------------------------------------------------------------------------------- /lib/locales/fr/color.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/fr/color.yml -------------------------------------------------------------------------------- /lib/locales/fr/company.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/fr/company.yml -------------------------------------------------------------------------------- /lib/locales/fr/compass.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/fr/compass.yml -------------------------------------------------------------------------------- /lib/locales/fr/demographic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/fr/demographic.yml -------------------------------------------------------------------------------- /lib/locales/fr/gender.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/fr/gender.yml -------------------------------------------------------------------------------- /lib/locales/fr/internet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/fr/internet.yml -------------------------------------------------------------------------------- /lib/locales/fr/lorem.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/fr/lorem.yml -------------------------------------------------------------------------------- /lib/locales/fr/measurement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/fr/measurement.yml -------------------------------------------------------------------------------- /lib/locales/fr/name.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/fr/name.yml -------------------------------------------------------------------------------- /lib/locales/fr/phone_number.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/fr/phone_number.yml -------------------------------------------------------------------------------- /lib/locales/fr/pokemon.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/fr/pokemon.yml -------------------------------------------------------------------------------- /lib/locales/he.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/he.yml -------------------------------------------------------------------------------- /lib/locales/hy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/hy.yml -------------------------------------------------------------------------------- /lib/locales/id.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/id.yml -------------------------------------------------------------------------------- /lib/locales/it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/it.yml -------------------------------------------------------------------------------- /lib/locales/ja/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/ja/README.md -------------------------------------------------------------------------------- /lib/locales/ja/address.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/ja/address.yml -------------------------------------------------------------------------------- /lib/locales/ja/adjective.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/ja/adjective.yml -------------------------------------------------------------------------------- /lib/locales/ja/ancient.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/ja/ancient.yml -------------------------------------------------------------------------------- /lib/locales/ja/animal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/ja/animal.yml -------------------------------------------------------------------------------- /lib/locales/ja/artist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/ja/artist.yml -------------------------------------------------------------------------------- /lib/locales/ja/bank.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/ja/bank.yml -------------------------------------------------------------------------------- /lib/locales/ja/book.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/ja/book.yml -------------------------------------------------------------------------------- /lib/locales/ja/cat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/ja/cat.yml -------------------------------------------------------------------------------- /lib/locales/ja/coffee.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/ja/coffee.yml -------------------------------------------------------------------------------- /lib/locales/ja/color.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/ja/color.yml -------------------------------------------------------------------------------- /lib/locales/ja/commerce.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/ja/commerce.yml -------------------------------------------------------------------------------- /lib/locales/ja/company.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/ja/company.yml -------------------------------------------------------------------------------- /lib/locales/ja/dog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/ja/dog.yml -------------------------------------------------------------------------------- /lib/locales/ja/emotion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/ja/emotion.yml -------------------------------------------------------------------------------- /lib/locales/ja/food.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/ja/food.yml -------------------------------------------------------------------------------- /lib/locales/ja/football.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/ja/football.yml -------------------------------------------------------------------------------- /lib/locales/ja/gender.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/ja/gender.yml -------------------------------------------------------------------------------- /lib/locales/ja/lorem.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/ja/lorem.yml -------------------------------------------------------------------------------- /lib/locales/ja/name.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/ja/name.yml -------------------------------------------------------------------------------- /lib/locales/ja/naruto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/ja/naruto.yml -------------------------------------------------------------------------------- /lib/locales/ja/overwatch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/ja/overwatch.yml -------------------------------------------------------------------------------- /lib/locales/ja/phone_number.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/ja/phone_number.yml -------------------------------------------------------------------------------- /lib/locales/ja/pokemon.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/ja/pokemon.yml -------------------------------------------------------------------------------- /lib/locales/ja/relationship.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/ja/relationship.yml -------------------------------------------------------------------------------- /lib/locales/ja/restaurant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/ja/restaurant.yml -------------------------------------------------------------------------------- /lib/locales/ja/space.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/ja/space.yml -------------------------------------------------------------------------------- /lib/locales/ja/sport.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/ja/sport.yml -------------------------------------------------------------------------------- /lib/locales/ja/studio_ghibli.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/ja/studio_ghibli.yml -------------------------------------------------------------------------------- /lib/locales/ja/subscription.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/ja/subscription.yml -------------------------------------------------------------------------------- /lib/locales/ja/super_mario.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/ja/super_mario.yml -------------------------------------------------------------------------------- /lib/locales/ja/super_smash_bros.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/ja/super_smash_bros.yml -------------------------------------------------------------------------------- /lib/locales/ja/touhou.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/ja/touhou.yml -------------------------------------------------------------------------------- /lib/locales/ja/university.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/ja/university.yml -------------------------------------------------------------------------------- /lib/locales/ja/zelda.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/ja/zelda.yml -------------------------------------------------------------------------------- /lib/locales/ko.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/ko.yml -------------------------------------------------------------------------------- /lib/locales/lt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/lt.yml -------------------------------------------------------------------------------- /lib/locales/lv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/lv.yml -------------------------------------------------------------------------------- /lib/locales/mi-NZ.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/mi-NZ.yml -------------------------------------------------------------------------------- /lib/locales/nb-NO.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/nb-NO.yml -------------------------------------------------------------------------------- /lib/locales/nl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/nl.yml -------------------------------------------------------------------------------- /lib/locales/no.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/no.yml -------------------------------------------------------------------------------- /lib/locales/pl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/pl.yml -------------------------------------------------------------------------------- /lib/locales/pt-BR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/pt-BR.yml -------------------------------------------------------------------------------- /lib/locales/pt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/pt.yml -------------------------------------------------------------------------------- /lib/locales/ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/ru.yml -------------------------------------------------------------------------------- /lib/locales/sk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/sk.yml -------------------------------------------------------------------------------- /lib/locales/sv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/sv.yml -------------------------------------------------------------------------------- /lib/locales/th.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/th.yml -------------------------------------------------------------------------------- /lib/locales/tr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/tr.yml -------------------------------------------------------------------------------- /lib/locales/uk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/uk.yml -------------------------------------------------------------------------------- /lib/locales/vi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/vi.yml -------------------------------------------------------------------------------- /lib/locales/zh-CN.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/zh-CN.yml -------------------------------------------------------------------------------- /lib/locales/zh-CN/bank.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/zh-CN/bank.yml -------------------------------------------------------------------------------- /lib/locales/zh-TW.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/lib/locales/zh-TW.yml -------------------------------------------------------------------------------- /script/destroy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/script/destroy -------------------------------------------------------------------------------- /script/generate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/script/generate -------------------------------------------------------------------------------- /script/txt2html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/script/txt2html -------------------------------------------------------------------------------- /tasks/benchmark.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/tasks/benchmark.rake -------------------------------------------------------------------------------- /tasks/reformat_yaml.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/tasks/reformat_yaml.rake -------------------------------------------------------------------------------- /tasks/test.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/tasks/test.rake -------------------------------------------------------------------------------- /test/faker/blockchain/test_bitcoin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/faker/blockchain/test_bitcoin.rb -------------------------------------------------------------------------------- /test/faker/blockchain/test_ethereum.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/faker/blockchain/test_ethereum.rb -------------------------------------------------------------------------------- /test/faker/blockchain/test_tezos.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/faker/blockchain/test_tezos.rb -------------------------------------------------------------------------------- /test/faker/books/test_book.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/faker/books/test_book.rb -------------------------------------------------------------------------------- /test/faker/books/test_dune.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/faker/books/test_dune.rb -------------------------------------------------------------------------------- /test/faker/books/test_faker_dune.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/faker/books/test_faker_dune.rb -------------------------------------------------------------------------------- /test/faker/books/test_lovecraft.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/faker/books/test_lovecraft.rb -------------------------------------------------------------------------------- /test/faker/creature/test_faker_bird.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/faker/creature/test_faker_bird.rb -------------------------------------------------------------------------------- /test/faker/creature/test_faker_cat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/faker/creature/test_faker_cat.rb -------------------------------------------------------------------------------- /test/faker/creature/test_faker_dog.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/faker/creature/test_faker_dog.rb -------------------------------------------------------------------------------- /test/faker/default/test_alphanum.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/faker/default/test_alphanum.rb -------------------------------------------------------------------------------- /test/faker/default/test_avatar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/faker/default/test_avatar.rb -------------------------------------------------------------------------------- /test/faker/default/test_barcodes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/faker/default/test_barcodes.rb -------------------------------------------------------------------------------- /test/faker/default/test_faker_app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/faker/default/test_faker_app.rb -------------------------------------------------------------------------------- /test/faker/default/test_faker_bank.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/faker/default/test_faker_bank.rb -------------------------------------------------------------------------------- /test/faker/default/test_faker_beer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/faker/default/test_faker_beer.rb -------------------------------------------------------------------------------- /test/faker/default/test_faker_blood.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/faker/default/test_faker_blood.rb -------------------------------------------------------------------------------- /test/faker/default/test_faker_char.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/faker/default/test_faker_char.rb -------------------------------------------------------------------------------- /test/faker/default/test_faker_city.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/faker/default/test_faker_city.rb -------------------------------------------------------------------------------- /test/faker/default/test_faker_code.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/faker/default/test_faker_code.rb -------------------------------------------------------------------------------- /test/faker/default/test_faker_coin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/faker/default/test_faker_coin.rb -------------------------------------------------------------------------------- /test/faker/default/test_faker_color.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/faker/default/test_faker_color.rb -------------------------------------------------------------------------------- /test/faker/default/test_faker_date.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/faker/default/test_faker_date.rb -------------------------------------------------------------------------------- /test/faker/default/test_faker_drone.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/faker/default/test_faker_drone.rb -------------------------------------------------------------------------------- /test/faker/default/test_faker_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/faker/default/test_faker_file.rb -------------------------------------------------------------------------------- /test/faker/default/test_faker_food.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/faker/default/test_faker_food.rb -------------------------------------------------------------------------------- /test/faker/default/test_faker_hobby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/faker/default/test_faker_hobby.rb -------------------------------------------------------------------------------- /test/faker/default/test_invoice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/faker/default/test_invoice.rb -------------------------------------------------------------------------------- /test/faker/default/test_twitter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/faker/default/test_twitter.rb -------------------------------------------------------------------------------- /test/faker/games/test_faker_dnd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/faker/games/test_faker_dnd.rb -------------------------------------------------------------------------------- /test/faker/games/test_faker_dota.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/faker/games/test_faker_dota.rb -------------------------------------------------------------------------------- /test/faker/games/test_faker_game.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/faker/games/test_faker_game.rb -------------------------------------------------------------------------------- /test/faker/games/test_faker_myst.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/faker/games/test_faker_myst.rb -------------------------------------------------------------------------------- /test/faker/music/test_faker_rush.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/faker/music/test_faker_rush.rb -------------------------------------------------------------------------------- /test/faker/religion/test_bible.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/faker/religion/test_bible.rb -------------------------------------------------------------------------------- /test/faker/tv_shows/spongebob.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/faker/tv_shows/spongebob.rb -------------------------------------------------------------------------------- /test/faker/tv_shows/test_archer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/faker/tv_shows/test_archer.rb -------------------------------------------------------------------------------- /test/faker/tv_shows/test_buffy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/faker/tv_shows/test_buffy.rb -------------------------------------------------------------------------------- /test/faker/tv_shows/test_dr_who.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/faker/tv_shows/test_dr_who.rb -------------------------------------------------------------------------------- /test/faker/tv_shows/test_friends.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/faker/tv_shows/test_friends.rb -------------------------------------------------------------------------------- /test/faker/tv_shows/test_ru_paul.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/faker/tv_shows/test_ru_paul.rb -------------------------------------------------------------------------------- /test/faker/tv_shows/test_suits.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/faker/tv_shows/test_suits.rb -------------------------------------------------------------------------------- /test/fixtures/locales/es-MX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/fixtures/locales/es-MX.json -------------------------------------------------------------------------------- /test/support/assert_email_regex.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/support/assert_email_regex.rb -------------------------------------------------------------------------------- /test/support/assert_not_english.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/support/assert_not_english.rb -------------------------------------------------------------------------------- /test/support/deprecation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/support/deprecation.rb -------------------------------------------------------------------------------- /test/test_ar_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_ar_locale.rb -------------------------------------------------------------------------------- /test/test_bg_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_bg_locale.rb -------------------------------------------------------------------------------- /test/test_ca_cat_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_ca_cat_locale.rb -------------------------------------------------------------------------------- /test/test_ca_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_ca_locale.rb -------------------------------------------------------------------------------- /test/test_da_dk_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_da_dk_locale.rb -------------------------------------------------------------------------------- /test/test_de_at_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_de_at_locale.rb -------------------------------------------------------------------------------- /test/test_de_ch_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_de_ch_locale.rb -------------------------------------------------------------------------------- /test/test_de_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_de_locale.rb -------------------------------------------------------------------------------- /test/test_default_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_default_locale.rb -------------------------------------------------------------------------------- /test/test_determinism.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_determinism.rb -------------------------------------------------------------------------------- /test/test_ee_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_ee_locale.rb -------------------------------------------------------------------------------- /test/test_en_au_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_en_au_locale.rb -------------------------------------------------------------------------------- /test/test_en_au_ocker_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_en_au_ocker_locale.rb -------------------------------------------------------------------------------- /test/test_en_ca_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_en_ca_locale.rb -------------------------------------------------------------------------------- /test/test_en_gb_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_en_gb_locale.rb -------------------------------------------------------------------------------- /test/test_en_ind_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_en_ind_locale.rb -------------------------------------------------------------------------------- /test/test_en_ke_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_en_ke_locale.rb -------------------------------------------------------------------------------- /test/test_en_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_en_locale.rb -------------------------------------------------------------------------------- /test/test_en_ms_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_en_ms_locale.rb -------------------------------------------------------------------------------- /test/test_en_nep_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_en_nep_locale.rb -------------------------------------------------------------------------------- /test/test_en_ng_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_en_ng_locale.rb -------------------------------------------------------------------------------- /test/test_en_nz_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_en_nz_locale.rb -------------------------------------------------------------------------------- /test/test_en_pak_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_en_pak_locale.rb -------------------------------------------------------------------------------- /test/test_en_sg_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_en_sg_locale.rb -------------------------------------------------------------------------------- /test/test_en_th_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_en_th_locale.rb -------------------------------------------------------------------------------- /test/test_en_ug_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_en_ug_locale.rb -------------------------------------------------------------------------------- /test/test_en_us_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_en_us_locale.rb -------------------------------------------------------------------------------- /test/test_en_za_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_en_za_locale.rb -------------------------------------------------------------------------------- /test/test_es_ar_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_es_ar_locale.rb -------------------------------------------------------------------------------- /test/test_es_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_es_locale.rb -------------------------------------------------------------------------------- /test/test_es_mx_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_es_mx_locale.rb -------------------------------------------------------------------------------- /test/test_fa_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_fa_locale.rb -------------------------------------------------------------------------------- /test/test_faker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_faker.rb -------------------------------------------------------------------------------- /test/test_fi_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_fi_locale.rb -------------------------------------------------------------------------------- /test/test_flexible.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_flexible.rb -------------------------------------------------------------------------------- /test/test_fr_ca_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_fr_ca_locale.rb -------------------------------------------------------------------------------- /test/test_fr_ch_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_fr_ch_locale.rb -------------------------------------------------------------------------------- /test/test_fr_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_fr_locale.rb -------------------------------------------------------------------------------- /test/test_he_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_he_locale.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /test/test_hy_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_hy_locale.rb -------------------------------------------------------------------------------- /test/test_i18n_reload.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_i18n_reload.rb -------------------------------------------------------------------------------- /test/test_id_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_id_locale.rb -------------------------------------------------------------------------------- /test/test_it_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_it_locale.rb -------------------------------------------------------------------------------- /test/test_ja_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_ja_locale.rb -------------------------------------------------------------------------------- /test/test_ko_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_ko_locale.rb -------------------------------------------------------------------------------- /test/test_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_locale.rb -------------------------------------------------------------------------------- /test/test_lv_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_lv_locale.rb -------------------------------------------------------------------------------- /test/test_mi_nz_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_mi_nz_locale.rb -------------------------------------------------------------------------------- /test/test_nb_no_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_nb_no_locale.rb -------------------------------------------------------------------------------- /test/test_nl_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_nl_locale.rb -------------------------------------------------------------------------------- /test/test_no_no_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_no_no_locale.rb -------------------------------------------------------------------------------- /test/test_pl_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_pl_locale.rb -------------------------------------------------------------------------------- /test/test_pt_br_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_pt_br_locale.rb -------------------------------------------------------------------------------- /test/test_pt_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_pt_locale.rb -------------------------------------------------------------------------------- /test/test_ru_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_ru_locale.rb -------------------------------------------------------------------------------- /test/test_seeding.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_seeding.rb -------------------------------------------------------------------------------- /test/test_sk_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_sk_locale.rb -------------------------------------------------------------------------------- /test/test_sv_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_sv_locale.rb -------------------------------------------------------------------------------- /test/test_th_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_th_locale.rb -------------------------------------------------------------------------------- /test/test_tr_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_tr_locale.rb -------------------------------------------------------------------------------- /test/test_uk_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_uk_locale.rb -------------------------------------------------------------------------------- /test/test_vi_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_vi_locale.rb -------------------------------------------------------------------------------- /test/test_zh_cn_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_zh_cn_locale.rb -------------------------------------------------------------------------------- /test/test_zh_tw_locale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-ruby/faker/HEAD/test/test_zh_tw_locale.rb --------------------------------------------------------------------------------