faker 2.12.0 → 2.13.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (57) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +71 -0
  3. data/README.md +3 -0
  4. data/lib/faker.rb +2 -1
  5. data/lib/faker/default/address.rb +30 -0
  6. data/lib/faker/default/bank.rb +1 -1
  7. data/lib/faker/default/blood.rb +3 -3
  8. data/lib/faker/default/chile_rut.rb +44 -1
  9. data/lib/faker/default/company.rb +1 -3
  10. data/lib/faker/default/computer.rb +4 -4
  11. data/lib/faker/default/date.rb +16 -12
  12. data/lib/faker/default/gender.rb +1 -1
  13. data/lib/faker/default/id_number.rb +86 -0
  14. data/lib/faker/default/internet.rb +35 -7
  15. data/lib/faker/default/internet_http.rb +48 -0
  16. data/lib/faker/default/lorem_flickr.rb +65 -0
  17. data/lib/faker/default/lorem_pixel.rb +22 -0
  18. data/lib/faker/default/markdown.rb +89 -0
  19. data/lib/faker/default/name.rb +15 -0
  20. data/lib/faker/default/nhs.rb +19 -0
  21. data/lib/faker/default/number.rb +5 -7
  22. data/lib/faker/default/omniauth.rb +58 -5
  23. data/lib/faker/default/world_cup.rb +4 -4
  24. data/lib/faker/games/control.rb +8 -8
  25. data/lib/faker/games/dnd.rb +4 -4
  26. data/lib/faker/games/heroes_of_the_storm.rb +16 -5
  27. data/lib/faker/games/minecraft.rb +48 -0
  28. data/lib/faker/games/warhammer_fantasy.rb +5 -5
  29. data/lib/faker/movies/departed.rb +3 -3
  30. data/lib/faker/movies/movie.rb +13 -0
  31. data/lib/faker/music/pearl_jam.rb +3 -3
  32. data/lib/faker/music/phish.rb +2 -2
  33. data/lib/faker/music/prince.rb +64 -0
  34. data/lib/faker/music/rush.rb +37 -0
  35. data/lib/faker/music/show.rb +3 -3
  36. data/lib/faker/tv_shows/aqua_teen_hunger_force.rb +13 -0
  37. data/lib/faker/tv_shows/big_bang_theory.rb +37 -0
  38. data/lib/faker/tv_shows/dr_who.rb +1 -1
  39. data/lib/faker/tv_shows/futurama.rb +65 -0
  40. data/lib/faker/tv_shows/simpsons.rb +14 -0
  41. data/lib/faker/tv_shows/suits.rb +2 -2
  42. data/lib/faker/version.rb +1 -1
  43. data/lib/helpers/base58.rb +1 -1
  44. data/lib/helpers/char.rb +20 -26
  45. data/lib/locales/en/aqua_teen_hunger_force.yml +33 -1
  46. data/lib/locales/en/bank.yml +1 -1
  47. data/lib/locales/en/big_bang_theory.yml +38 -0
  48. data/lib/locales/en/futurama.yml +344 -0
  49. data/lib/locales/en/heroes_of_the_storm.yml +1 -1
  50. data/lib/locales/en/minecraft.yml +390 -0
  51. data/lib/locales/en/movie.yml +192 -1
  52. data/lib/locales/en/name.yml +3 -2
  53. data/lib/locales/en/prince.yml +227 -0
  54. data/lib/locales/en/rush.yml +32 -0
  55. data/lib/locales/en/simpsons.yml +668 -0
  56. data/lib/locales/en/star_wars.yml +1 -0
  57. metadata +21 -10
@@ -0,0 +1,64 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Faker
4
+ class Music
5
+ class Prince < Base
6
+ class << self
7
+ ##
8
+ # Produces a random Prince song.
9
+ #
10
+ # @return [String]
11
+ #
12
+ # @example
13
+ # Faker::Music::Prince.song #=> "Raspberry Beret"
14
+ # Faker::Music::Prince.song #=> "Starfish And Coffee"
15
+ #
16
+ # @faker.version 2.13.0
17
+ def song
18
+ fetch('prince.song')
19
+ end
20
+
21
+ ##
22
+ # Produces a random Prince song lyric.
23
+ #
24
+ # @return [String]
25
+ #
26
+ # @example
27
+ # Faker::Music::Prince.lyric #=> "Dearly beloved, we are gathered here today to get through this thing called life."
28
+ # Faker::Music::Prince.lyric #=> "You were so hard to find, the beautiful ones, they hurt you every time."
29
+ #
30
+ # @faker.version 2.13.0
31
+ def lyric
32
+ fetch('prince.lyric')
33
+ end
34
+
35
+ ##
36
+ # Produces a random Prince album.
37
+ #
38
+ # @return [String]
39
+ #
40
+ # @example
41
+ # Faker::Music::Prince.album #=> "The Gold Experience"
42
+ # Faker::Music::Prince.album #=> "Purple Rain"
43
+ #
44
+ # @faker.version 2.13.0
45
+ def album
46
+ fetch('prince.album')
47
+ end
48
+
49
+ ##
50
+ # Produces a random Prince-associated band.
51
+ #
52
+ # @return [String]
53
+ #
54
+ # @example
55
+ # Faker::Music::Prince.band #=> "The New Power Generation"
56
+ #
57
+ # @faker.version 2.13.0
58
+ def band
59
+ fetch('prince.band')
60
+ end
61
+ end
62
+ end
63
+ end
64
+ end
@@ -0,0 +1,37 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'music'
4
+
5
+ module Faker
6
+ class Music
7
+ class Rush < Base
8
+ class << self
9
+ ##
10
+ # Produces the name of a member of Rush
11
+ #
12
+ # @return [String]
13
+ #
14
+ # @example
15
+ # Faker::Music::Rush.player #=> "Geddy Lee"
16
+ #
17
+ # @faker.version 2.13.0
18
+ def player
19
+ fetch('rush.players')
20
+ end
21
+
22
+ ##
23
+ # Produces the name of an album by Rush
24
+ #
25
+ # @return [String]
26
+ #
27
+ # @example
28
+ # Faker::Music::Rush.album #=> "Hold Your Fire"
29
+ #
30
+ # @faker.version 2.13.0
31
+ def album
32
+ fetch('rush.albums')
33
+ end
34
+ end
35
+ end
36
+ end
37
+ end
@@ -12,7 +12,7 @@ module Faker
12
12
  # Faker::Alphanumeric.alpha
13
13
  # #=> "West Side Story"
14
14
  #
15
- # @faker.version next
15
+ # @faker.version 2.13.0
16
16
  def adult_musical
17
17
  fetch('show.adult_musical')
18
18
  end
@@ -26,7 +26,7 @@ module Faker
26
26
  # Faker::Alphanumeric.alpha
27
27
  # #=> "Into the Woods JR."
28
28
  #
29
- # @faker.version next
29
+ # @faker.version 2.13.0
30
30
  def kids_musical
31
31
  fetch('show.kids_musical')
32
32
  end
@@ -40,7 +40,7 @@ module Faker
40
40
  # Faker::Alphanumeric.alpha
41
41
  # #=> "Death of a Salesman"
42
42
  #
43
- # @faker.version next
43
+ # @faker.version 2.13.0
44
44
  def play
45
45
  fetch('show.play')
46
46
  end
@@ -18,6 +18,19 @@ module Faker
18
18
  def character
19
19
  fetch('aqua_teen_hunger_force.character')
20
20
  end
21
+
22
+ ##
23
+ # Produces a perl of great ATHF wisdom
24
+ #
25
+ # @return [String]
26
+ #
27
+ # @example
28
+ # Faker::TvShows::AquaTeenHungerForce.quote #=> "Friendship ain't about trust. Friendship's about nunchucks."
29
+ #
30
+ # @faker.version 2.13.0
31
+ def quote
32
+ fetch('aqua_teen_hunger_force.quote')
33
+ end
21
34
  end
22
35
  end
23
36
  end
@@ -0,0 +1,37 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Faker
4
+ class TvShows
5
+ class BigBangTheory < Base
6
+ flexible :big_bang_theory
7
+
8
+ class << self
9
+ ##
10
+ # Produces a character from Big Bang Theory
11
+ #
12
+ # @return [String]
13
+ #
14
+ # @example
15
+ # Faker::TvShows::BigBangTheory.character #=> "Sheldon Cooper"
16
+ #
17
+ # @faker.version 2.13.0
18
+ def character
19
+ fetch('big_bang_theory.characters')
20
+ end
21
+
22
+ ##
23
+ # Produces a quote from Bing Bang Theory
24
+ #
25
+ # @return [String]
26
+ #
27
+ # @example
28
+ # Faker::TvShows::BigBangTheory.quote #=> "I'm not crazy. My mother had me tested."
29
+ #
30
+ # @faker.version 2.13.0
31
+ def quote
32
+ fetch('big_bang_theory.quotes')
33
+ end
34
+ end
35
+ end
36
+ end
37
+ end
@@ -79,7 +79,7 @@ module Faker
79
79
  # @example
80
80
  # Faker::TvShows::DrWho.villain #=> "The Master"
81
81
  #
82
- # @faker.version next
82
+ # @faker.version 2.13.0
83
83
  def villain
84
84
  fetch('dr_who.villains')
85
85
  end
@@ -0,0 +1,65 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Faker
4
+ class TvShows
5
+ class Futurama < Base
6
+ flexible :futurama
7
+
8
+ class << self
9
+ ##
10
+ # Produces a character from Futurama.
11
+ #
12
+ # @return [String]
13
+ #
14
+ # @example
15
+ # Faker::TvShows::Futurama.character #=> "Amy Wong"
16
+ #
17
+ # @faker.version 2.13.0
18
+ def character
19
+ fetch('futurama.characters')
20
+ end
21
+
22
+ ##
23
+ # Produces a location from Futurama.
24
+ #
25
+ # @return [String]
26
+ #
27
+ # @example
28
+ # Faker::TvShows::Futurama.location #=> "Wormulon"
29
+ #
30
+ # @faker.version 2.13.0
31
+ def location
32
+ fetch('futurama.locations')
33
+ end
34
+
35
+ ##
36
+ # Produces a quote from Futurama.
37
+ #
38
+ # @return [String]
39
+ #
40
+ # @example
41
+ # Faker::TvShows::Futurama.quote
42
+ # #=> "Ugh, it's like a party in my mouth & everyone's throwing up."
43
+ #
44
+ # @faker.version 2.13.0
45
+ def quote
46
+ fetch('futurama.quotes')
47
+ end
48
+
49
+ ##
50
+ # Produces a catchphrase from Hermes Conrad.
51
+ #
52
+ # @return [String]
53
+ #
54
+ # @example
55
+ # Faker::TvShows::Futurama.hermes_catchphrase
56
+ # #=> "Great foo of bar!"
57
+ #
58
+ # @faker.version 2.13.0
59
+ def hermes_catchphrase
60
+ fetch('futurama.hermes_catchphrases')
61
+ end
62
+ end
63
+ end
64
+ end
65
+ end
@@ -45,6 +45,20 @@ module Faker
45
45
  def quote
46
46
  fetch('simpsons.quotes')
47
47
  end
48
+
49
+ ##
50
+ # Produces an episode title from The Simpsons.
51
+ #
52
+ # @return [String]
53
+ #
54
+ # @example
55
+ # Faker::TvShows::Simpsons.episode_title
56
+ # #=> "Two Cars in Every Garage and Three Eyes on Every Fish"
57
+ #
58
+ # @faker.version 2.13.0
59
+ def episode_title
60
+ fetch('simpsons.episode_titles')
61
+ end
48
62
  end
49
63
  end
50
64
  end
@@ -14,7 +14,7 @@ module Faker
14
14
  # @example
15
15
  # Faker::TvShows::Suits.character #=> "Harvey Specter"
16
16
  #
17
- # @faker.version next
17
+ # @faker.version 2.13.0
18
18
  def character
19
19
  fetch('suits.characters')
20
20
  end
@@ -27,7 +27,7 @@ module Faker
27
27
  # @example
28
28
  # Faker::TvShows::Suits.quote #=> "Don't play the odds, play the man."
29
29
  #
30
- # @faker.version next
30
+ # @faker.version 2.13.0
31
31
  def quote
32
32
  fetch('suits.quotes')
33
33
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Faker #:nodoc:
4
- VERSION = '2.12.0'
4
+ VERSION = '2.13.0'
5
5
  end
@@ -7,7 +7,7 @@ module Faker
7
7
  base = alphabet.size
8
8
 
9
9
  lv = 0
10
- str.split('').reverse.each_with_index { |v, i| lv += v.unpack('C')[0] * 256**i }
10
+ str.split('').reverse.each_with_index { |v, i| lv += v.unpack('C') * 256**i }
11
11
 
12
12
  ret = +''
13
13
  while lv.positive?
@@ -24,19 +24,16 @@ module Faker
24
24
  if Faker::Config.locale == 'uk'
25
25
  # Based on conventions abopted by BGN/PCGN for Ukrainian
26
26
  uk_chars = {
27
- 'а' => 'a', 'б' => 'b', 'в' => 'v', 'г' => 'h', 'ґ' => 'g', 'д' => 'd',
28
- 'е' => 'e', 'є' => 'ye', 'ж' => 'zh', 'з' => 'z', 'и' => 'y', 'і' => 'i',
29
- 'ї' => 'yi', 'й' => 'y', 'к' => 'k', 'л' => 'l', 'м' => 'm', 'н' => 'n',
30
- 'о' => 'o', 'п' => 'p', 'р' => 'r', 'с' => 's', 'т' => 't', 'у' => 'u',
31
- 'ф' => 'f', 'х' => 'kh', 'ц' => 'ts', 'ч' => 'ch', 'ш' => 'sh', 'щ' => 'shch',
32
- 'ю' => 'yu', 'я' => 'ya',
33
- 'А' => 'a', 'Б' => 'b', 'В' => 'v', 'Г' => 'h', 'Ґ' => 'g', 'Д' => 'd',
34
- 'Е' => 'e', 'Є' => 'ye', 'Ж' => 'zh', 'З' => 'z', 'И' => 'y', 'І' => 'i',
35
- 'Ї' => 'yi', 'Й' => 'y', 'К' => 'k', 'Л' => 'l', 'М' => 'm', 'Н' => 'n',
36
- 'О' => 'o', 'П' => 'p', 'Р' => 'r', 'С' => 's', 'Т' => 't', 'У' => 'u',
37
- 'Ф' => 'f', 'Х' => 'kh', 'Ц' => 'ts', 'Ч' => 'ch', 'Ш' => 'sh', 'Щ' => 'shch',
38
- 'Ю' => 'yu', 'Я' => 'ya',
39
- 'ь' => '' # Ignore symbol, because its standard presentation is not allowed in URLs
27
+ 'а' => 'a', 'б' => 'b', 'в' => 'v', 'г' => 'h', 'ґ' => 'g', 'д' => 'd', 'е' => 'e',
28
+ 'є' => 'ye', 'ж' => 'zh', 'з' => 'z', 'и' => 'y', 'і' => 'i', 'ї' => 'yi', 'й' => 'y',
29
+ 'к' => 'k', 'л' => 'l', 'м' => 'm', 'н' => 'n', 'о' => 'o', 'п' => 'p', 'р' => 'r',
30
+ 'с' => 's', 'т' => 't', 'у' => 'u', 'ф' => 'f', 'х' => 'kh', 'ц' => 'ts', 'ч' => 'ch',
31
+ 'ш' => 'sh', 'щ' => 'shch', 'ю' => 'yu', 'я' => 'ya', 'А' => 'a', 'Б' => 'b', 'В' => 'v',
32
+ 'Г' => 'h', 'Ґ' => 'g', 'Д' => 'd', 'Е' => 'e', 'Є' => 'ye', 'Ж' => 'zh', 'З' => 'z',
33
+ 'И' => 'y', 'І' => 'i', 'Ї' => 'yi', 'Й' => 'y', 'К' => 'k', 'Л' => 'l', 'М' => 'm',
34
+ 'Н' => 'n', 'О' => 'o', 'П' => 'p', 'Р' => 'r', 'С' => 's', 'Т' => 't', 'У' => 'u',
35
+ 'Ф' => 'f', 'Х' => 'kh', 'Ц' => 'ts', 'Ч' => 'ch', 'Ш' => 'sh', 'Щ' => 'shch', 'Ю' => 'yu',
36
+ 'Я' => 'ya', 'ь' => '' # Ignore symbol, because its standard presentation is not allowed in URLs
40
37
  }
41
38
  return string.gsub(/[а-яА-ЯіїєґІЇЄҐ]/, uk_chars)
42
39
  end
@@ -45,22 +42,19 @@ module Faker
45
42
  # Based on conventions abopted by BGN/PCGN for Russian
46
43
  ru_chars = {
47
44
  'а' => 'a', 'б' => 'b', 'в' => 'v', 'г' => 'h', 'д' => 'd', 'е' => 'e',
48
- 'ё' => 'ye', 'ж' => 'zh', 'з' => 'z', 'и' => 'i', 'й' => 'y', 'к' => 'k',
49
- 'л' => 'l', 'м' => 'm', 'н' => 'n', 'о' => 'o', 'п' => 'p', 'р' => 'r',
50
- 'с' => 's', 'т' => 't', 'у' => 'u', 'ф' => 'f', 'х' => 'kh', 'ц' => 'ts',
51
- 'ч' => 'ch', 'ш' => 'sh', 'щ' => 'shch', 'ы' => 'у', 'э' => 'e', 'ю' => 'yu',
52
- 'я' => 'ya',
53
- 'А' => 'a', 'Б' => 'b', 'В' => 'v', 'Г' => 'h', 'Д' => 'd', 'Е' => 'e',
54
- 'Ё' => 'ye', 'Ж' => 'zh', 'З' => 'z', 'И' => 'i', 'Й' => 'y', 'К' => 'k',
55
- 'Л' => 'l', 'М' => 'm', 'Н' => 'n', 'О' => 'o', 'П' => 'p', 'Р' => 'r',
56
- 'С' => 's', 'Т' => 't', 'У' => 'u', 'Ф' => 'f', 'Х' => 'kh', 'Ц' => 'ts',
57
- 'Ч' => 'ch', 'Ш' => 'sh', 'Щ' => 'shch', 'Ы' => 'у', 'Э' => 'e', 'Ю' => 'yu',
58
- 'Я' => 'ya',
59
- 'ь' => '', 'ъ' => '' # Ignore symbols, because its standard presentation is not allowed in URLs
45
+ 'ё' => 'ye', 'ж' => 'zh', 'з' => 'z', 'и' => 'i', 'й' => 'y', 'к' => 'k',
46
+ 'л' => 'l', 'м' => 'm', 'н' => 'n', 'о' => 'o', 'п' => 'p', 'р' => 'r',
47
+ 'с' => 's', 'т' => 't', 'у' => 'u', 'ф' => 'f', 'х' => 'kh', 'ц' => 'ts',
48
+ 'ч' => 'ch', 'ш' => 'sh', 'щ' => 'shch', 'ы' => 'у', 'э' => 'e', 'ю' => 'yu',
49
+ 'я' => 'ya', 'А' => 'a', 'Б' => 'b', 'В' => 'v', 'Г' => 'h', 'Д' => 'd',
50
+ 'Е' => 'e', 'Ё' => 'ye', 'Ж' => 'zh', 'З' => 'z', 'И' => 'i', 'Й' => 'y',
51
+ 'К' => 'k', 'Л' => 'l', 'М' => 'm', 'Н' => 'n', 'О' => 'o', 'П' => 'p', 'Р' => 'r',
52
+ 'С' => 's', 'Т' => 't', 'У' => 'u', 'Ф' => 'f', 'Х' => 'kh', 'Ц' => 'ts',
53
+ 'Ч' => 'ch', 'Ш' => 'sh', 'Щ' => 'shch', 'Ы' => 'у', 'Э' => 'e', 'Ю' => 'yu',
54
+ 'Я' => 'ya', 'ь' => '', 'ъ' => '' # Ignore symbols, because its standard presentation is not allowed in URLs
60
55
  }
61
56
  return string.gsub(/[а-яА-Я]/, ru_chars)
62
57
  end
63
-
64
58
  string
65
59
  end
66
60
  end
@@ -1,4 +1,36 @@
1
1
  en:
2
2
  faker:
3
3
  aqua_teen_hunger_force:
4
- character: ["Carl Brutananadilewski", "Cybernetic Ghost of Christmas Past from the Future", "D.P", "Dr. Weird", "Dr. Wongburger", "Emory", "Err", "Frylock", "George Lowe", "Ignignokt", "Master Shake", "MC Pee Pants", "Meatwad", "Oglethorpe", "Skeeter", "Steve", "Turkatron"]
4
+ character:
5
+ - "Carl Brutananadilewski"
6
+ - "Cybernetic Ghost of Christmas Past from the Future"
7
+ - "D.P"
8
+ - "Dr. Weird"
9
+ - "Dr. Wongburger"
10
+ - "Emory"
11
+ - "Err"
12
+ - "Frylock"
13
+ - "George Lowe"
14
+ - "Ignignokt"
15
+ - "Master Shake"
16
+ - "MC Pee Pants"
17
+ - "Meatwad"
18
+ - "Oglethorpe"
19
+ - "Skeeter"
20
+ - "Steve"
21
+ - "Turkatron"
22
+ quote:
23
+ - "Dancing is forbidden!"
24
+ - "Friendship ain't about trust. Friendship's about nunchucks."
25
+ - "Listen to me, Randy. It doesn't matter what you look like on the outside-- whether you're white or black or a sasquatch even-- as long as you follow your dream, no matter how crazy or against the law it is, except for a sasquatch. If you're a sasquatch, the rules are different."
26
+ - "Do what now?"
27
+ - "Now, I am not a violent person. But I would kill somebody, in front of they own grandmother, for a ten-speed."
28
+ - "Stealing a bicycle is easy. Filling with illegal substances and transporting it across the border is not."
29
+ - "You think you're gonna live forever, but you won't. Someone'll kill ya. Someone'll kill ya with a knife."
30
+ - "Plaque is a figment of the liberal media and the dental industry to scare you into buying useless appliances and pastes. Now, I've read the arguments on both sides, and I haven't found any evidence yet to support the need to brush your teeth. Ever."
31
+ - "TONIGHT...you"
32
+ - "Sadness is for poor people"
33
+ - "I'm in the business of giving you the business. And business is booming."
34
+ - "Your jambox is now his by way of our actions."
35
+ - "It's like my pool is tearin' ass around the back yard! But it's standing still...still waters run deep."
36
+ - "He says that it sounded like my hobbit that turns the crank case is depressed and needs therapy. We need get us a new hobbit. They's from the land beyond time. Land beyond time is also gonna hook us up with a unicorn for the radiator. I ain't even gonna tell ya about that haunted air conditioner. Plus, the air filter? That's made of plutonium. That's gonna involve Superman, so...ya know, plus shipping from Krypton. And the cow..jumped over the moon."
@@ -25,7 +25,7 @@ en:
25
25
  faker:
26
26
  bank:
27
27
  name: ["UBS CLEARING AND EXECUTION SERVICES LIMITED", "ABN AMRO CORPORATE FINANCE LIMITED", "ABN AMRO FUND MANAGERS LIMITED", "ABN AMRO HOARE GOVETT SECURITIES", "ABN AMRO HOARE GOVETT CORPORATE FINANCE LTD.", "ALKEN ASSET MANAGEMENT", "ALKEN ASSET MANAGEMENT", "ABN AMRO HOARE GOVETT LIMITED", "AAC CAPITAL PARTNERS LIMITED", "ABBOTSTONE AGRICULTURAL PROPERTY UNIT TRUST", "ABN AMRO QUOTED INVESTMENTS (UK) LIMITED", "ABN AMRO MEZZANINE (UK) LIMITED", "ABBEY LIFE", "SANTANDER UK PLC", "OTKRITIE SECURITIES LIMITED", "ABC INTERNATIONAL BANK PLC", "ALLIED BANK PHILIPPINES (UK) PLC", "ABU DHABI ISLAMIC BANK", "ABG SUNDAL COLLIER LIMITED", "PGMS (GLASGOW) LIMITED", "ABINGWORTH MANAGEMENT LIMITED", "THE ROYAL BANK OF SCOTLAND PLC (FORMER RBS NV)"]
28
- swift_bic: ["AACCGB21", "AACNGB21", "AAFMGB21", "AAHOGB21", "AAHVGB21", "AANLGB21", "AANLGB2L", "AAOGGB21", "AAPEGB21", "AAPUGB21", "AAQIGB21", "ABAZGB21", "ABBEGB21", "ABBYGB2L", "ABCCGB22", "ABCEGB2L", "ABCMGB21", "ABDIGB21", "ABECGB21", "ABFIGB21", "ABMNGB21", "ABNAGB21VOC" ]
28
+ swift_bic: ["AACCGB21", "AACNGB21", "AAFMGB21", "AAHOGB21", "AAHVGB21", "AANLGB21", "AANLGB2L", "AAOGGB21", "AAPEGB21", "AAPUGB21", "AAQIGB21", "ABAZGB21", "ABBEGB21", "ABBYGB2L", "ABCCGB22", "ABCEGB2L", "ABCMGB21", "ABDIGB21", "ABECGB21", "ABFIGB21", "ABMNGB21", "ABNAGB21VOC", "ANTSGB2LXXX", "ANTSGB2LCHA", "UBKLGB2LXXX", "UBKLGB2LBAK", "AKBKGB22XXX", "ALEIGB22TSY", "AIBKGB2XTSY", "ASTPGB2LXXX", "MORLGB2LSMK", "BSABGB2LXXX", "BSCHGB2LEQU", "BOFAGB4TLTR", "BARBGB2LTOO", "BKCHGB2UXXX", "BCYPGB2LCSB", "BARBGB2LLEI", "BOFAGB3SSWI", "BOFAGB4TCCD", "BOFAGB4TCDO", "BOFAGB4TIPA", "BOFAGB4TLFS", "BOFAGB22OF2", "BOFAGB22SCP", "BOFAGB22XXX", "BOFAGB22CLS", "BOFAGB22SEC", "BARBGB2LBIR", "BARBGB2LHAR", "BARBGB2LKEN", "BARBGB2LKIL", "BARBGB2LWEM", "BARBGB2LMAN", "BARBGB2LSOU", "BRBAGB2LXXX", "BCEYGB2LXXX", "BKCHGB2LXXX", "BCYPGB2LBBB", "BCYPGB2LXXX", "BCYPGB2LCBB", "BCYPGB2LHGB", "BCYPGB2LHHB", "BCYPGB2LPGB", "BCYPGB2LSSB", "BCYPGB2LMBB"]
29
29
  iban_details:
30
30
  # Data from http://www.tbg5-finance.org/?ibandocs.shtml/
31
31
  ad:
@@ -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
+ ]