faker 1.8.5 → 1.8.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2f69c0a347650680db1a112cec7a4bb3f3ee0539
4
- data.tar.gz: 61cf772ea733d076a70dae6ab11be1d2889bb6b5
3
+ metadata.gz: e42cc2e5c4e5a5a84b5e2bcd1e0282c971c3db66
4
+ data.tar.gz: c66d60a766503aca14f2765e77e938762c2dbc56
5
5
  SHA512:
6
- metadata.gz: e8d080833b0d241eafe69f9b8a023006f1588ead012d51bf5252b5935efe2e638d7d6cc2898d82b54b19a344ad268daf8d153f68b2a1ff4330abdc245550e3e5
7
- data.tar.gz: 15e0fc3b13bd60c96b15089b0def77887b201d53f0e1687f7518ea6b212c2553de559c4591db2104157f350cf05663cf768e47fc6534aff8add15c2643f25c33
6
+ metadata.gz: 92749073eddc2e2b9ef51ccf0ce15b45eb097dc90558712c5172453a2db8e51cbba07109dece18f74f6767f43dabe12adf9cbd7114d7b6020736e0d3b1c6834c
7
+ data.tar.gz: 475470c5bc58adbfe22ff8ae1736c957106e50bfd77f59d17f6e06141eee46673cb351a35259129a70d9cef8162041a5dd0bdc5f58c3c038659e79883b74ca8d
@@ -1,5 +1,18 @@
1
1
  # Change Log
2
2
 
3
+ ## [v1.8.6](https://github.com/stympy/faker/tree/v1.8.6) (2017-12-21)
4
+ [Full Changelog](https://github.com/stympy/faker/compare/v1.8.5...v1.8.6)
5
+
6
+ **Additions**
7
+
8
+ - Faker::App.semantic_version
9
+ - Faker::Types
10
+ - New methods in Faker::StarWars: call_squadron, call_sign, call_number
11
+
12
+ **Other changes**
13
+
14
+ - Changed i18n depedency from `~> 0.9.1` to `>= 0.7`
15
+
3
16
  ## [v1.8.5](https://github.com/stympy/faker/tree/v1.8.5) (2017-12-06)
4
17
  [Full Changelog](https://github.com/stympy/faker/compare/v1.8.4...v1.8.5)
5
18
 
@@ -567,4 +580,4 @@
567
580
  * Initial release
568
581
 
569
582
 
570
- \* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
583
+ \* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
data/README.md CHANGED
@@ -110,6 +110,7 @@ Contents
110
110
  - [Faker::Time](doc/time.md)
111
111
  - [Faker::TwinPeaks](doc/twin_peaks.md)
112
112
  - [Faker::Twitter](doc/twitter.md)
113
+ - [Faker::Types](doc/types.md)
113
114
  - [Faker::UmphreysMcgee](doc/umphreys_mcgee.md)
114
115
  - [Faker::University](doc/university.md)
115
116
  - [Faker::Vehicle](doc/vehicle.md)
@@ -13,6 +13,11 @@ module Faker
13
13
  def author
14
14
  parse('app.author')
15
15
  end
16
+
17
+ def semantic_version(major: 0..9, minor: 0..9, patch: 1..9)
18
+ [ major, minor, patch ].map {|chunk| sample(Array(chunk)) }.join('.')
19
+ end
20
+
16
21
  end
17
22
  end
18
23
  end
@@ -1,6 +1,18 @@
1
1
  module Faker
2
2
  class StarWars < Base
3
3
  class << self
4
+ def call_squadron
5
+ sample(call_squadrons)
6
+ end
7
+
8
+ def call_sign
9
+ numerify(parse('star_wars.call_sign'))
10
+ end
11
+
12
+ def call_number
13
+ sample(call_numbers)
14
+ end
15
+
4
16
  def character
5
17
  sample(characters)
6
18
  end
@@ -29,6 +41,14 @@ module Faker
29
41
  sentence + sample(['.','?','!'])
30
42
  end
31
43
 
44
+ def call_numbers
45
+ fetch('star_wars.call_numbers')
46
+ end
47
+
48
+ def call_squadrons
49
+ fetch('star_wars.call_squadrons')
50
+ end
51
+
32
52
  def characters
33
53
  fetch('star_wars.characters')
34
54
  end
@@ -0,0 +1,93 @@
1
+ module Faker
2
+ class Types < Base
3
+ CHARACTERS = ('0'..'9').to_a + ('a'..'z').to_a
4
+ SIMPLE_TYPES = [:string, :fixnum]
5
+ COMPLEX_TYPES = [:hash, :array]
6
+
7
+ class << self
8
+ def string(words=1)
9
+ resolved_num = resolve(words)
10
+ word_list = (
11
+ translate('faker.lorem.words')
12
+ )
13
+ word_list = word_list * ((resolved_num / word_list.length) + 1)
14
+ shuffle(word_list)[0, resolved_num].join(" ")
15
+ end
16
+
17
+ def character
18
+ sample(CHARACTERS)
19
+ end
20
+
21
+ def integer(from=0, to=100)
22
+ rand(from..to).to_i
23
+ end
24
+
25
+ def hash(key_count=1)
26
+ Hash.new.tap do |hsh|
27
+ key_count.times do
28
+ hsh.merge!({self.string.to_sym => self.random_type})
29
+ end
30
+ end
31
+ end
32
+
33
+ def complex_hash(key_count=1)
34
+ Hash.new.tap do |hsh|
35
+ key_count.times do
36
+ hsh.merge!({self.string.to_sym => self.random_complex_type})
37
+ end
38
+ end
39
+ end
40
+
41
+ def array(len=1)
42
+ Array.new.tap do |ar|
43
+ len.times do
44
+ ar.push self.random_type
45
+ end
46
+ end
47
+ end
48
+
49
+ def random_type
50
+ type_to_use = SIMPLE_TYPES[rand(0..SIMPLE_TYPES.length - 1)]
51
+ case type_to_use
52
+ when :string
53
+ self.string
54
+ when :fixnum
55
+ self.integer
56
+ else
57
+ self.integer
58
+ end
59
+ end
60
+
61
+ def random_complex_type
62
+ types = SIMPLE_TYPES + COMPLEX_TYPES
63
+ type_to_use = types[rand(0..types.length - 1)]
64
+ case type_to_use
65
+ when :string
66
+ self.string
67
+ when :fixnum
68
+ self.integer
69
+ when :hash
70
+ self.hash
71
+ when :array
72
+ self.array
73
+ else
74
+ self.integer
75
+ end
76
+ end
77
+
78
+ private
79
+
80
+ def titleize(word)
81
+ word.split(/(\W)/).map(&:capitalize).join
82
+ end
83
+
84
+ def resolve(value)
85
+ case value
86
+ when Array then sample(value)
87
+ when Range then rand value
88
+ else value
89
+ end
90
+ end
91
+ end
92
+ end
93
+ end
@@ -1,3 +1,3 @@
1
1
  module Faker #:nodoc:
2
- VERSION = "1.8.5"
2
+ VERSION = "1.8.6"
3
3
  end
@@ -1,29 +1,31 @@
1
1
  en:
2
2
  faker:
3
3
  star_wars:
4
- characters: ["Padme Amidala", "Jar Jar Binks", "Borvo the Hutt", "Darth Caedus", "Boba Fett", "Jabba the Hutt", "Obi-Wan Kenobi", "Darth Maul", "Leia Organa", "Sheev Palpatine", "Kylo Ren", "Darth Sidious", "Anakin Skywalker", "Luke Skywalker", "Ben Solo", "Han Solo", "Darth Vader", "Watto", "Mace Windu", "Yoda", "Count Dooku", "Sebulba", "Qui-Gon Jinn", "Chewbacca", "Jango Fett", "Lando Calrissian", "Bail Organa", "Wedge Antilles", "Poe Dameron", "Ki-Adi-Mundi", "Nute Gunray", "Panaka", "Rune Haako", "Rey", "Finn", "Supreme Leader Snoke",
5
- "General Hux", "Admiral Ackbar", "Ahsoka Tano", "Asajj Ventress", "Bendu", "Captain Phasma", "Chirrut Imwe", "Ezra Bridger", "Galen Erso", "Grand Moff Tarkin", "Grand Admiral Thrawn", "Greedo", "Jyn Erso", "Lyra Erso", "Maz Kanata", "Mon Mothma", "Sabine Wren", "Saw Gerrera", "Savage Opress", "Shmi Skywalker", "Kanan Jarrus", "Rose"]
6
- droids: ["2-1B", "4-LOM", "ASP", "B2-RP", "B1", "BD-3000", "FA-4", "GH-7", "GNK", "LM-432", "ID9", "11-4D", "2-1B", "327-T", "4-LOM", "B4-D4", "NR-N99", "C-3PO", "R2-D2", "BB-8", "R2-Q5", "Super Battle Droid", "Mouse Droid", "Droideka", "Buzz Droid", "Magnaguard", "Interrogation Droid", "Vulture Droid", "BB-9E", "K-2SO"]
7
- planets: ["Alderaan", "Bespin", "Coruscant", "Cloud City", "Crait", "DQar", "Dathomir", "Dagobah", "Death Star", "Eadu", "Endor", "Felucia", "Geonosis", "Hoth", "Hosnian Prime", "Jakku", "Jedha", "Kamino", "Kashyyyk", "Lothal", "Mandalore", "Mos Eisley", "Mustafar", "Mygeeto", "Naboo", "Onderon", "Ryloth", "Scarif", "Starkiller Base", "Sullust", "Takodana", "Tatooine", "Utapau", "Yavin 4"]
8
- species: ["Ewok", "Hutt", "Gungan", "Ithorian", "Jawa", "Neimoidian", "Sullustan", "Wookiee", "Mon Calamari", "Bith", "Dathomirian", "Gamorreans", "Kaminoan", "Twi\'lek", "Porg"]
9
- vehicles: ["V-Wing Fighter", "ATT Battle Tank", "Naboo N-1 Starfighter", "Republic Cruiser", "Naboo Royal Starship", "Gungan Bongo Submarine", "Flash Speeder", "Trade Federation Battleship", "Millennium Falcon", "Sith Infiltrator", "AT-ST Walker", "TIE Bomber", "Imperial Shuttle", "Sandcrawler", "TIE Interceptor", "Speeder Bike", "Death Star", "AT-AT Walker", "Imperial Star Destroyer", "X-Wing Fighter", "A-Wing Fighter", "GR-75 Transport", "Imperial Interdictor",
10
- "MTT", "Phantom II", "Republic Attack Gunship", "Rey\'s Speeder", "Ghost", "U-Wing", "Y-Wing Starfighter", "First Order TIE Fighter", "AT-M6 Walker", "First Order Dreadnought"]
4
+ characters: ["Padme Amidala", "Jar Jar Binks", "Borvo the Hutt", "Darth Caedus", "Boba Fett", "Jabba the Hutt", "Obi-Wan Kenobi", "Darth Maul", "Leia Organa", "Sheev Palpatine", "Kylo Ren", "Darth Sidious", "Anakin Skywalker", "Luke Skywalker", "Ben Solo", "Han Solo", "Darth Vader", "Watto", "Mace Windu", "Yoda", "Count Dooku", "Sebulba", "Qui-Gon Jinn", "Chewbacca", "Jango Fett", "Lando Calrissian", "Bail Organa", "Wedge Antilles", "Poe Dameron", "Ki-Adi-Mundi", "Nute Gunray", "Panaka", "Rune Haako", "Rey", "Finn", "Supreme Leader Snoke", "General Hux", "Admiral Ackbar", "Ahsoka Tano", "Asajj Ventress", "Bendu", "Captain Phasma", "Chirrut Imwe", "Ezra Bridger", "Galen Erso", "Grand Moff Tarkin", "Grand Admiral Thrawn", "Greedo", "Jyn Erso", "Lyra Erso", "Maz Kanata", "Mon Mothma", "Sabine Wren", "Saw Gerrera", "Savage Opress", "Shmi Skywalker", "Kanan Jarrus", "Hera Syndulla", "Rose Tico", "Vice Admiral Holdo"]
5
+ call_squadrons: ['Rogue', 'Red', 'Gray', 'Green', 'Blue', 'Gold', 'Black', 'Yellow', 'Phoenix']
6
+ call_numbers: ['Leader', '#']
7
+ call_sign:
8
+ - "#{call_squadron} #{call_number}"
9
+ droids: ["2-1B", "4-LOM", "ASP", "B2-RP", "B1", "BD-3000", "C1-10P", "FA-4", "GH-7", "GNK", "LM-432", "ID9", "11-4D", "2-1B", "327-T", "4-LOM", "B4-D4", "NR-N99", "C-3PO", "R2-D2", "BB-8", "R2-Q5", "Super Battle Droid", "Mouse Droid", "Droideka", "Buzz Droid", "Magnaguard", "Interrogation Droid", "Vulture Droid", "BB-9E", "K-2SO"]
10
+ planets: ["Alderaan", "Ahch-To", "Bespin", "Cantonica", "Coruscant", "Cloud City", "Crait", "DQar", "Dathomir", "Dagobah", "Death Star", "Eadu", "Endor", "Felucia", "Geonosis", "Hoth", "Hosnian Prime", "Jakku", "Jedha", "Kamino", "Kashyyyk", "Lothal", "Mandalore", "Mustafar", "Mygeeto", "Naboo", "Onderon", "Ryloth", "Scarif", "Starkiller Base", "Sullust", "Takodana", "Tatooine", "Utapau", "Yavin 4"]
11
+ species: ["Ewok", "Hutt", "Gungan", "Ithorian", "Jawa", "Neimoidian", "Sullustan", "Wookiee", "Mon Calamari", "Bith", "Dathomirian", "Gamorreans", "Kaminoan", "Twi'lek", "Porg"]
12
+ vehicles: ["V-Wing Fighter", "ATT Battle Tank", "Naboo N-1 Starfighter", "Republic Cruiser", "Naboo Royal Starship", "Gungan Bongo Submarine", "Flash Speeder", "Trade Federation Battleship", "Millennium Falcon", "Sith Infiltrator", "AT-ST Walker", "TIE Bomber", "Imperial Shuttle", "Sandcrawler", "TIE Interceptor", "Speeder Bike", "Death Star", "AT-AT Walker", "Imperial Star Destroyer", "X-Wing Fighter", "A-Wing Fighter", "GR-75 Transport", "Imperial Interdictor", "MTT", "Phantom II", "Republic Attack Gunship", "Rey's Speeder", "Ghost", "U-Wing", "Y-Wing Starfighter", "First Order TIE Fighter", "AT-M6 Walker", "First Order Dreadnought", "TIE Silencer", "Resistance Bomber", "Resistance Ski Speeder"]
11
13
  wookiee_words: ["wyaaaaaa", "ruh", "huewaa", "muaa", "mumwa", "wua", "ga", "ma", "ahuma", "ooma", "youw", "kabukk", "wyogg", "gwyaaaag", "roooarrgh", "ur", "ru", "roo", "hnn-rowr", "yrroonn", "nng", "rarr"]
12
14
  quotes:
13
15
  admiral_ackbar:
14
- - "It\'s a trap!"
15
- - "The Shield is down! Commence attack on the Death star\'s main reactor. "
16
- - "We have no choice, General Calrissian! Our cruisers can\'t repel firepower of that magnitude!"
16
+ - "It's a trap!"
17
+ - "The Shield is down! Commence attack on the Death star's main reactor. "
18
+ - "We have no choice, General Calrissian! Our cruisers can't repel firepower of that magnitude!"
17
19
  ahsoka_tano:
18
20
  - "Suicide is not the Jedi way, master."
19
- - "Let\'s just say my master will always do what needs to be done. I\'m not even sure how peacetime will agree with him."
20
- - "Sorry to interrupt your playtime, Grumpy, but wouldn\'t you prefer a challenge? "
21
+ - "Let's just say my master will always do what needs to be done. I'm not even sure how peacetime will agree with him."
22
+ - "Sorry to interrupt your playtime, Grumpy, but wouldn't you prefer a challenge? "
21
23
  anakin_skywalker:
22
- - "I\'ve got a bad feeling about this."
24
+ - "I've got a bad feeling about this."
23
25
  - "Just for once, let me look on you with my own eyes."
24
26
  - "Jedi business, go back to your drinks!"
25
27
  asajj_ventress:
26
- - "You\'re tenacious, Jedi."
28
+ - "You're tenacious, Jedi."
27
29
  - "Not even the dark side can give you that power."
28
30
  bendu:
29
31
  - "Your presence is like a violent storm in this quiet world"
@@ -31,25 +33,25 @@ en:
31
33
  - "Once something is known, it cannot be unknown."
32
34
  boba_fett:
33
35
  - "He's no good to me dead."
34
- - "You can run, but you\'ll only die tired."
36
+ - "You can run, but you'll only die tired."
35
37
  c_3po:
36
38
  - "I have a bad feeling about this."
37
39
  - "R2-D2, you know better than to trust a strange computer!"
38
- - "I\'m terribly sorry about all this. After all, he\'s only a Wookiee!"
40
+ - "I'm terribly sorry about all this. After all, he's only a Wookiee!"
39
41
  - "Don’t you call me a mindless philosopher, you overweight glob of grease!"
40
- - "We\'re doomed."
42
+ - "We're doomed."
41
43
  - "I suggest a new strategy, R2. Let the Wookiee win."
42
- - "We seem to be made to suffer. It\'s our lot in life."
43
- - "I\'m backwards you filthy furball!"
44
+ - "We seem to be made to suffer. It's our lot in life."
45
+ - "I'm backwards you filthy furball!"
44
46
  count_dooku:
45
47
  - "Twice the pride, double the fall."
46
48
  darth_caedus:
47
- - "You\'re smarter than a tree, aren\'t you?"
49
+ - "You're smarter than a tree, aren't you?"
48
50
  darth_vader:
49
51
  - "I find your lack of faith disturbing."
50
52
  - "You are a member of the rebel alliance, and a traitor."
51
53
  - "You are unwise to lower your defenses!"
52
- - "I am altering the deal. Pray I don\'t alter it any further."
54
+ - "I am altering the deal. Pray I don't alter it any further."
53
55
  - "Perhaps you think you're being treated unfairly?"
54
56
  - "The circle is now complete. When I left you, I was but the learner. Now I am the master."
55
57
  - "Obi-Wan was wise to hide her from me. Now, his failure is complete. If you will not turn to the Dark Side… then perhaps she will."
@@ -67,39 +69,39 @@ en:
67
69
  - "Give in to your anger. With each passing moment you make yourself more my servant."
68
70
  - "Let the hate flow through you!"
69
71
  - "Your feeble skills are no match for the power of the Dark Side."
70
- - "Your hate has made you powerful. Now fulfill your destiny, take you're father\'s place by my side."
72
+ - "Your hate has made you powerful. Now fulfill your destiny, take you're father's place by my side."
71
73
  - "So be it, Jedi."
72
74
  - "The Force is strong with him. The son of Skywalker must not become a Jedi."
73
75
  finn:
74
76
  - "Droid, please!"
75
77
  - "Sanitation"
76
- - "Solo, we'll figure it out. We\'ll use the Force."
77
- - "I\'m a big deal in the Resistance. Which puts a real target on my back."
78
+ - "Solo, we'll figure it out. We'll use the Force."
79
+ - "I'm a big deal in the Resistance. Which puts a real target on my back."
78
80
  general_hux:
79
- - "I won\'t have you question my methods."
81
+ - "I won't have you question my methods."
80
82
  - "Careful, Ren, that your personal interests not interfere with orders from Leader Snoke."
81
83
  grand_admiral_thrawn:
82
- - "I will start my operations here, and pull the rebels apart piece by piece. They\'ll be the architects of their own destruction."
84
+ - "I will start my operations here, and pull the rebels apart piece by piece. They'll be the architects of their own destruction."
83
85
  - "War is in your blood. I studied the art of war, worked to perfect it, but you? You were forged by it."
84
86
  grand_moff_tarkin:
85
87
  - "Now, witness the power of this fully operational battle station."
86
- - "The Jedi are extinct. Their fire has gone out of the universe. You, my friend, are all that\'s left of their religion."
88
+ - "The Jedi are extinct. Their fire has gone out of the universe. You, my friend, are all that's left of their religion."
87
89
  greedo:
88
- - "Koona t\'chuta Solo? (Going somewhere Solo?)"
89
- - "Soong peetch alay. (It\'s too late.)"
90
+ - "Koona t'chuta Solo? (Going somewhere Solo?)"
91
+ - "Soong peetch alay. (It's too late.)"
90
92
  - "Ee mara tom tee tok maky cheesa. (You should have paid him when you had the chance.)"
91
93
  - "Jabba won neechee kochba mu shanee wy tonny wya uska. (Jabba put a price on your head so large, every bounty hunter in the galaxy will be looking for you.)"
92
- - "Chosky nowy u chusu. (I\'m lucky I found you first.)"
94
+ - "Chosky nowy u chusu. (I'm lucky I found you first.)"
93
95
  - "El jaya kulpa intick kuny ku suwa. (If you give it to me, I might forget I found you.)"
94
- - "Semal hi teek teek. (Jabba\'s through with you.)"
96
+ - "Semal hi teek teek. (Jabba's through with you.)"
95
97
  - "Sone guru ye buya nyah oo won spasteega koo shu coon bon duwa weeptee. (He has no time for smugglers who drop their shipments at the first sign of an Imperial cruiser.)"
96
98
  - "Talk Jabba. (Tell that to Jabba.)"
97
99
  - "Boompa kom bok nee aht am bompah. (He may only take your ship.)"
98
- - "Nuklee numaa (that\'s the idea.)"
99
- - "Ches ko ba tuta creesta crenko ya kolska! (This is something I\'ve been looking forward to for a long time.)"
100
+ - "Nuklee numaa (that's the idea.)"
101
+ - "Ches ko ba tuta creesta crenko ya kolska! (This is something I've been looking forward to for a long time.)"
100
102
  han_solo:
101
- - "It\'s the ship that made the Kessel Run in less than 12 parsecs."
102
- - "She may not look like much, but she\'s got it where it counts, kid."
103
+ - "It's the ship that made the Kessel Run in less than 12 parsecs."
104
+ - "She may not look like much, but she's got it where it counts, kid."
103
105
  - "Never tell me the odds"
104
106
  - "Well, you said you wanted to be around when I made a mistake."
105
107
  - "No reward is worth this."
@@ -108,16 +110,16 @@ en:
108
110
  - "I have a really bad feeling about this."
109
111
  - "Ungh. And I thought they smelled bad on the outside."
110
112
  - "I have a bad feeling about this."
111
- - "Bounty hunters! We don\'t need this scum."
112
- - "If they follow standard Imperial procedure, they\'ll dump their garbage before they go to light-speed."
113
+ - "Bounty hunters! We don't need this scum."
114
+ - "If they follow standard Imperial procedure, they'll dump their garbage before they go to light-speed."
113
115
  - "Hokey religions and ancient weapons are no match for a good blaster at your side, kid."
114
116
  jabba_the_hutt:
115
117
  - "Solo, la pa loiya Solo! (Solo, come out of there! Solo!)"
116
118
  - "Bone duwa pweepway? (Have you now?)"
117
119
  - "Han, ma bookie, keel-ee calleya ku kah. (Han, my boy, you disappoint me.)"
118
- - "Wanta dah moolee-rah... (Why haven\'t you paid me...)"
120
+ - "Wanta dah moolee-rah... (Why haven't you paid me...)"
119
121
  - "Mon kee chees kreespa Greedo? (And why did you fry poor Greedo?)"
120
- - "Han, ma kee chee zay. (Han, I can\'t make exceptions.)"
122
+ - "Han, ma kee chee zay. (Han, I can't make exceptions.)"
121
123
  - "Hassa ba una kulkee malia... (What if everyone who smuggled for me...)"
122
124
  - "Lude eveela deesa... (drooped their cargo at the sight...)"
123
125
  - "sloan dwa spasteega el was nwo yana da gooloo? (of an Imperial starship?)"
@@ -125,7 +127,7 @@ en:
125
127
  - "See fa doi dee yaba... (So for an extra twenty percent...)"
126
128
  - "Dee do ee deen. (Okay, fifteen percent.)"
127
129
  - "Ee ya ba ma dookie massa... (But if you fail me again...)"
128
- - "Eek bon chee ko pa na green. (I\'ll put a price on your head so big...)"
130
+ - "Eek bon chee ko pa na green. (I'll put a price on your head so big...)"
129
131
  - "na meeto do buny dunko la cho ya. (you won't be able to get near a civilized system.)"
130
132
  - "Boska! (Come on!)"
131
133
  jar_jar_binks:
@@ -138,7 +140,7 @@ en:
138
140
  - "Mesa cause one, two-y little bitty axadentes, huh? Yud say boom de gasser, den crashin der bosses heyblibber, den banished."
139
141
  - "Mesa called Jar-Jar Binks. Mesa your humble servant."
140
142
  - "My forgotten, da Bosses will do terrible tings to me TERRRRRIBLE is me going back der!"
141
- - "Mesa day startin pretty okee-day with a brisky morning munchy, then BOOM! Gettin very scared and grabbin that Jedi and POW! Mesa here! Mesa gettin\' very very scared!"
143
+ - "Mesa day startin pretty okee-day with a brisky morning munchy, then BOOM! Gettin very scared and grabbin that Jedi and POW! Mesa here! Mesa gettin' very very scared!"
142
144
  k_2so:
143
145
  - "I have a bad feeling about..."
144
146
  kylo_ren:
@@ -146,24 +148,24 @@ en:
146
148
  - "Show me again, grandfather, and I will finish what you started."
147
149
  lando_calrissian:
148
150
  - "Why you slimy, double-crossing, no-good swindler. You've got a lot of guts coming here, after what you pulled."
149
- - "How you doin\' Chewbacca? Still hanging around with this loser?"
150
- - "But how could they be jamming us if they don\'t know that we\'re coming?"
151
+ - "How you doin' Chewbacca? Still hanging around with this loser?"
152
+ - "But how could they be jamming us if they don't know that we're coming?"
151
153
  leia_organa:
152
154
  - "You do have your moments. Not many, but you have them."
153
155
  - "I have a bad feeling about this."
154
156
  - "Would somebody get this big walking carpet out of my way?"
155
- - "Aren\'t you a little short for a Stormtrooper?"
156
- - "Help me Obi-Wan. You\'re my only hope"
157
+ - "Aren't you a little short for a Stormtrooper?"
158
+ - "Help me Obi-Wan. You're my only hope"
157
159
  - "Why, you stuck-up, half-witted, scruffy-looking nerf herder!"
158
- - "Governor Tarkin, I should\'ve expected to find you holding Vader\'s leash. I recognized your foul stench when I was brought on board."
160
+ - "Governor Tarkin, I should've expected to find you holding Vader's leash. I recognized your foul stench when I was brought on board."
159
161
  - "Somebody has to save our skins. Into the garbage chute, flyboy!"
160
162
  luke_skywalker:
161
163
  - "But I was going into Tosche Station to pick up some power converters!"
162
164
  - "I have a very bad feeling about this."
163
- - "It\'s not impossible. I used to bullseye womp rats in my T-16 back home, they\'re not much bigger than two meters."
165
+ - "It's not impossible. I used to bullseye womp rats in my T-16 back home, they're not much bigger than two meters."
164
166
  - "You know, that little droid is going to cause me a lot of trouble."
165
- - "If you\'re saying that coming here was a bad idea, I\'m starting to agree with you."
166
- - "You\'ll find I\'m full of surprises!"
167
+ - "If you're saying that coming here was a bad idea, I'm starting to agree with you."
168
+ - "You'll find I'm full of surprises!"
167
169
  - "Your overconfidence is your weakness."
168
170
  - "You serve your master well. And you will be rewarded."
169
171
  - "Threepio, tell them if they don't do as you wish, you'll become angry and use your magic"
@@ -177,28 +179,28 @@ en:
177
179
  - "An elegant weapon for a more civilized age."
178
180
  - "You don’t need to see his identification. These aren’t the droids you’re looking for."
179
181
  - "You will never find a more wretched hive of scum and villainy. We must be cautious."
180
- - "Who\'s the more foolish; the fool, or the fool who follows him?"
182
+ - "Who's the more foolish; the fool, or the fool who follows him?"
181
183
  - "I have a bad feeling about this."
182
184
  - "Strike me down, and I will become more powerful than you could possibly imagine."
183
185
  - "In my experience there is no such thing as luck."
184
186
  - "The Force will be with you. Always."
185
- - "That\'s no moon. It\'s a space station."
187
+ - "That's no moon. It's a space station."
186
188
  - "I felt a great disturbance in the Force. As if millions of voices suddenly cried out in terror and were suddenly silenced."
187
189
  - "Use the Force, Luke."
188
190
  padme_amidala:
189
191
  - "So this is how liberty dies. With thunderous applause."
190
192
  - "Ani? My goodness, you've grown."
191
- - "Anakin you\'re breaking my heart, you're going down a path I can\'t follow."
193
+ - "Anakin you're breaking my heart, you're going down a path I can't follow."
192
194
  - "Hold me, like you did by the lake on Naboo; so long ago when there was nothing but our love. No politics, no plotting, no war."
193
195
  - "I was not elected to watch my people suffer and die while you discuss this invasion in a committee!"
194
196
  qui_gon_jinn:
195
197
  - "Remember your focus determines your reality."
196
198
  rey:
197
199
  - "You will remove these restraints and leave this cell with the door open."
198
- - "The garbage\'ll do"
200
+ - "The garbage'll do"
199
201
  shmi_skywalker:
200
202
  - "You can't stop change any more than you can stop the suns from setting."
201
- - "The Republic doesn\'t exist out here. We must survive on our own."
203
+ - "The Republic doesn't exist out here. We must survive on our own."
202
204
  yoda:
203
205
  - "Wars not make one great."
204
206
  - "Truly wonderful, the mind of a child is."
@@ -208,7 +210,7 @@ en:
208
210
  - "Fear is the path to the dark side... fear leads to anger... anger leads to hate... hate leads to suffering."
209
211
  - "Judge me by my size, do you?"
210
212
  - "Do. Or do not. There is no try."
211
- - Luminous beings are we... not this crude matter.”
213
+ - "Luminous beings are we... not this crude matter."
212
214
  - "Train yourself to let go of everything you fear to lose."
213
215
  alternate_character_spellings:
214
216
  admiral_ackbar: ['akbar', 'ackbar', 'admiral ackbar', 'admiral akbar', 'admiral_ackbar']
metadata CHANGED
@@ -1,29 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: faker
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.5
4
+ version: 1.8.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Benjamin Curtis
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-12-06 00:00:00.000000000 Z
11
+ date: 2017-12-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: i18n
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.9.1
19
+ version: '0.7'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - "~>"
24
+ - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: 0.9.1
26
+ version: '0.7'
27
27
  description: 'Faker, a port of Data::Faker from Perl, is used to easily generate fake
28
28
  data: names, addresses, phone numbers, etc.'
29
29
  email:
@@ -136,6 +136,7 @@ files:
136
136
  - lib/faker/time.rb
137
137
  - lib/faker/twin_peaks.rb
138
138
  - lib/faker/twitter.rb
139
+ - lib/faker/types.rb
139
140
  - lib/faker/umphreys_mcgee.rb
140
141
  - lib/faker/university.rb
141
142
  - lib/faker/v_for_vendetta.rb