faker 2.4.0 → 2.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (60) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +34 -0
  3. data/lib/faker/default/app.rb +2 -1
  4. data/lib/faker/default/avatar.rb +2 -1
  5. data/lib/faker/default/chuck_norris.rb +1 -1
  6. data/lib/faker/default/date.rb +59 -2
  7. data/lib/faker/default/internet.rb +4 -1
  8. data/lib/faker/default/nation.rb +48 -5
  9. data/lib/faker/default/number.rb +124 -0
  10. data/lib/faker/default/restaurant.rb +54 -2
  11. data/lib/faker/default/time.rb +85 -8
  12. data/lib/faker/games/zelda.rb +1 -1
  13. data/lib/faker/japanese_media/one_piece.rb +54 -0
  14. data/lib/faker/movies/back_to_the_future.rb +28 -0
  15. data/lib/faker/movies/ghostbusters.rb +28 -0
  16. data/lib/faker/movies/harry_potter.rb +54 -0
  17. data/lib/faker/movies/hitchhikers_guide_to_the_galaxy.rb +69 -0
  18. data/lib/faker/movies/lebowski.rb +27 -0
  19. data/lib/faker/movies/lord_of_the_rings.rb +28 -0
  20. data/lib/faker/movies/princess_bride.rb +19 -0
  21. data/lib/faker/movies/star_wars.rb +94 -0
  22. data/lib/faker/movies/v_for_vendetta.rb +29 -0
  23. data/lib/faker/music/umphreys_mcgee.rb +9 -0
  24. data/lib/faker/sports/basketball.rb +36 -0
  25. data/lib/faker/sports/football.rb +45 -0
  26. data/lib/faker/tv_shows/aqua_teen_hunger_force.rb +9 -0
  27. data/lib/faker/tv_shows/bojack_horseman.rb +28 -0
  28. data/lib/faker/tv_shows/buffy.rb +45 -0
  29. data/lib/faker/tv_shows/community.rb +19 -0
  30. data/lib/faker/tv_shows/dr_who.rb +78 -2
  31. data/lib/faker/tv_shows/dumb_and_dumber.rb +28 -0
  32. data/lib/faker/tv_shows/family_guy.rb +28 -0
  33. data/lib/faker/tv_shows/friends.rb +27 -0
  34. data/lib/faker/tv_shows/game_of_thrones.rb +46 -0
  35. data/lib/faker/tv_shows/hey_arnold.rb +27 -0
  36. data/lib/faker/tv_shows/how_i_met_your_mother.rb +37 -0
  37. data/lib/faker/tv_shows/michael_scott.rb +13 -0
  38. data/lib/faker/tv_shows/new_girl.rb +19 -0
  39. data/lib/faker/tv_shows/parks_and_rec.rb +18 -0
  40. data/lib/faker/tv_shows/rick_and_morty.rb +28 -0
  41. data/lib/faker/tv_shows/ru_paul.rb +18 -0
  42. data/lib/faker/tv_shows/seinfeld.rb +28 -0
  43. data/lib/faker/tv_shows/silicon_valley.rb +75 -0
  44. data/lib/faker/tv_shows/simpsons.rb +28 -0
  45. data/lib/faker/tv_shows/south_park.rb +19 -0
  46. data/lib/faker/tv_shows/star_trek.rb +36 -0
  47. data/lib/faker/tv_shows/stargate.rb +28 -0
  48. data/lib/faker/tv_shows/stranger_things.rb +19 -0
  49. data/lib/faker/tv_shows/the_expanse.rb +36 -0
  50. data/lib/faker/tv_shows/the_fresh_prince_of_bel_air.rb +28 -0
  51. data/lib/faker/tv_shows/the_it_crowd.rb +37 -0
  52. data/lib/faker/tv_shows/the_thick_of_it.rb +28 -0
  53. data/lib/faker/tv_shows/twin_peaks.rb +28 -0
  54. data/lib/faker/tv_shows/venture_bros.rb +38 -0
  55. data/lib/faker/version.rb +1 -1
  56. data/lib/locales/en-TH.yml +360 -0
  57. data/lib/locales/en/color.yml +1 -1
  58. data/lib/locales/en/dr_who.yml +1 -1
  59. data/lib/locales/th.yml +380 -0
  60. metadata +6 -4
@@ -6,22 +6,68 @@ module Faker
6
6
  flexible :game_of_thrones
7
7
 
8
8
  class << self
9
+ ##
10
+ # Produces a character from Game of Thrones.
11
+ #
12
+ # @return [String]
13
+ #
14
+ # @example
15
+ # Faker::TvShows::GameOfThrones.character #=> "Tyrion Lannister"
16
+ #
17
+ # @faker.version 1.6.6
9
18
  def character
10
19
  fetch('game_of_thrones.characters')
11
20
  end
12
21
 
22
+ ##
23
+ # Produces a house from Game of Thrones.
24
+ #
25
+ # @return [String]
26
+ #
27
+ # @example
28
+ # Faker::TvShows::GameOfThrones.house #=> "Stark"
29
+ #
30
+ # @faker.version 1.6.6
13
31
  def house
14
32
  fetch('game_of_thrones.houses')
15
33
  end
16
34
 
35
+ ##
36
+ # Produces a city from Game of Thrones.
37
+ #
38
+ # @return [String]
39
+ #
40
+ # @example
41
+ # Faker::TvShows::GameOfThrones.city #=> "Lannisport"
42
+ #
43
+ # @faker.version 1.6.6
17
44
  def city
18
45
  fetch('game_of_thrones.cities')
19
46
  end
20
47
 
48
+ ##
49
+ # Produces a quote from Game of Thrones.
50
+ #
51
+ # @return [String]
52
+ #
53
+ # @example
54
+ # Faker::TvShows::GameOfThrones.quote
55
+ # #=> "Never forget who you are. The rest of the world won't. Wear it like an armor and it can never be used against you."
56
+ #
57
+ # @faker.version 1.6.6
21
58
  def quote
22
59
  fetch('game_of_thrones.quotes')
23
60
  end
24
61
 
62
+ ##
63
+ # Produces a dragon from Game of Thrones.
64
+ #
65
+ # @return [String]
66
+ #
67
+ # @example
68
+ # Faker::TvShows::GameOfThrones.dragon #=> "Drogon"
69
+ #
70
+ # @faker.version 1.6.6
25
71
  def dragon
26
72
  fetch('game_of_thrones.dragons')
27
73
  end
@@ -6,14 +6,41 @@ module Faker
6
6
  flexible :hey_arnold
7
7
 
8
8
  class << self
9
+ ##
10
+ # Produces a character from Hey Arnold!
11
+ #
12
+ # @return [String]
13
+ #
14
+ # @example
15
+ # Faker::TvShows::HeyArnold.character #=> "Arnold"
16
+ #
17
+ # @faker.version 1.8.0
9
18
  def character
10
19
  fetch('hey_arnold.characters')
11
20
  end
12
21
 
22
+ ##
23
+ # Produces a location from Hey Arnold!
24
+ #
25
+ # @return [String]
26
+ #
27
+ # @example
28
+ # Faker::TvShows::HeyArnold.location #=> "Big Bob's Beeper Emporium"
29
+ #
30
+ # @faker.version 1.8.0
13
31
  def location
14
32
  fetch('hey_arnold.locations')
15
33
  end
16
34
 
35
+ ##
36
+ # Produces a quote from Hey Arnold!
37
+ #
38
+ # @return [String]
39
+ #
40
+ # @example
41
+ # Faker::TvShows::HeyArnold.quote #=> "Stoop Kid's afraid to leave his stoop!"
42
+ #
43
+ # @faker.version 1.8.0
17
44
  def quote
18
45
  fetch('hey_arnold.quotes')
19
46
  end
@@ -6,18 +6,55 @@ module Faker
6
6
  flexible :how_i_met_your_mother
7
7
 
8
8
  class << self
9
+ ##
10
+ # Produces a character from How I Met Your Mother.
11
+ #
12
+ # @return [String]
13
+ #
14
+ # @example
15
+ # Faker::TvShows::HowIMetYourMother.character #=> "Barney Stinson"
16
+ #
17
+ # @faker.version 1.8.0
9
18
  def character
10
19
  fetch('how_i_met_your_mother.character')
11
20
  end
12
21
 
22
+ ##
23
+ # Produces a catch phrase from How I Met Your Mother.
24
+ #
25
+ # @return [String]
26
+ #
27
+ # @example
28
+ # Faker::TvShows::HowIMetYourMother.catch_phrase #=> "Legendary"
29
+ #
30
+ # @faker.version 1.8.0
13
31
  def catch_phrase
14
32
  fetch('how_i_met_your_mother.catch_phrase')
15
33
  end
16
34
 
35
+ ##
36
+ # Produces a high five from How I Met Your Mother.
37
+ #
38
+ # @return [String]
39
+ #
40
+ # @example
41
+ # Faker::TvShows::HowIMetYourMother.high_five #=> "Relapse Five"
42
+ #
43
+ # @faker.version 1.8.0
17
44
  def high_five
18
45
  fetch('how_i_met_your_mother.high_five')
19
46
  end
20
47
 
48
+ ##
49
+ # Produces a quote from How I Met Your Mother.
50
+ #
51
+ # @return [String]
52
+ #
53
+ # @example
54
+ # Faker::TvShows::HowIMetYourMother.quote
55
+ # #=> "Whenever I'm sad, I stop being sad and be awesome instead."
56
+ #
57
+ # @faker.version 1.8.0
21
58
  def quote
22
59
  fetch('how_i_met_your_mother.quote')
23
60
  end
@@ -4,9 +4,22 @@ module Faker
4
4
  class TvShows
5
5
  class MichaelScott < Base
6
6
  class << self
7
+ # rubocop:disable Style/AsciiComments
8
+
9
+ ##
10
+ # Produces a quote from Michael Scott.
11
+ #
12
+ # @return [String]
13
+ #
14
+ # @example
15
+ # Faker::TvShows::MichaelScott.quote
16
+ # #=> "I am Beyoncé, always."
17
+ #
18
+ # @faker.version 1.9.0
7
19
  def quote
8
20
  fetch('michael_scott.quotes')
9
21
  end
22
+ # rubocop:enable Style/AsciiComments
10
23
  end
11
24
  end
12
25
  end
@@ -6,10 +6,29 @@ module Faker
6
6
  flexible :new_girl
7
7
 
8
8
  class << self
9
+ ##
10
+ # Produces a character from New Girl.
11
+ #
12
+ # @return [String]
13
+ #
14
+ # @example
15
+ # Faker::TvShows::NewGirl.character #=> "Jessica Day"
16
+ #
17
+ # @faker.version 1.9.0
9
18
  def character
10
19
  fetch('new_girl.characters')
11
20
  end
12
21
 
22
+ ##
23
+ # Produces a quote from New Girl.
24
+ #
25
+ # @return [String]
26
+ #
27
+ # @example
28
+ # Faker::TvShows::NewGirl.quote
29
+ # #=> "Are you cooking a frittata in a sauce pan? What is this - prison?"
30
+ #
31
+ # @faker.version 1.9.0
13
32
  def quote
14
33
  fetch('new_girl.quotes')
15
34
  end
@@ -6,10 +6,28 @@ module Faker
6
6
  flexible :parks_and_rec
7
7
 
8
8
  class << self
9
+ ##
10
+ # Produces a character from Parks and Recreation.
11
+ #
12
+ # @return [String]
13
+ #
14
+ # @example
15
+ # Faker::TvShows::ParksAndRec.character #=> "Leslie Knope"
16
+ #
17
+ # @faker.version 1.9.0
9
18
  def character
10
19
  fetch('parks_and_rec.characters')
11
20
  end
12
21
 
22
+ ##
23
+ # Produces a city from Parks and Recreation.
24
+ #
25
+ # @return [String]
26
+ #
27
+ # @example
28
+ # Faker::TvShows::ParksAndRec.city #=> "Pawnee"
29
+ #
30
+ # @faker.version 1.9.0
13
31
  def city
14
32
  fetch('parks_and_rec.cities')
15
33
  end
@@ -6,14 +6,42 @@ module Faker
6
6
  flexible :rick_and_morty
7
7
 
8
8
  class << self
9
+ ##
10
+ # Produces a character from Rick and Morty.
11
+ #
12
+ # @return [String]
13
+ #
14
+ # @example
15
+ # Faker::TvShows::RickAndMorty.character #=> "Rick Sanchez"
16
+ #
17
+ # @faker.version 1.8.0
9
18
  def character
10
19
  fetch('rick_and_morty.characters')
11
20
  end
12
21
 
22
+ ##
23
+ # Produces a location from Rick and Morty.
24
+ #
25
+ # @return [String]
26
+ #
27
+ # @example
28
+ # Faker::TvShows::RickAndMorty.location #=> "Dimension C-132"
29
+ #
30
+ # @faker.version 1.8.0
13
31
  def location
14
32
  fetch('rick_and_morty.locations')
15
33
  end
16
34
 
35
+ ##
36
+ # Produces a quote from Rick and Morty.
37
+ #
38
+ # @return [String]
39
+ #
40
+ # @example
41
+ # Faker::TvShows::RickAndMorty.quote
42
+ # #=> "Ohh yea, you gotta get schwifty."
43
+ #
44
+ # @faker.version 1.8.0
17
45
  def quote
18
46
  fetch('rick_and_morty.quotes')
19
47
  end
@@ -6,10 +6,28 @@ module Faker
6
6
  flexible :rupaul
7
7
 
8
8
  class << self
9
+ ##
10
+ # Produces a quote from RuPaul's Drag Race.
11
+ #
12
+ # @return [String]
13
+ #
14
+ # @example
15
+ # Faker::TvShows::RuPaul.quote #=> "That's Funny, Tell Another One."
16
+ #
17
+ # @faker.version 1.8.0
9
18
  def quote
10
19
  fetch('rupaul.quotes')
11
20
  end
12
21
 
22
+ ##
23
+ # Produces a queen from RuPaul's Drag Race.
24
+ #
25
+ # @return [String]
26
+ #
27
+ # @example
28
+ # Faker::TvShows::RuPaul.queen #=> "Latrice Royale"
29
+ #
30
+ # @faker.version 1.8.0
13
31
  def queen
14
32
  fetch('rupaul.queens')
15
33
  end
@@ -6,14 +6,42 @@ module Faker
6
6
  flexible :seinfeld
7
7
 
8
8
  class << self
9
+ ##
10
+ # Produces a business from Seinfeld.
11
+ #
12
+ # @return [String]
13
+ #
14
+ # @example
15
+ # Faker::TvShows::Seinfeld.business #=> "Kruger Industrial Smoothing"
16
+ #
17
+ # @faker.version 1.9.2
9
18
  def business
10
19
  fetch('seinfeld.business')
11
20
  end
12
21
 
22
+ ##
23
+ # Produces a character from Seinfeld.
24
+ #
25
+ # @return [String]
26
+ #
27
+ # @example
28
+ # Faker::TvShows::Seinfeld.character #=> "George Costanza"
29
+ #
30
+ # @faker.version 1.8.3
13
31
  def character
14
32
  fetch('seinfeld.character')
15
33
  end
16
34
 
35
+ ##
36
+ # Produces a quote from Seinfeld.
37
+ #
38
+ # @return [String]
39
+ #
40
+ # @example
41
+ # Faker::TvShows::Seinfeld.quote
42
+ # #=> "I'm not a lesbian. I hate men, but I'm not a lesbian."
43
+ #
44
+ # @faker.version 1.8.3
17
45
  def quote
18
46
  fetch('seinfeld.quote')
19
47
  end
@@ -6,34 +6,109 @@ module Faker
6
6
  flexible :silicon_valley
7
7
 
8
8
  class << self
9
+ ##
10
+ # Produces a character from Silicon Valley.
11
+ #
12
+ # @return [String]
13
+ #
14
+ # @example
15
+ # Faker::TvShows::SiliconValley.character #=> "Jian Yang"
16
+ #
17
+ # @faker.version 1.8.5
9
18
  def character
10
19
  fetch('silicon_valley.characters')
11
20
  end
12
21
 
22
+ ##
23
+ # Produces a company from Silicon Valley.
24
+ #
25
+ # @return [String]
26
+ #
27
+ # @example
28
+ # Faker::TvShows::SiliconValley.company #=> "Bachmanity"
29
+ #
30
+ # @faker.version 1.8.5
13
31
  def company
14
32
  fetch('silicon_valley.companies')
15
33
  end
16
34
 
35
+ ##
36
+ # Produces a quote from Silicon Valley.
37
+ #
38
+ # @return [String]
39
+ #
40
+ # @example
41
+ # Faker::TvShows::SiliconValley.quote
42
+ # #=> "I don't want to live in a world where someone else is making the world a better place better than we are."
43
+ #
44
+ # @faker.version 1.8.5
17
45
  def quote
18
46
  fetch('silicon_valley.quotes')
19
47
  end
20
48
 
49
+ ##
50
+ # Produces an app from Silicon Valley.
51
+ #
52
+ # @return [String]
53
+ #
54
+ # @example
55
+ # Faker::TvShows::SiliconValley.app #=> "Nip Alert"
56
+ #
57
+ # @faker.version 1.8.5
21
58
  def app
22
59
  fetch('silicon_valley.apps')
23
60
  end
24
61
 
62
+ ##
63
+ # Produces an invention from Silicon Valley.
64
+ #
65
+ # @return [String]
66
+ #
67
+ # @example
68
+ # Faker::TvShows::SiliconValley.invention
69
+ # #=> "Tres Comas Tequila"
70
+ #
71
+ # @faker.version 1.8.5
25
72
  def invention
26
73
  fetch('silicon_valley.inventions')
27
74
  end
28
75
 
76
+ ##
77
+ # Produces a motto from Silicon Valley.
78
+ #
79
+ # @return [String]
80
+ #
81
+ # @example
82
+ # Faker::TvShows::SiliconValley.motto
83
+ # #=> "Our products are products, producing unrivaled results"
84
+ #
85
+ # @faker.version 1.8.5
29
86
  def motto
30
87
  fetch('silicon_valley.mottos')
31
88
  end
32
89
 
90
+ ##
91
+ # Produces a URL from Silicon Valley.
92
+ #
93
+ # @return [String]
94
+ #
95
+ # @example
96
+ # Faker::TvShows::SiliconValley.url #=> "http://www.piedpiper.com"
97
+ #
98
+ # @faker.version 1.8.5
33
99
  def url
34
100
  fetch('silicon_valley.urls')
35
101
  end
36
102
 
103
+ ##
104
+ # Produces an email address from Silicon Valley.
105
+ #
106
+ # @return [String]
107
+ #
108
+ # @example
109
+ # Faker::TvShows::SiliconValley.email #=> "richard@piedpiper.test"
110
+ #
111
+ # @faker.version 1.9.0
37
112
  def email
38
113
  fetch('silicon_valley.email')
39
114
  end