faker 1.8.7 → 2.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/CHANGELOG.md +1423 -6
- data/History.md +4 -4
- data/License.txt +2 -2
- data/README.md +301 -126
- data/bin/faker +5 -0
- data/lib/faker.rb +150 -61
- data/lib/faker/blockchain/aeternity.rb +70 -0
- data/lib/faker/blockchain/bitcoin.rb +60 -0
- data/lib/faker/blockchain/ethereum.rb +26 -0
- data/lib/faker/blockchain/tezos.rb +135 -0
- data/lib/faker/books/book.rb +61 -0
- data/lib/faker/books/culture_series.rb +83 -0
- data/lib/faker/books/dune.rb +132 -0
- data/lib/faker/books/lovecraft.rb +280 -0
- data/lib/faker/creature/animal.rb +22 -0
- data/lib/faker/creature/cat.rb +50 -0
- data/lib/faker/creature/dog.rb +115 -0
- data/lib/faker/creature/horse.rb +37 -0
- data/lib/faker/default/address.rb +368 -0
- data/lib/faker/default/alphanumeric.rb +73 -0
- data/lib/faker/default/ancient.rb +59 -0
- data/lib/faker/default/app.rb +77 -0
- data/lib/faker/default/appliance.rb +33 -0
- data/lib/faker/default/artist.rb +20 -0
- data/lib/faker/default/avatar.rb +60 -0
- data/lib/faker/default/bank.rb +207 -0
- data/lib/faker/default/barcode.rb +165 -0
- data/lib/faker/default/beer.rb +113 -0
- data/lib/faker/default/blood.rb +48 -0
- data/lib/faker/default/boolean.rb +26 -0
- data/lib/faker/default/bossa_nova.rb +33 -0
- data/lib/faker/default/business.rb +50 -0
- data/lib/faker/default/camera.rb +46 -0
- data/lib/faker/default/cannabis.rb +135 -0
- data/lib/faker/default/chile_rut.rb +98 -0
- data/lib/faker/default/chuck_norris.rb +25 -0
- data/lib/faker/default/code.rb +282 -0
- data/lib/faker/default/coffee.rb +82 -0
- data/lib/faker/default/coin.rb +33 -0
- data/lib/faker/default/color.rb +79 -0
- data/lib/faker/default/commerce.rb +143 -0
- data/lib/faker/default/company.rb +581 -0
- data/lib/faker/default/compass.rb +202 -0
- data/lib/faker/default/computer.rb +63 -0
- data/lib/faker/default/construction.rb +83 -0
- data/lib/faker/default/cosmere.rb +138 -0
- data/lib/faker/default/crypto.rb +48 -0
- data/lib/faker/default/crypto_coin.rb +94 -0
- data/lib/faker/default/currency.rb +46 -0
- data/lib/faker/default/date.rb +186 -0
- data/lib/faker/default/dc_comics.rb +70 -0
- data/lib/faker/default/demographic.rb +98 -0
- data/lib/faker/default/dessert.rb +48 -0
- data/lib/faker/default/device.rb +85 -0
- data/lib/faker/default/driving_licence.rb +131 -0
- data/lib/faker/default/drone.rb +332 -0
- data/lib/faker/default/educator.rb +102 -0
- data/lib/faker/default/electrical_components.rb +48 -0
- data/lib/faker/default/esport.rb +72 -0
- data/lib/faker/default/faker_adjective.rb +35 -0
- data/lib/faker/default/file.rb +100 -0
- data/lib/faker/default/fillmurray.rb +45 -0
- data/lib/faker/default/finance.rb +89 -0
- data/lib/faker/default/food.rb +113 -0
- data/lib/faker/default/funny_name.rb +90 -0
- data/lib/faker/default/gender.rb +46 -0
- data/lib/faker/default/greek_philosophers.rb +33 -0
- data/lib/faker/default/hacker.rb +103 -0
- data/lib/faker/default/hipster.rb +194 -0
- data/lib/faker/default/house.rb +33 -0
- data/lib/faker/default/id_number.rb +279 -0
- data/lib/faker/default/industry_segments.rb +61 -0
- data/lib/faker/default/internet.rb +584 -0
- data/lib/faker/default/internet_http.rb +48 -0
- data/lib/faker/default/invoice.rb +136 -0
- data/lib/faker/default/job.rb +61 -0
- data/lib/faker/default/json.rb +143 -0
- data/lib/faker/default/kpop.rb +85 -0
- data/lib/faker/default/lorem.rb +306 -0
- data/lib/faker/default/lorem_flickr.rb +138 -0
- data/lib/faker/default/lorem_pixel.rb +70 -0
- data/lib/faker/default/markdown.rb +175 -0
- data/lib/faker/default/marketing.rb +22 -0
- data/lib/faker/default/measurement.rb +207 -0
- data/lib/faker/default/military.rb +98 -0
- data/lib/faker/default/mountain.rb +33 -0
- data/lib/faker/default/name.rb +156 -0
- data/lib/faker/default/nation.rb +76 -0
- data/lib/faker/default/nato_phonetic_alphabet.rb +20 -0
- data/lib/faker/default/nhs.rb +57 -0
- data/lib/faker/default/number.rb +289 -0
- data/lib/faker/default/omniauth.rb +461 -0
- data/lib/faker/default/phone_number.rb +137 -0
- data/lib/faker/default/placeholdit.rb +63 -0
- data/lib/faker/default/programming_language.rb +33 -0
- data/lib/faker/default/relationship.rb +91 -0
- data/lib/faker/default/restaurant.rb +63 -0
- data/lib/faker/default/science.rb +46 -0
- data/lib/faker/default/slack_emoji.rb +124 -0
- data/lib/faker/default/source.rb +76 -0
- data/lib/faker/default/south_africa.rb +141 -0
- data/lib/faker/default/space.rb +191 -0
- data/lib/faker/default/string.rb +66 -0
- data/lib/faker/default/stripe.rb +142 -0
- data/lib/faker/default/subscription.rb +70 -0
- data/lib/faker/default/superhero.rb +72 -0
- data/lib/faker/default/team.rb +74 -0
- data/lib/faker/default/time.rb +179 -0
- data/lib/faker/default/twitter.rb +223 -0
- data/lib/faker/default/types.rb +182 -0
- data/lib/faker/default/university.rb +75 -0
- data/lib/faker/default/vehicle.rb +342 -0
- data/lib/faker/default/verb.rb +72 -0
- data/lib/faker/default/world_cup.rb +86 -0
- data/lib/faker/fantasy/tolkien.rb +67 -0
- data/lib/faker/games/clash_of_clans.rb +48 -0
- data/lib/faker/games/control.rb +113 -0
- data/lib/faker/games/dnd.rb +136 -0
- data/lib/faker/games/dota.rb +80 -0
- data/lib/faker/games/elder_scrolls.rb +139 -0
- data/lib/faker/games/fallout.rb +62 -0
- data/lib/faker/games/game.rb +48 -0
- data/lib/faker/games/half_life.rb +48 -0
- data/lib/faker/games/heroes.rb +61 -0
- data/lib/faker/games/heroes_of_the_storm.rb +72 -0
- data/lib/faker/games/league_of_legends.rb +87 -0
- data/lib/faker/games/minecraft.rb +113 -0
- data/lib/faker/games/myst.rb +74 -0
- data/lib/faker/games/overwatch.rb +48 -0
- data/lib/faker/games/pokemon.rb +48 -0
- data/lib/faker/games/sonic_the_hedgehog.rb +48 -0
- data/lib/faker/games/street_fighter.rb +61 -0
- data/lib/faker/games/super_mario.rb +48 -0
- data/lib/faker/games/super_smash_bros.rb +35 -0
- data/lib/faker/games/touhou.rb +75 -0
- data/lib/faker/games/warhammer_fantasy.rb +74 -0
- data/lib/faker/games/witcher.rb +87 -0
- data/lib/faker/games/world_of_warcraft.rb +60 -0
- data/lib/faker/games/zelda.rb +62 -0
- data/lib/faker/japanese_media/conan.rb +48 -0
- data/lib/faker/japanese_media/doraemon.rb +48 -0
- data/lib/faker/japanese_media/dragon_ball.rb +48 -0
- data/lib/faker/japanese_media/naruto.rb +61 -0
- data/lib/faker/japanese_media/one_piece.rb +87 -0
- data/lib/faker/japanese_media/studio_ghibli.rb +48 -0
- data/lib/faker/japanese_media/sword_art_online.rb +61 -0
- data/lib/faker/movies/back_to_the_future.rb +49 -0
- data/lib/faker/movies/departed.rb +49 -0
- data/lib/faker/movies/ghostbusters.rb +49 -0
- data/lib/faker/movies/harry_potter.rb +87 -0
- data/lib/faker/movies/hitchhikers_guide_to_the_galaxy.rb +106 -0
- data/lib/faker/movies/hobbit.rb +62 -0
- data/lib/faker/movies/how_to_train_your_dragon.rb +48 -0
- data/lib/faker/movies/lebowski.rb +48 -0
- data/lib/faker/movies/lord_of_the_rings.rb +49 -0
- data/lib/faker/movies/movie.rb +33 -0
- data/lib/faker/movies/princess_bride.rb +36 -0
- data/lib/faker/movies/room.rb +63 -0
- data/lib/faker/movies/star_wars.rb +273 -0
- data/lib/faker/movies/v_for_vendetta.rb +50 -0
- data/lib/faker/music/grateful_dead.rb +37 -0
- data/lib/faker/music/hiphop.rb +48 -0
- data/lib/faker/music/music.rb +133 -0
- data/lib/faker/music/opera.rb +298 -0
- data/lib/faker/music/pearl_jam.rb +50 -0
- data/lib/faker/music/phish.rb +48 -0
- data/lib/faker/music/prince.rb +64 -0
- data/lib/faker/music/rock_band.rb +34 -0
- data/lib/faker/music/rush.rb +37 -0
- data/lib/faker/music/show.rb +49 -0
- data/lib/faker/music/umphreys_mcgee.rb +22 -0
- data/lib/faker/quotes/chiquito.rb +80 -0
- data/lib/faker/quotes/quote.rb +111 -0
- data/lib/faker/quotes/rajnikanth.rb +27 -0
- data/lib/faker/quotes/shakespeare.rb +111 -0
- data/lib/faker/sports/basketball.rb +61 -0
- data/lib/faker/sports/football.rb +74 -0
- data/lib/faker/sports/volleyball.rb +74 -0
- data/lib/faker/tv_shows/aqua_teen_hunger_force.rb +37 -0
- data/lib/faker/tv_shows/big_bang_theory.rb +37 -0
- data/lib/faker/tv_shows/bojack_horseman.rb +51 -0
- data/lib/faker/tv_shows/breaking_bad.rb +37 -0
- data/lib/faker/tv_shows/buffy.rb +89 -0
- data/lib/faker/tv_shows/community.rb +38 -0
- data/lib/faker/tv_shows/dr_who.rb +115 -0
- data/lib/faker/tv_shows/dumb_and_dumber.rb +51 -0
- data/lib/faker/tv_shows/family_guy.rb +51 -0
- data/lib/faker/tv_shows/final_space.rb +51 -0
- data/lib/faker/tv_shows/friends.rb +50 -0
- data/lib/faker/tv_shows/futurama.rb +65 -0
- data/lib/faker/tv_shows/game_of_thrones.rb +77 -0
- data/lib/faker/tv_shows/hey_arnold.rb +50 -0
- data/lib/faker/tv_shows/how_i_met_your_mother.rb +64 -0
- data/lib/faker/tv_shows/michael_scott.rb +26 -0
- data/lib/faker/tv_shows/new_girl.rb +38 -0
- data/lib/faker/tv_shows/parks_and_rec.rb +37 -0
- data/lib/faker/tv_shows/rick_and_morty.rb +51 -0
- data/lib/faker/tv_shows/ru_paul.rb +37 -0
- data/lib/faker/tv_shows/seinfeld.rb +51 -0
- data/lib/faker/tv_shows/silicon_valley.rb +118 -0
- data/lib/faker/tv_shows/simpsons.rb +65 -0
- data/lib/faker/tv_shows/south_park.rb +38 -0
- data/lib/faker/tv_shows/star_trek.rb +63 -0
- data/lib/faker/tv_shows/stargate.rb +51 -0
- data/lib/faker/tv_shows/stranger_things.rb +38 -0
- data/lib/faker/tv_shows/suits.rb +37 -0
- data/lib/faker/tv_shows/the_expanse.rb +63 -0
- data/lib/faker/tv_shows/the_fresh_prince_of_bel_air.rb +64 -0
- data/lib/faker/tv_shows/the_it_crowd.rb +64 -0
- data/lib/faker/tv_shows/the_thick_of_it.rb +51 -0
- data/lib/faker/tv_shows/twin_peaks.rb +51 -0
- data/lib/faker/tv_shows/venture_bros.rb +65 -0
- data/lib/faker/version.rb +3 -1
- data/lib/helpers/base58.rb +22 -0
- data/lib/helpers/char.rb +31 -35
- data/lib/helpers/unique_generator.rb +28 -2
- data/lib/locales/README.md +8 -9
- data/lib/locales/ar.yml +102 -0
- data/lib/locales/bg.yml +5 -2
- data/lib/locales/ca-CAT.yml +1 -1
- data/lib/locales/ca.yml +2 -4
- data/lib/locales/da-DK.yml +10 -6
- data/lib/locales/de-AT.yml +12 -3
- data/lib/locales/de-CH.yml +1696 -1
- data/lib/locales/de.yml +19 -9
- data/lib/locales/ee.yml +61 -0
- data/lib/locales/en-AU.yml +50 -8
- data/lib/locales/en-CA.yml +27 -2
- data/lib/locales/en-GB.yml +2 -1
- data/lib/locales/en-IND.yml +5 -2
- data/lib/locales/en-MS.yml +8 -1
- data/lib/locales/en-NEP.yml +6 -3
- data/lib/locales/en-NG.yml +2 -0
- data/lib/locales/en-NZ.yml +140 -17
- data/lib/locales/en-PAK.yml +4 -2
- data/lib/locales/en-SG.yml +6 -1
- data/lib/locales/en-TH.yml +360 -0
- data/lib/locales/en-US.yml +37 -9
- data/lib/locales/en-ZA.yml +114 -17
- data/lib/locales/en-au-ocker.yml +2 -1
- data/lib/locales/en.yml +0 -1
- data/lib/locales/en/address.yml +501 -3
- data/lib/locales/en/adjective.yml +179 -0
- data/lib/locales/en/animal.yml +6 -0
- data/lib/locales/en/appliance.yml +5 -0
- data/lib/locales/en/aqua_teen_hunger_force.yml +33 -1
- data/lib/locales/en/bank.yml +275 -60
- data/lib/locales/en/barcode.yml +24 -0
- data/lib/locales/en/basketball.yml +99 -0
- data/lib/locales/en/beer.yml +2 -1
- data/lib/locales/en/big_bang_theory.yml +38 -0
- data/lib/locales/en/blood.yml +13 -0
- data/lib/locales/en/bojack_horseman.yml +6 -0
- data/lib/locales/en/buffy.yml +260 -0
- data/lib/locales/en/camera.yml +611 -0
- data/lib/locales/en/cannabis.yml +13 -0
- data/lib/locales/en/cat.yml +5 -4
- data/lib/locales/en/chiquito.yml +64 -0
- data/lib/locales/en/clash_of_clan.yml +101 -0
- data/lib/locales/en/coin.yml +6 -0
- data/lib/locales/en/color.yml +1 -1
- data/lib/locales/en/community.yml +33 -0
- data/lib/locales/en/company.yml +3 -2
- data/lib/locales/en/computer.yml +36 -0
- data/lib/locales/en/conan.yml +171 -0
- data/lib/locales/en/construction.yml +425 -0
- data/lib/locales/en/control.yml +247 -0
- data/lib/locales/en/cosmere.yml +57 -0
- data/lib/locales/en/crypto_coin.yml +25 -0
- data/lib/locales/en/culture_series.yml +307 -0
- data/lib/locales/en/currency.yml +6 -0
- data/lib/locales/en/dc_comics.yml +52 -0
- data/lib/locales/en/demographic.yml +218 -5
- data/lib/locales/en/departed.yml +50 -0
- data/lib/locales/en/dessert.yml +3 -3
- data/lib/locales/en/device.yml +115 -0
- data/lib/locales/en/dnd.yml +451 -0
- data/lib/locales/en/dog.yml +9 -9
- data/lib/locales/en/doraemon.yml +286 -0
- data/lib/locales/en/dota.yml +573 -0
- data/lib/locales/en/dr_who.yml +6 -2
- data/lib/locales/en/dragon_ball.yml +243 -1
- data/lib/locales/en/driving_license.yml +181 -0
- data/lib/locales/en/drone.yml +95 -0
- data/lib/locales/en/dumb_and_dumber.yml +1 -1
- data/lib/locales/en/dune.yml +401 -131
- data/lib/locales/en/educator.yml +76 -6
- data/lib/locales/en/elder_scrolls.yml +583 -5
- data/lib/locales/en/electrical_components.yml +6 -0
- data/lib/locales/en/esport.yml +5 -5
- data/lib/locales/en/fallout.yml +313 -134
- data/lib/locales/en/final_space.yml +37 -0
- data/lib/locales/en/finance.yml +116 -0
- data/lib/locales/en/food.yml +6 -2
- data/lib/locales/en/football.yml +8 -0
- data/lib/locales/en/fresh_prince_of_bel_air.yml +1 -1
- data/lib/locales/en/friends.yml +3 -3
- data/lib/locales/en/futurama.yml +344 -0
- data/lib/locales/en/game.yml +283 -0
- data/lib/locales/en/gender.yml +6 -0
- data/lib/locales/en/ghostbusters.yml +91 -0
- data/lib/locales/en/grateful_dead.yml +48 -0
- data/lib/locales/en/greek_philosophers.yml +26 -0
- data/lib/locales/en/half_life.yml +88 -0
- data/lib/locales/en/harry_potter.yml +2 -1
- data/lib/locales/en/heroes.yml +411 -0
- data/lib/locales/en/heroes_of_the_storm.yml +134 -0
- data/lib/locales/en/horse.yml +6 -0
- data/lib/locales/en/house.yml +5 -0
- data/lib/locales/en/how_to_train_your_dragon.yml +174 -0
- data/lib/locales/en/industry_segments.yml +7 -0
- data/lib/locales/en/invoice.yml +6 -0
- data/lib/locales/en/jack_handey.yml +54 -0
- data/lib/locales/en/job.yml +2 -2
- data/lib/locales/en/kpop.yml +3 -3
- data/lib/locales/en/league_of_legends.yml +287 -7
- data/lib/locales/en/lebowski.yml +1 -1
- data/lib/locales/en/lorem.yml +6 -0
- data/lib/locales/en/marketing.yml +4 -0
- data/lib/locales/en/michael_scott.yml +45 -0
- data/lib/locales/en/military.yml +182 -0
- data/lib/locales/en/minecraft.yml +663 -0
- data/lib/locales/en/mountain.yml +158 -0
- data/lib/locales/en/movie.yml +192 -1
- data/lib/locales/en/music.yml +451 -1
- data/lib/locales/en/myst.yml +104 -0
- data/lib/locales/en/name.yml +15 -14
- data/lib/locales/en/naruto.yml +231 -0
- data/lib/locales/en/nation.yml +11 -0
- data/lib/locales/en/nato_phonetic_alphabet.yml +4 -0
- data/lib/locales/en/new_girl.yml +40 -0
- data/lib/locales/en/one_piece.yml +2 -2
- data/lib/locales/en/opera.yml +340 -0
- data/lib/locales/en/overwatch.yml +2652 -33
- data/lib/locales/en/parks_and_rec.yml +7 -0
- data/lib/locales/en/pearl_jam.yml +213 -0
- data/lib/locales/en/phish.yml +395 -0
- data/lib/locales/en/phone_number.yml +2 -1
- data/lib/locales/en/pokemon.yml +419 -5
- data/lib/locales/en/prince.yml +227 -0
- data/lib/locales/en/princess_bride.yml +5 -0
- data/lib/locales/en/programming_language.yml +2 -1
- data/lib/locales/en/quote.yml +695 -0
- data/lib/locales/en/rajnikanth.yml +77 -0
- data/lib/locales/en/relationship.yml +10 -0
- data/lib/locales/en/restaurant.yml +129 -0
- data/lib/locales/en/rock_band.yml +1 -0
- data/lib/locales/en/room.yml +68 -0
- data/lib/locales/en/rupaul.yml +51 -21
- data/lib/locales/en/rush.yml +32 -0
- data/lib/locales/en/science.yml +1 -0
- data/lib/locales/en/seinfeld.yml +2 -1
- data/lib/locales/en/shakespeare.yml +23 -26
- data/lib/locales/en/show.yml +597 -0
- data/lib/locales/en/silicon_valley.yml +1 -0
- data/lib/locales/en/simpsons.yml +668 -0
- data/lib/locales/en/sonic_the_hedgehog.yml +410 -0
- data/lib/locales/en/source.yml +46 -0
- data/lib/locales/en/south_park.yml +5 -0
- data/lib/locales/en/space.yml +3 -2
- data/lib/locales/en/star_trek.yml +1 -1
- data/lib/locales/en/star_wars.yml +568 -210
- data/lib/locales/en/stargate.yml +1 -2
- data/lib/locales/en/stranger_thing.yml +36 -0
- data/lib/locales/en/street_fighter.yml +1524 -0
- data/lib/locales/en/stripe.yml +42 -0
- data/lib/locales/en/studio_ghibli.yml +107 -0
- data/lib/locales/en/subscription.yml +8 -0
- data/lib/locales/en/suits.yml +45 -0
- data/lib/locales/en/super_mario.yml +58 -0
- data/lib/locales/en/super_smash_bros.yml +220 -0
- data/lib/locales/en/sword_art_online.yml +334 -0
- data/lib/locales/en/team.yml +1 -1
- data/lib/locales/en/the_expanse.yml +7 -0
- data/lib/locales/en/the_it_crowd.yml +155 -0
- data/lib/locales/en/tolkien.yml +2453 -0
- data/lib/locales/en/touhou.yml +839 -0
- data/lib/locales/en/vehicle.yml +77 -49
- data/lib/locales/en/verbs.yml +8 -0
- data/lib/locales/en/volleyball.yml +501 -0
- data/lib/locales/en/warhammer_fantasy.yml +582 -0
- data/lib/locales/en/witcher.yml +391 -8
- data/lib/locales/en/world_cup.yml +271 -0
- data/lib/locales/en/world_of_warcraft.yml +124 -5
- data/lib/locales/en/zelda.yml +964 -5
- data/lib/locales/es-AR.yml +4603 -0
- data/lib/locales/es-MX.yml +17 -1
- data/lib/locales/es.yml +75 -1
- data/lib/locales/fa.yml +6 -0
- data/lib/locales/fi-FI.yml +12 -6
- data/lib/locales/fr-CA.yml +107 -0
- data/lib/locales/fr-CH.yml +78 -0
- data/lib/locales/fr.yml +65 -12
- data/lib/locales/he.yml +2 -0
- data/lib/locales/hy.yml +411 -0
- data/lib/locales/id.yml +7 -2
- data/lib/locales/it.yml +15 -3
- data/lib/locales/ja.yml +86 -15
- data/lib/locales/ko.yml +96 -2
- data/lib/locales/lv.yml +55 -0
- data/lib/locales/nb-NO.yml +15 -6
- data/lib/locales/nl.yml +13 -4
- data/lib/locales/no.yml +7 -0
- data/lib/locales/pl.yml +12 -1
- data/lib/locales/pt-BR.yml +624 -17
- data/lib/locales/pt.yml +16 -6
- data/lib/locales/ru.yml +6 -2
- data/lib/locales/sk.yml +21 -13
- data/lib/locales/sv.yml +15 -7
- data/lib/locales/th.yml +380 -0
- data/lib/locales/tr.yml +14 -0
- data/lib/locales/uk.yml +17 -4
- data/lib/locales/vi.yml +7 -2
- data/lib/locales/zh-CN.yml +4 -4
- data/lib/locales/zh-TW.yml +3 -1
- metadata +448 -127
- data/lib/extensions/array.rb +0 -22
- data/lib/extensions/symbol.rb +0 -9
- data/lib/faker/address.rb +0 -67
- data/lib/faker/ancient.rb +0 -21
- data/lib/faker/app.rb +0 -23
- data/lib/faker/aqua_teen_hunger_force.rb +0 -9
- data/lib/faker/artist.rb +0 -9
- data/lib/faker/avatar.rb +0 -15
- data/lib/faker/back_to_the_future.rb +0 -17
- data/lib/faker/bank.rb +0 -37
- data/lib/faker/beer.rb +0 -40
- data/lib/faker/bitcoin.rb +0 -48
- data/lib/faker/book.rb +0 -23
- data/lib/faker/boolean.rb +0 -9
- data/lib/faker/bossa_nova.rb +0 -13
- data/lib/faker/breaking_bad.rb +0 -16
- data/lib/faker/business.rb +0 -22
- data/lib/faker/cat.rb +0 -19
- data/lib/faker/chuck_norris.rb +0 -11
- data/lib/faker/code.rb +0 -147
- data/lib/faker/coffee.rb +0 -29
- data/lib/faker/color.rb +0 -30
- data/lib/faker/commerce.rb +0 -64
- data/lib/faker/company.rb +0 -162
- data/lib/faker/compass.rb +0 -65
- data/lib/faker/crypto.rb +0 -19
- data/lib/faker/date.rb +0 -80
- data/lib/faker/demographic.rb +0 -35
- data/lib/faker/dessert.rb +0 -19
- data/lib/faker/dog.rb +0 -39
- data/lib/faker/dr_who.rb +0 -34
- data/lib/faker/dragon_ball.rb +0 -9
- data/lib/faker/dumb_and_dumber.rb +0 -17
- data/lib/faker/dune.rb +0 -54
- data/lib/faker/educator.rb +0 -23
- data/lib/faker/elder_scrolls.rb +0 -21
- data/lib/faker/esport.rb +0 -25
- data/lib/faker/fallout.rb +0 -21
- data/lib/faker/family_guy.rb +0 -17
- data/lib/faker/file.rb +0 -24
- data/lib/faker/fillmurray.rb +0 -14
- data/lib/faker/finance.rb +0 -28
- data/lib/faker/food.rb +0 -25
- data/lib/faker/friends.rb +0 -17
- data/lib/faker/funny_name.rb +0 -43
- data/lib/faker/game_of_thrones.rb +0 -25
- data/lib/faker/hacker.rb +0 -45
- data/lib/faker/harry_potter.rb +0 -25
- data/lib/faker/hey_arnold.rb +0 -17
- data/lib/faker/hipster.rb +0 -59
- data/lib/faker/hitchhikers_guide_to_the_galaxy.rb +0 -33
- data/lib/faker/hobbit.rb +0 -21
- data/lib/faker/how_i_met_your_mother.rb +0 -21
- data/lib/faker/id_number.rb +0 -36
- data/lib/faker/internet.rb +0 -178
- data/lib/faker/job.rb +0 -16
- data/lib/faker/kpop.rb +0 -29
- data/lib/faker/league_of_legends.rb +0 -29
- data/lib/faker/lebowski.rb +0 -17
- data/lib/faker/lord_of_the_rings.rb +0 -13
- data/lib/faker/lorem.rb +0 -68
- data/lib/faker/lorem_pixel.rb +0 -21
- data/lib/faker/lovecraft.rb +0 -73
- data/lib/faker/markdown.rb +0 -67
- data/lib/faker/matz.rb +0 -9
- data/lib/faker/measurement.rb +0 -127
- data/lib/faker/most_interesting_man_in_the_world.rb +0 -9
- data/lib/faker/movie.rb +0 -9
- data/lib/faker/music.rb +0 -33
- data/lib/faker/name.rb +0 -46
- data/lib/faker/number.rb +0 -86
- data/lib/faker/omniauth.rb +0 -340
- data/lib/faker/one_piece.rb +0 -29
- data/lib/faker/overwatch.rb +0 -17
- data/lib/faker/phone_number.rb +0 -44
- data/lib/faker/placeholdit.rb +0 -20
- data/lib/faker/pokemon.rb +0 -17
- data/lib/faker/programming_language.rb +0 -13
- data/lib/faker/rick_and_morty.rb +0 -17
- data/lib/faker/robin.rb +0 -9
- data/lib/faker/rock_band.rb +0 -9
- data/lib/faker/rupaul.rb +0 -15
- data/lib/faker/science.rb +0 -15
- data/lib/faker/seinfeld.rb +0 -13
- data/lib/faker/shakespeare.rb +0 -40
- data/lib/faker/silicon_valley.rb +0 -33
- data/lib/faker/simpsons.rb +0 -22
- data/lib/faker/slack_emoji.rb +0 -43
- data/lib/faker/space.rb +0 -58
- data/lib/faker/star_trek.rb +0 -21
- data/lib/faker/star_wars.rb +0 -102
- data/lib/faker/stargate.rb +0 -17
- data/lib/faker/superhero.rb +0 -25
- data/lib/faker/team.rb +0 -24
- data/lib/faker/the_fresh_prince_of_bel_air.rb +0 -17
- data/lib/faker/the_thick_of_it.rb +0 -17
- data/lib/faker/time.rb +0 -51
- data/lib/faker/twin_peaks.rb +0 -17
- data/lib/faker/twitter.rb +0 -172
- data/lib/faker/types.rb +0 -93
- data/lib/faker/umphreys_mcgee.rb +0 -9
- data/lib/faker/university.rb +0 -28
- data/lib/faker/v_for_vendetta.rb +0 -17
- data/lib/faker/vehicle.rb +0 -39
- data/lib/faker/venture_bros.rb +0 -21
- data/lib/faker/witcher.rb +0 -29
- data/lib/faker/world_of_warcraft.rb +0 -13
- data/lib/faker/yoda.rb +0 -10
- data/lib/faker/zelda.rb +0 -22
- data/lib/locales/en/hobbit.yml +0 -19
- data/lib/locales/en/lord_of_the_rings.yml +0 -5
- data/lib/locales/en/matz.yml +0 -28
- data/lib/locales/en/most_interesting_man_in_the_world.yml +0 -106
- data/lib/locales/en/robin.yml +0 -4
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
en:
|
|
2
|
+
faker:
|
|
3
|
+
barcode:
|
|
4
|
+
ean_8: '#######'
|
|
5
|
+
ean_13: '############'
|
|
6
|
+
upc_a: '###########'
|
|
7
|
+
upc_e:
|
|
8
|
+
- '0######'
|
|
9
|
+
- '1######'
|
|
10
|
+
composite_symbol:
|
|
11
|
+
- '########'
|
|
12
|
+
- '????????'
|
|
13
|
+
- '####????'
|
|
14
|
+
- '????####'
|
|
15
|
+
- '##??##??'
|
|
16
|
+
- '??##??##'
|
|
17
|
+
isbn:
|
|
18
|
+
- '978#########'
|
|
19
|
+
- '9798########'
|
|
20
|
+
- '97910#######'
|
|
21
|
+
- '97911#######'
|
|
22
|
+
- '97912#######'
|
|
23
|
+
ismn: '9790########'
|
|
24
|
+
issn: '977#########'
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
en:
|
|
2
|
+
faker:
|
|
3
|
+
basketball:
|
|
4
|
+
teams:
|
|
5
|
+
- Atlanta Hawks
|
|
6
|
+
- Boston Celtics
|
|
7
|
+
- Brooklyn Nets
|
|
8
|
+
- Charlotte Hornets
|
|
9
|
+
- Chicago Bulls
|
|
10
|
+
- Cleveland Cavaliers
|
|
11
|
+
- Dallas Mavericks
|
|
12
|
+
- Denver Nuggets
|
|
13
|
+
- Detroit Pistons
|
|
14
|
+
- Golden State Warriors
|
|
15
|
+
- Houston Rockets
|
|
16
|
+
- Indiana Pacers
|
|
17
|
+
- Los Angeles Clippers
|
|
18
|
+
- Los Angeles Lakers
|
|
19
|
+
- Memphis Grizzlies
|
|
20
|
+
- Miami Heat
|
|
21
|
+
- Milwaukee Bucks
|
|
22
|
+
- Minnesota Timberwolves
|
|
23
|
+
- New Orleans Pelicans
|
|
24
|
+
- New York Knicks
|
|
25
|
+
- Oklahoma City Thunder
|
|
26
|
+
- Orlando Magic
|
|
27
|
+
- Philadelphia 76ers
|
|
28
|
+
- Phoenix Suns
|
|
29
|
+
- Portland Trail Blazers
|
|
30
|
+
- Sacramento Kings
|
|
31
|
+
- San Antonio Spurs
|
|
32
|
+
- Toronto Raptors
|
|
33
|
+
- Utah Jazz
|
|
34
|
+
- Washington Wizards
|
|
35
|
+
players:
|
|
36
|
+
- Kemba Walker
|
|
37
|
+
- Kyrie Irving
|
|
38
|
+
- Kawhi Leonard
|
|
39
|
+
- Giannis Antetokounmpo
|
|
40
|
+
- Joel Embiid
|
|
41
|
+
- Kyle Lowry
|
|
42
|
+
- Victor Oladipo
|
|
43
|
+
- Khris Middleton
|
|
44
|
+
- Bradley Beal
|
|
45
|
+
- Ben Simmons
|
|
46
|
+
- Blake Griffin
|
|
47
|
+
- Nikola Vučević
|
|
48
|
+
- Dwayne Wade
|
|
49
|
+
- D'Angelo Russell
|
|
50
|
+
- Stephen Curry
|
|
51
|
+
- James Harden
|
|
52
|
+
- Kevin Durant
|
|
53
|
+
- Paul George
|
|
54
|
+
- LeBron James
|
|
55
|
+
- Russell Westbrook
|
|
56
|
+
- Damian Lillard
|
|
57
|
+
- Klay Thompson
|
|
58
|
+
- Anthony Davis
|
|
59
|
+
- LaMarcus Aldridge
|
|
60
|
+
- Nikola Jokić
|
|
61
|
+
- Karl-Anthony Towns
|
|
62
|
+
- Dirk Nowitzki
|
|
63
|
+
coaches:
|
|
64
|
+
- Kenny Atkinson
|
|
65
|
+
- J.B. Bickerstaff
|
|
66
|
+
- James Borrego
|
|
67
|
+
- Jim Boylen
|
|
68
|
+
- Scott Brooks
|
|
69
|
+
- Brett Brown
|
|
70
|
+
- Mike Budenholzer
|
|
71
|
+
- Rick Carlisle
|
|
72
|
+
- Dwane Casey
|
|
73
|
+
- Steve Clifford
|
|
74
|
+
- Mike D'Antoni
|
|
75
|
+
- Billy Donovan
|
|
76
|
+
- Larry Drew
|
|
77
|
+
- David Fizdale
|
|
78
|
+
- Alvin Gentry
|
|
79
|
+
- Dave Joerger
|
|
80
|
+
- Steve Kerr
|
|
81
|
+
- Igor Kokoškov
|
|
82
|
+
- Michael Malone
|
|
83
|
+
- Nate McMillan
|
|
84
|
+
- Nick Nurse
|
|
85
|
+
- Lloyd Pierce
|
|
86
|
+
- Gregg Popovich
|
|
87
|
+
- Doc Rivers
|
|
88
|
+
- Ryan Saunders
|
|
89
|
+
- Quin Snyder
|
|
90
|
+
- Erik Spoelstra
|
|
91
|
+
- Brad Stevens
|
|
92
|
+
- Terry Stotts
|
|
93
|
+
- Luke Walton
|
|
94
|
+
positions:
|
|
95
|
+
- Point Guard
|
|
96
|
+
- Shooting Guard
|
|
97
|
+
- Small Forward
|
|
98
|
+
- Power Forward
|
|
99
|
+
- Center
|
data/lib/locales/en/beer.yml
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
en:
|
|
2
2
|
faker:
|
|
3
3
|
beer:
|
|
4
|
-
|
|
4
|
+
brand: ['Corona Extra', 'Heineken', 'Budweiser', 'Becks', 'BudLight', 'Pabst Blue Ribbon', 'Dos Equis', 'Blue Moon', 'Stella Artois', 'Miller Draft', 'Coors lite' , 'Amstel', 'Guinness', 'Kirin', 'Tsingtao', 'Sierra Nevada', 'Rolling Rock', 'Red Stripe', 'Paulaner', 'Patagonia', 'Delirium', 'Samuel Adams', 'Sapporo', 'Carlsberg', 'Pacifico', 'Quimes', 'Murphys', 'Birra Moretti', 'Harp', 'Fosters', 'Hoegaarden', 'Leffe', 'Lowenbrau']
|
|
5
|
+
name: ['Pliny The Elder', 'Founders Kentucky Breakfast', 'Trappistes Rochefort 10', 'HopSlam Ale', 'Stone Imperial Russian Stout', 'St. Bernardus Abt 12', 'Founders Breakfast Stout', 'Weihenstephaner Hefeweissbier', 'Péché Mortel', 'Celebrator Doppelbock', 'Duvel', 'Dreadnaught IPA', 'Nugget Nectar', 'La Fin Du Monde', 'Bourbon County Stout', 'Old Rasputin Russian Imperial Stout', 'Two Hearted Ale', 'Ruination IPA', 'Schneider Aventinus', 'Double Bastard Ale', '90 Minute IPA', 'Hop Rod Rye', 'Trappistes Rochefort 8', 'Chimay Grande Réserve', 'Stone IPA', 'Arrogant Bastard Ale', 'Edmund Fitzgerald Porter', 'Chocolate St', 'Oak Aged Yeti Imperial Stout', 'Ten FIDY', 'Storm King Stout', 'Shakespeare Oatmeal', 'Alpha King Pale Ale', 'Westmalle Trappist Tripel', 'Samuel Smith’s Imperial IPA', 'Yeti Imperial Stout', 'Hennepin', 'Samuel Smith’s Oatmeal Stout', 'Brooklyn Black', 'Oaked Arrogant Bastard Ale', 'Sublimely Self-Righteous Ale', 'Trois Pistoles', 'Bell’s Expedition', 'Sierra Nevada Celebration Ale', 'Sierra Nevada Bigfoot Barleywine Style Ale', 'Racer 5 India Pale Ale, Bear Republic Bre', 'Orval Trappist Ale', 'Hercules Double IPA', 'Maharaj', 'Maudite', 'Kirin Inchiban', 'Delirium Tremens', 'Delirium Noctorum', 'Sapporo Premium']
|
|
5
6
|
hop: ['Ahtanum', 'Amarillo', 'Bitter Gold', 'Bravo', 'Brewer’s Gold', 'Bullion', 'Cascade', 'Cashmere', 'Centennial', 'Chelan', 'Chinook', 'Citra', 'Cluster', 'Columbia', 'Columbus', 'Comet', 'Crystal', 'Equinox', 'Eroica', 'Fuggle', 'Galena', 'Glacier', 'Golding', 'Hallertau', 'Horizon', 'Liberty', 'Magnum', 'Millennium', 'Mosaic', 'Mt. Hood', 'Mt. Rainier', 'Newport', 'Northern Brewer', 'Nugget', 'Olympic', 'Palisade', 'Perle', 'Saaz', 'Santiam', 'Simcoe', 'Sorachi Ace', 'Sterling', 'Summit', 'Tahoma', 'Tettnang', 'TriplePearl', 'Ultra', 'Vanguard', 'Warrior', 'Willamette', 'Yakima Gol']
|
|
6
7
|
yeast: ['1007 - German Ale', '1010 - American Wheat', '1028 - London Ale', '1056 - American Ale', '1084 - Irish Ale', '1098 - British Ale', '1099 - Whitbread Ale', '1187 - Ringwood Ale', '1272 - American Ale II', '1275 - Thames Valley Ale', '1318 - London Ale III', '1332 - Northwest Ale', '1335 - British Ale II', '1450 - Dennys Favorite 50', '1469 - West Yorkshire Ale', '1728 - Scottish Ale', '1968 - London ESB Ale', '2565 - Kölsch', '1214 - Belgian Abbey', '1388 - Belgian Strong Ale', '1762 - Belgian Abbey II', '3056 - Bavarian Wheat Blend', '3068 - Weihenstephan Weizen', '3278 - Belgian Lambic Blend', '3333 - German Wheat', '3463 - Forbidden Fruit', '3522 - Belgian Ardennes', '3638 - Bavarian Wheat', '3711 - French Saison', '3724 - Belgian Saison', '3763 - Roeselare Ale Blend', '3787 - Trappist High Gravity', '3942 - Belgian Wheat', '3944 - Belgian Witbier', '2000 - Budvar Lager', '2001 - Urquell Lager', '2007 - Pilsen Lager', '2035 - American Lager', '2042 - Danish Lager', '2112 - California Lager', '2124 - Bohemian Lager', '2206 - Bavarian Lager', '2278 - Czech Pils', '2308 - Munich Lager', '2633 - Octoberfest Lager Blend', '5112 - Brettanomyces bruxellensis', '5335 - Lactobacillus', '5526 - Brettanomyces lambicus', '5733 - Pediococcus']
|
|
7
8
|
malt: ['Black malt', 'Caramel', 'Carapils', 'Chocolate', 'Munich', 'Caramel', 'Carapils', 'Chocolate malt', 'Munich', 'Pale', 'Roasted barley', 'Rye malt', 'Special roast', 'Victory', 'Vienna', 'Wheat mal']
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
en:
|
|
2
|
+
faker:
|
|
3
|
+
big_bang_theory:
|
|
4
|
+
characters: [
|
|
5
|
+
"Leonard Hofstadter",
|
|
6
|
+
"Sheldon Cooper",
|
|
7
|
+
"Penny",
|
|
8
|
+
"Howard Wolowitz",
|
|
9
|
+
"Raj Koothrappali",
|
|
10
|
+
"Bernadette Rostenkowski",
|
|
11
|
+
"Amy Farrah Fowler",
|
|
12
|
+
"Stuart Bloom",
|
|
13
|
+
"Debbie Wolowitz",
|
|
14
|
+
"Barry Kripke",
|
|
15
|
+
"Emily Sweeney",
|
|
16
|
+
"Wil Wheaton",
|
|
17
|
+
"Dr. V.M. Koothrappali",
|
|
18
|
+
"Dr. Beverly Hofstadter",
|
|
19
|
+
"Bert Kibbler",
|
|
20
|
+
"Mary Cooper",
|
|
21
|
+
"President Siebert",
|
|
22
|
+
"Priya Koothrappali",
|
|
23
|
+
"Zack Johnson",
|
|
24
|
+
"Mrs. Koothrappali",
|
|
25
|
+
"Leslie Winkle",
|
|
26
|
+
"Anu",
|
|
27
|
+
"Lucy",
|
|
28
|
+
"Denise",
|
|
29
|
+
"Mike Rostenkowski"]
|
|
30
|
+
quotes: [
|
|
31
|
+
"I'm not crazy. My mother had me tested.",
|
|
32
|
+
"Bazinga!",
|
|
33
|
+
"Scissors cuts paper, paper covers rock, rock crushes lizard, lizard poisons Spock, Spock smashes scissors, scissors decapitates lizard, lizard eats paper, paper disproves Spock, Spock vaporizes rock, and as it always has, rock crushes scissors.",
|
|
34
|
+
"That's no reason to cry. One cries because one is sad. For example, I cry because others are stupid, and that makes me sad.",
|
|
35
|
+
"Not knowing is part of the fun. Was that the motto of your community college?",
|
|
36
|
+
"I would have been here sooner but the bus kept stopping for other people to get on it.",
|
|
37
|
+
"Hard as this may be to believe, it’s possible that I’m not boyfriend material."
|
|
38
|
+
]
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
en:
|
|
2
|
+
faker:
|
|
3
|
+
bojack_horseman:
|
|
4
|
+
characters: ["Joseph Sugarman", "Princess Carolyn", "Kelsey Jannings", "Katrina Peanutbutter", "Charley Witherspoon", "Tom Jumbo-Grumbo", "Wanda Pierce", "Officer Meow Meow Fuzzyface", "Hank Hippopopalous", "Tina", "Courtney Portnoy", "Mr Peanutbutter", "Todd Chavez", "Wayne", "Dr Allen Hu", "Sarah Lynn", "Jogging Baboon", "A Ryan Seacrest Type", "Emily", "Vincent Adultman", "Sebastian St Clair", "Hollyhock", "Butterscotch Horseman", "Roxy", "Beatrice Horseman", "Herb Kazzaz", "Sextina Aquafina", "Rutabaga Rabbitowitz", "Charlotte Moore", "Ralph Stilton", "Paparazzi Birds", "Lenny Turteltaub", "Corduroy Jackson-Jackson", "Judah", "Woodchuck Coodchuck-Berkowitz", "Diane Nguyen", "Honey Sugarman", "BoJack Horseman", "Pinky Penguin"]
|
|
5
|
+
quotes: ["It gets easier. But you have to do it every day, that's the hard part. But it does get easier", "Yes, I ate all the muffins, because I have no self-control and I hate myself", "Dead on the inside, dead on the outside", "The universe is a cruel, uncaring void. The key to being happy isn't a search for meaning. It's to just keep yourself busy with unimportant nonsense, and eventually, you'll be dead", "Beer before liquor, never sicker, liquor before beer, never fear, don't do heroin", "If you care about what other people think, you're never gonna do anything", "Ow, crap. I hate this. Running is terrible. Everything is the worst", "For a lot of people, life is just one long, hard kick in the urethra", "Spaghetti or not, here I come", "I need to go take a shower so I can't tell if I'm crying or not", "You know what the problem is with everybody? They all just want to hear what they already believe. No one ever wants to hear the truth", "I don't understand how people live. It's amazing to me that people wake up every morning and say: 'Yeah, another day, let's do it.' How do people do it? I don't know how", "Not understanding that you're a horrible person doesn't make you less of a horrible person", "That's the problem with life, either you know what you want and you don't get what you want, or you get what you want and then you don't know what you want", "I do love you, by the way. I mean as much as I'm capable of loving anyone"]
|
|
6
|
+
tongue_twisters: ["Courtney Portnoy portrayed the formerly portly consort in the seaport resort", "Courtly roles like the formerly portly consort are Courtney Portnoy's forté", "That's sorta been thwarted unfortunately cos Courtney's purportedly falling short of shoring up fourth quadrant support", "Portnoy finds joy in hoi polloi boy toy", "Did you steal a meal from Neal McBeal the Navy Seal?", " audiences are going to adore your tour de force performance as the forceful denim-clad court reporter in 'The Court Reporter Sported Jorts', the jet-setting jort-sporting court reporter story"]
|
|
@@ -0,0 +1,260 @@
|
|
|
1
|
+
en:
|
|
2
|
+
faker:
|
|
3
|
+
buffy:
|
|
4
|
+
characters: [
|
|
5
|
+
'Buffy Summers',
|
|
6
|
+
'Xander Harris',
|
|
7
|
+
'Willow Rosenberg',
|
|
8
|
+
'Rupert Giles',
|
|
9
|
+
'Cordelia Chase',
|
|
10
|
+
'Angel',
|
|
11
|
+
'Spike',
|
|
12
|
+
'Oz',
|
|
13
|
+
'Anya Jenkins',
|
|
14
|
+
'Dawn Summers',
|
|
15
|
+
'Joyce Summers',
|
|
16
|
+
'Tara Maclay',
|
|
17
|
+
'Riley Finn',
|
|
18
|
+
'Drusilla',
|
|
19
|
+
'Faith Lehane',
|
|
20
|
+
'Jonathan Levinson',
|
|
21
|
+
'Harmony Kendall',
|
|
22
|
+
'Amy Madison',
|
|
23
|
+
'Andrew Wells',
|
|
24
|
+
'Darla',
|
|
25
|
+
'Ethan Rayne'
|
|
26
|
+
]
|
|
27
|
+
quotes: [
|
|
28
|
+
"In every generation there is a chosen one.",
|
|
29
|
+
"Power. I have it. They don't. This bothers them.",
|
|
30
|
+
"No weapons, no friends, no hope. Take all that away, and what's left? Me.",
|
|
31
|
+
"I'm the thing that monsters have nightmares about.",
|
|
32
|
+
"Strong is fighting. It's hard and it's painful, and it's every day. It's what we have to do. And we can do it together.",
|
|
33
|
+
"I'm beyond tired. I'm beyond scared. I'm standing on the mouth of hell, and it's gonna swallow me whole. And it'll choke on me. We're not ready? They're not ready.",
|
|
34
|
+
"There is only one thing on this earth more powerful than evil. And that's us.",
|
|
35
|
+
"So what — are we helpless puppets? No. The big moments are gonna come. You can't help that. It's what you do afterwards that counts. That's when you find out who you are.",
|
|
36
|
+
"When it's really something that matters, they fight. I mean, they're lame morons for fighting, but they do. They never— they never quit. And so I guess I will keep fighting, too.",
|
|
37
|
+
"If the apocalypse comes, beep me.",
|
|
38
|
+
"The hardest thing in this world is to live in it.",
|
|
39
|
+
"In every generation there is a chosen one. She alone will stand against the vampires, the demons, and the forces of darkness. She is the slayer.",
|
|
40
|
+
"I may be dead, but I'm still pretty. Which is more than I can say for you.",
|
|
41
|
+
"Cordelia, your mouth is open, sound is coming from it. This is never good.",
|
|
42
|
+
"Harmony, when you tried to be head cheerleader, you were bad. When you tried to chair the Homecoming committee, you were really bad. But when you try to be bad... you suck.",
|
|
43
|
+
"They were supposed to be my light at the end of the tunnel. I guess they were a train.",
|
|
44
|
+
"I don't know what's coming next. But I do know it's gonna be just like this.",
|
|
45
|
+
"Well, I like you. You're nice, and you're funny, and you don't smoke. Yeah, okay, werewolf, but... that's not all the time. I mean, three days out of the month, I'm not much fun to be around either.",
|
|
46
|
+
"A good Sunnydale rule-of-thumb? Avoid white-skinned men in capes.",
|
|
47
|
+
"I can kill a couple of geeks all by myself. But, hey, if you'd like to watch... I mean, that's what you Watchers are good at, right? Watching?",
|
|
48
|
+
"I'm talking! Don't interrupt me! Insignificant man. I am Willow. I am death. If you dare defy me, I will call down my fury, exact fresh vengeance, and make your worst fears come true. Okay?",
|
|
49
|
+
"Just because you're better than us doesn't mean you can be all superior.",
|
|
50
|
+
"You should never hurt the feelings of a brutal killer. You know, that's, uh, that's actually some pretty good advice.",
|
|
51
|
+
"A vampire isn't a person at all. It may have the movements, the memories, even the personality of the person it took over, but it's a demon at the core. There is no halfway.",
|
|
52
|
+
"I'm leaning towards blind panic myself.",
|
|
53
|
+
"Well, I'm a hair's breath from investigating bunnies at the moment, so I'm open to anything.",
|
|
54
|
+
"Buffy, what you said, it flies in the face of everything we've ever... every generation has ever done in the fight against evil. I think it's bloody brilliant.",
|
|
55
|
+
"Now, I know you haven't been in the game for a while, mate, but we still do kill people. Sort of our raison d'etre, you know.",
|
|
56
|
+
"She wouldn't even kill me. She just left. She didn't even care enough to cut off my head, or set me on fire. I mean, is that too much to ask? You know? Some little sign that she cared? It was the truce with Buffy that did it. Dru said I'd gone soft - wasn't demon enough for the likes of her.",
|
|
57
|
+
"Well, isn't this usually the part where you... kick me in the head and run out, virtue fluttering?",
|
|
58
|
+
"Oh, I don't know. Looking in the mirror every day and seeing nothing there...it's an overrated pleasure.",
|
|
59
|
+
"Sorry about the chains. It's not that I don't trust you, it's... Actually, it is that I don't trust you.",
|
|
60
|
+
"I'm just so excited. They come in, I help them, they give us money in exchange for goods, you give me money for working for you. I have a place in the world now. I'm part of the system. I'm a workin' gal.",
|
|
61
|
+
"Wow, it's like, one second you were this klutzy teenager with false memories and a history of kleptomania, and then suddenly you were a hero. A hero with a much abbreviated life span.",
|
|
62
|
+
"You gotta give me something to do. There's no way I'm sleeping. Don't you need anyone dead? Or maimed? I can settle for maimed.",
|
|
63
|
+
"You know, I honestly don't think there's a human word fabulous enough for me.",
|
|
64
|
+
"We don't know much about them except for they're very ugly, and they're very mobile for blind people.",
|
|
65
|
+
"And I wonder what possible catastrophe came crashing down from heaven and brought this dashing stranger to tears?"
|
|
66
|
+
]
|
|
67
|
+
actors: [
|
|
68
|
+
'Sarah Michelle Geller',
|
|
69
|
+
'Alyson Hannigan',
|
|
70
|
+
'David Boreanaz',
|
|
71
|
+
'Eliza Dushku',
|
|
72
|
+
'Michelle Trachtenberg',
|
|
73
|
+
'Rachel Bilson',
|
|
74
|
+
'Seth Green',
|
|
75
|
+
'John Ritter',
|
|
76
|
+
'Amy Adams',
|
|
77
|
+
'Ashanti',
|
|
78
|
+
'Eric Balfour',
|
|
79
|
+
'Julie Benz',
|
|
80
|
+
'Clare Cramer',
|
|
81
|
+
'Carmine Giovinazzo',
|
|
82
|
+
'Clea Duvall',
|
|
83
|
+
'Eion Bailey',
|
|
84
|
+
'Shane West',
|
|
85
|
+
'Pedro Pascal',
|
|
86
|
+
'Kal Penn',
|
|
87
|
+
'Amber Tamblyn'
|
|
88
|
+
]
|
|
89
|
+
big_bads: [
|
|
90
|
+
'The Master',
|
|
91
|
+
'Drusilla',
|
|
92
|
+
'Angelus',
|
|
93
|
+
'Mayor Richard Wilkins III',
|
|
94
|
+
'Maggie Walsh',
|
|
95
|
+
'Adam',
|
|
96
|
+
'Warren Mears',
|
|
97
|
+
'Caleb',
|
|
98
|
+
'The First Evil',
|
|
99
|
+
'Dark Willow',
|
|
100
|
+
'The Anointed One'
|
|
101
|
+
]
|
|
102
|
+
episodes: [
|
|
103
|
+
# Season 1
|
|
104
|
+
"Welcome to the Hellmouth",
|
|
105
|
+
"The Harvest",
|
|
106
|
+
"Witch",
|
|
107
|
+
"Teacher's Pet",
|
|
108
|
+
"Never Kill a Boy on the First Date",
|
|
109
|
+
"The Pack",
|
|
110
|
+
"Angel",
|
|
111
|
+
"I Robot, You Jane",
|
|
112
|
+
"The Puppet Show",
|
|
113
|
+
"Nightmares",
|
|
114
|
+
"Out of Mind, Out of Sight",
|
|
115
|
+
"Prophecy Girl",
|
|
116
|
+
|
|
117
|
+
# Season 2
|
|
118
|
+
"When She Was Bad",
|
|
119
|
+
"Some Assembly Required",
|
|
120
|
+
"School Hard",
|
|
121
|
+
"Inca Mummy Girl",
|
|
122
|
+
"Reptile Boy",
|
|
123
|
+
"Halloween",
|
|
124
|
+
"Lie to Me",
|
|
125
|
+
"The Dark Age",
|
|
126
|
+
"What's My Line, Part One",
|
|
127
|
+
"What's My Line, Part Two",
|
|
128
|
+
"Ted",
|
|
129
|
+
"Bad Eggs",
|
|
130
|
+
"Surprise",
|
|
131
|
+
"Innocence",
|
|
132
|
+
"Phases",
|
|
133
|
+
"Bewitched, Bothered and Bewildered",
|
|
134
|
+
"Passion",
|
|
135
|
+
"Killed by Death",
|
|
136
|
+
"I Only Have Eyes for You",
|
|
137
|
+
"Go Fish",
|
|
138
|
+
"Becoming, Part One",
|
|
139
|
+
"Becoming, Part Two",
|
|
140
|
+
|
|
141
|
+
# Season 3
|
|
142
|
+
"Anne",
|
|
143
|
+
"Dead Man's Party",
|
|
144
|
+
"Faith, Hope & Trick",
|
|
145
|
+
"Beauty and the Beasts",
|
|
146
|
+
"Homecoming",
|
|
147
|
+
"Band Candy",
|
|
148
|
+
"Revelations",
|
|
149
|
+
"Lovers Walk",
|
|
150
|
+
"The Wish",
|
|
151
|
+
"Amends",
|
|
152
|
+
"Gingerbread",
|
|
153
|
+
"Helpless",
|
|
154
|
+
"The Zeppo",
|
|
155
|
+
"Bad Girls",
|
|
156
|
+
"Consequences",
|
|
157
|
+
"Doppelgangland",
|
|
158
|
+
"Enemies",
|
|
159
|
+
"Earshot",
|
|
160
|
+
"Choices",
|
|
161
|
+
"The Prom",
|
|
162
|
+
"Graduation Day, Part One",
|
|
163
|
+
"Graduation Day, Part Two",
|
|
164
|
+
|
|
165
|
+
# Season 4
|
|
166
|
+
"The Freshman",
|
|
167
|
+
"Living Conditions",
|
|
168
|
+
"The Harsh Light of Day",
|
|
169
|
+
"Fear, Itself",
|
|
170
|
+
"Beer Bad",
|
|
171
|
+
"Wild at Heart",
|
|
172
|
+
"The Initiative",
|
|
173
|
+
"Pangs",
|
|
174
|
+
"Something Blue",
|
|
175
|
+
"Hush",
|
|
176
|
+
"Doomed",
|
|
177
|
+
"A New Man",
|
|
178
|
+
"The I in Team",
|
|
179
|
+
"Goodbye Iowa",
|
|
180
|
+
"This Year's Girl",
|
|
181
|
+
"Who Are You",
|
|
182
|
+
"Superstar",
|
|
183
|
+
"Where the Wild Things Are",
|
|
184
|
+
"New Moon Rising",
|
|
185
|
+
"The Yoko Factor",
|
|
186
|
+
"Primeval",
|
|
187
|
+
"Restless",
|
|
188
|
+
|
|
189
|
+
# Season 5
|
|
190
|
+
"Buffy vs. Dracula",
|
|
191
|
+
"Real Me",
|
|
192
|
+
"The Replacement",
|
|
193
|
+
"Out of My Mind",
|
|
194
|
+
"No Place Like Home",
|
|
195
|
+
"Family",
|
|
196
|
+
"Fool for Love",
|
|
197
|
+
"Shadow",
|
|
198
|
+
"Listening to Fear",
|
|
199
|
+
"Into the Woods",
|
|
200
|
+
"Triangle",
|
|
201
|
+
"Checkpoint",
|
|
202
|
+
"Blood Ties",
|
|
203
|
+
"Crush",
|
|
204
|
+
"I Was Made to Love You",
|
|
205
|
+
"The Body",
|
|
206
|
+
"Forever",
|
|
207
|
+
"Intervention",
|
|
208
|
+
"Tough Love",
|
|
209
|
+
"Spiral",
|
|
210
|
+
"The Weight of the World",
|
|
211
|
+
"The Gift",
|
|
212
|
+
|
|
213
|
+
# Season 6
|
|
214
|
+
"Bargaining, Part One",
|
|
215
|
+
"Bargaining, Part Two",
|
|
216
|
+
"After Life",
|
|
217
|
+
"Flooded",
|
|
218
|
+
"Life Serial",
|
|
219
|
+
"All the Way",
|
|
220
|
+
"Once More, with Feeling",
|
|
221
|
+
"Tabula Rasa",
|
|
222
|
+
"Smashed",
|
|
223
|
+
"Wrecked",
|
|
224
|
+
"Gone",
|
|
225
|
+
"Doublemeat Palace",
|
|
226
|
+
"Dead Things",
|
|
227
|
+
"Older and Far Away",
|
|
228
|
+
"As You Were",
|
|
229
|
+
"Hell's Bells",
|
|
230
|
+
"Normal Again",
|
|
231
|
+
"Entropy",
|
|
232
|
+
"Seeing Red",
|
|
233
|
+
"Villains",
|
|
234
|
+
"Two to Go",
|
|
235
|
+
"Grave",
|
|
236
|
+
|
|
237
|
+
# Season 7
|
|
238
|
+
"Lessons",
|
|
239
|
+
"Beneath You",
|
|
240
|
+
"Same Time, Same Place",
|
|
241
|
+
"Help",
|
|
242
|
+
"Selfless",
|
|
243
|
+
"Him",
|
|
244
|
+
"Conversations with Dead People",
|
|
245
|
+
"Sleeper",
|
|
246
|
+
"Never Leave Me",
|
|
247
|
+
"Bring on the Night",
|
|
248
|
+
"Showtime",
|
|
249
|
+
"Potential",
|
|
250
|
+
"The Killer in Me",
|
|
251
|
+
"First Date",
|
|
252
|
+
"Get It Done",
|
|
253
|
+
"Storyteller",
|
|
254
|
+
"Lies My Parents Told Me",
|
|
255
|
+
"Dirty Girls",
|
|
256
|
+
"Empty Places",
|
|
257
|
+
"Touched",
|
|
258
|
+
"End of Days",
|
|
259
|
+
"Chosen"
|
|
260
|
+
]
|