faker 3.4.1 → 3.4.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +49 -0
- data/lib/faker/default/address.rb +2 -2
- data/lib/faker/default/internet.rb +1 -1
- data/lib/faker/default/national_health_service.rb +7 -2
- data/lib/faker/default/vehicle.rb +4 -3
- data/lib/faker/locations/australia.rb +2 -2
- data/lib/faker/version.rb +1 -1
- data/lib/helpers/deprecator.rb +24 -1
- data/lib/locales/en/dog.yml +262 -7
- data/lib/locales/en/dota.yml +120 -67
- data/lib/locales/en/vehicle.yml +1 -1
- data/lib/locales/sv.yml +99 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cf806bbcecec3b286e05fe7c79f0b4274708a3a7f55add0b3488a3ba8bf574f6
|
4
|
+
data.tar.gz: 688f47f7f92a4b58281ef2e3beb0df72e134e916929d7aa1ff4e6db07af9151d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4cd84609a1b8b0d846f5185cd544141e22d8296a2bcbe4a613daabcdadde8afa1039a9087dafbf7b7ccba7668ff5c506b1ca25cbebd3520455760a16dea45cd6
|
7
|
+
data.tar.gz: ab939601c6ceeb1f051d708687a61e2a89c3e9da77881159866a73cb5039c9292101cb48d3b19c36607b1cbf25192e8895e7e49b0dde1e88c0e07c0e24e75f01
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,54 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [v3.4.2](https://github.com/faker-ruby/faker/tree/v3.4.2) (2024-07-16)
|
4
|
+
|
5
|
+
Happy July with a new faker-ruby release.
|
6
|
+
|
7
|
+
This version:
|
8
|
+
|
9
|
+
- introduces a breaking change for `Faker::NationalHealthService.british_number` (more details below)
|
10
|
+
- adds translation for some generators
|
11
|
+
- fixes bugs
|
12
|
+
|
13
|
+
### Breaking changes
|
14
|
+
|
15
|
+
The NHS sets aside a range of numbers from 999 000 0000 to 999 999 9999 for test purposes. The old range could
|
16
|
+
produce NHS numbers that were in use by real patients in the UK/England and Wales. In this version, `Faker::NationalHealthService.british_number` uses the test range for creating NHS numbers rather than the previous 400 000 0010 to 499 999 9999 range.
|
17
|
+
|
18
|
+
Breaking change was introduced in "Add test range param to NHS numbers" by @neanias in https://github.com/faker-ruby/faker/pull/2947
|
19
|
+
|
20
|
+
### Improvements & Bug fixes
|
21
|
+
|
22
|
+
* Add Bank and Sport to Swedish locale by @twk-mn in https://github.com/faker-ruby/faker/pull/2961
|
23
|
+
* docs: update with notes about validity for zips by @garrettgregor in https://github.com/faker-ruby/faker/pull/2963
|
24
|
+
* `Faker::Games::Dota` missing quotes and new heroes by @arthurka-o in https://github.com/faker-ruby/faker/pull/2907
|
25
|
+
* Add phone_number.country_code and address.full_address in locale sv by @larkro in https://github.com/faker-ruby/faker/pull/2965
|
26
|
+
* Fix typo by @fynsta in https://github.com/faker-ruby/faker/pull/2968
|
27
|
+
* fix: `Faker::Internet.username` should not generate duplicated punctuation by @thdaraujo in https://github.com/faker-ruby/faker/pull/2970
|
28
|
+
* Update dog breed names for `en-US` locale by @mononoken in https://github.com/faker-ruby/faker/pull/2972
|
29
|
+
* Add `Deprecator.skip_warning?` ability to silence deprecators on tests by @keshavbiswa in https://github.com/faker-ruby/faker/pull/2956
|
30
|
+
|
31
|
+
### Update local dependencies
|
32
|
+
|
33
|
+
* Bump timecop from 0.9.9 to 0.9.10 by @dependabot in https://github.com/faker-ruby/faker/pull/2969
|
34
|
+
* Bump minitest from 5.23.1 to 5.24.1 by @dependabot in https://github.com/faker-ruby/faker/pull/2975
|
35
|
+
* Bump bundler version to `2.4.22` by @thdaraujo in https://github.com/faker-ruby/faker/pull/2978
|
36
|
+
* Bump rubocop from 1.64.1 to 1.65.0 by @dependabot in https://github.com/faker-ruby/faker/pull/2979
|
37
|
+
* Bump rubocop-minitest from 0.35.0 to 0.35.1 by @dependabot in https://github.com/faker-ruby/faker/pull/2980
|
38
|
+
|
39
|
+
## New Contributors
|
40
|
+
* @twk-mn made their first contribution in https://github.com/faker-ruby/faker/pull/2961
|
41
|
+
* @neanias made their first contribution in https://github.com/faker-ruby/faker/pull/2947
|
42
|
+
* @garrettgregor made their first contribution in https://github.com/faker-ruby/faker/pull/2963
|
43
|
+
* @arthurka-o made their first contribution in https://github.com/faker-ruby/faker/pull/2907
|
44
|
+
* @larkro made their first contribution in https://github.com/faker-ruby/faker/pull/2965
|
45
|
+
* @fynsta made their first contribution in https://github.com/faker-ruby/faker/pull/2968
|
46
|
+
* @mononoken made their first contribution in https://github.com/faker-ruby/faker/pull/2972
|
47
|
+
|
48
|
+
**Full Changelog**: https://github.com/faker-ruby/faker/compare/v.3.4.1...v3.4.2
|
49
|
+
|
50
|
+
---------------------------------
|
51
|
+
|
3
52
|
## [v3.4.1](https://github.com/faker-ruby/faker/tree/v3.4.1) (2024-05-28)
|
4
53
|
|
5
54
|
### What's changed
|
@@ -119,8 +119,8 @@ module Faker
|
|
119
119
|
return numerify(letterified_string, leading_zero: true)
|
120
120
|
end
|
121
121
|
|
122
|
-
# provide a zip code that
|
123
|
-
#
|
122
|
+
# provide a zip code that may be valid for the state provided
|
123
|
+
# note: zip code may appear in the correct format for the state provided but may not be an actual state zip.
|
124
124
|
bothify(fetch("address.postcode_by_state.#{state_abbreviation}"))
|
125
125
|
end
|
126
126
|
|
@@ -65,7 +65,7 @@ module Faker
|
|
65
65
|
with_locale(:en) do
|
66
66
|
case specifier
|
67
67
|
when ::String
|
68
|
-
names = specifier
|
68
|
+
names = specifier.gsub("'", '').scan(/[[:word:]]+/)
|
69
69
|
shuffled_names = shuffle(names)
|
70
70
|
|
71
71
|
return shuffled_names.join(sample(separators)).downcase
|
@@ -6,14 +6,17 @@ module Faker
|
|
6
6
|
##
|
7
7
|
# Produces a random British NHS number.
|
8
8
|
#
|
9
|
+
# The NHS sets aside a range of numbers from 999 000 0000 to 999 999 9999
|
10
|
+
# for test purposes.
|
11
|
+
#
|
9
12
|
# @return [String]
|
10
13
|
#
|
11
14
|
# @example
|
12
|
-
# Faker::NationalHealthService.british_number #=> "
|
15
|
+
# Faker::NationalHealthService.british_number #=> "999 464 0232"
|
13
16
|
#
|
14
17
|
# @faker.version 1.9.2
|
15
18
|
def british_number
|
16
|
-
base_number = rand(
|
19
|
+
base_number = rand(999_000_001...999_999_999)
|
17
20
|
# If the check digit is equivalent to 10, the number is invalid.
|
18
21
|
# See https://en.wikipedia.org/wiki/NHS_number
|
19
22
|
base_number -= 1 if check_digit(number: base_number) == 10
|
@@ -24,6 +27,8 @@ module Faker
|
|
24
27
|
.join
|
25
28
|
end
|
26
29
|
|
30
|
+
private
|
31
|
+
|
27
32
|
##
|
28
33
|
# Produces a random British NHS number's check digit.
|
29
34
|
#
|
@@ -48,12 +48,13 @@ module Faker
|
|
48
48
|
# @return [String]
|
49
49
|
#
|
50
50
|
# @example
|
51
|
-
# Faker::Vehicle.
|
51
|
+
# Faker::Vehicle.manufacturer #=> "Lamborghini"
|
52
52
|
#
|
53
53
|
# @faker.version 1.6.4
|
54
|
-
def
|
55
|
-
fetch('vehicle.
|
54
|
+
def manufacturer
|
55
|
+
fetch('vehicle.manufacturer')
|
56
56
|
end
|
57
|
+
alias manufacture manufacturer
|
57
58
|
|
58
59
|
##
|
59
60
|
# Produces a random vehicle make.
|
@@ -1,8 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
module Faker
|
4
|
-
extend Deprecator
|
5
|
-
|
6
4
|
class Locations
|
7
5
|
class Australia < Base
|
8
6
|
class << self
|
@@ -48,5 +46,7 @@ module Faker
|
|
48
46
|
end
|
49
47
|
end
|
50
48
|
end
|
49
|
+
|
50
|
+
include Deprecator
|
51
51
|
deprecate_generator('Australia', Locations::Australia)
|
52
52
|
end
|
data/lib/faker/version.rb
CHANGED
data/lib/helpers/deprecator.rb
CHANGED
@@ -10,7 +10,10 @@ module Faker
|
|
10
10
|
extension = Module.new do
|
11
11
|
def const_missing(missing_const_name)
|
12
12
|
if class_variable_defined?(:@@_deprecated_constants) && (replacement = class_variable_get(:@@_deprecated_constants)[missing_const_name.to_s])
|
13
|
-
|
13
|
+
unless Faker::Deprecator.skip_warning?
|
14
|
+
$stdout.puts("DEPRECATION WARNING: #{name}::#{replacement[:old_generator]} is deprecated. Use #{replacement[:new_constant]} instead.")
|
15
|
+
end
|
16
|
+
|
14
17
|
return replacement[:new_constant]
|
15
18
|
end
|
16
19
|
|
@@ -25,6 +28,26 @@ module Faker
|
|
25
28
|
|
26
29
|
base.singleton_class.prepend extension
|
27
30
|
end
|
31
|
+
|
32
|
+
def self.skip_warning
|
33
|
+
original = Faker::Deprecator.skip
|
34
|
+
Faker::Deprecator.skip = true
|
35
|
+
yield
|
36
|
+
ensure
|
37
|
+
Faker::Deprecator.skip = original
|
38
|
+
end
|
39
|
+
|
40
|
+
def self.skip_warning?
|
41
|
+
skip == true
|
42
|
+
end
|
43
|
+
|
44
|
+
def self.skip
|
45
|
+
@skip ||= false
|
46
|
+
end
|
47
|
+
|
48
|
+
def self.skip=(value)
|
49
|
+
@skip = value
|
50
|
+
end
|
28
51
|
end
|
29
52
|
end
|
30
53
|
# rubocop:enable Style/ClassVars
|
data/lib/locales/en/dog.yml
CHANGED
@@ -2,10 +2,265 @@ en:
|
|
2
2
|
faker:
|
3
3
|
creature:
|
4
4
|
dog:
|
5
|
-
name:
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
5
|
+
name:
|
6
|
+
- Buddy
|
7
|
+
- Max
|
8
|
+
- Bella
|
9
|
+
- Daisy
|
10
|
+
- Molly
|
11
|
+
- Rocky
|
12
|
+
- Lucy
|
13
|
+
- Bear
|
14
|
+
- Bailey
|
15
|
+
- Lucky
|
16
|
+
- Harley
|
17
|
+
- Maggie
|
18
|
+
- Princess
|
19
|
+
- Angel
|
20
|
+
- Charlie
|
21
|
+
- Sadie
|
22
|
+
- Jack
|
23
|
+
- Shadow
|
24
|
+
- Jake
|
25
|
+
- Coco
|
26
|
+
- Gizmo
|
27
|
+
- Chloe
|
28
|
+
- Sophie
|
29
|
+
- Toby
|
30
|
+
- Roxy
|
31
|
+
- Buster
|
32
|
+
- Ginger
|
33
|
+
- Lady
|
34
|
+
- Duke
|
35
|
+
- Baby
|
36
|
+
- Peanut
|
37
|
+
- Bandit
|
38
|
+
- Abby
|
39
|
+
- Sasha
|
40
|
+
- Lola
|
41
|
+
- Zoey
|
42
|
+
- Pepper
|
43
|
+
- Sam
|
44
|
+
- Gracie
|
45
|
+
- Sammy
|
46
|
+
- Precious
|
47
|
+
- Missy
|
48
|
+
- Riley
|
49
|
+
- Spike
|
50
|
+
- Lily
|
51
|
+
- Sassy
|
52
|
+
- Cooper
|
53
|
+
- Rusty
|
54
|
+
- Dakota
|
55
|
+
- Dixie
|
56
|
+
- Cody
|
57
|
+
- Lilly
|
58
|
+
- Zoe
|
59
|
+
- Cookie
|
60
|
+
- Chico
|
61
|
+
- Zeus
|
62
|
+
- Tucker
|
63
|
+
- Oreo
|
64
|
+
- Teddy
|
65
|
+
- Marley
|
66
|
+
- Oscar
|
67
|
+
- Honey
|
68
|
+
- Rex
|
69
|
+
- Tank
|
70
|
+
- Sugar
|
71
|
+
- Sandy
|
72
|
+
- Penny
|
73
|
+
- Tyson
|
74
|
+
- Chance
|
75
|
+
- Mia
|
76
|
+
- Diamond
|
77
|
+
- Bubba
|
78
|
+
- Blue
|
79
|
+
- Belle
|
80
|
+
- Shelby
|
81
|
+
- Rosie
|
82
|
+
- Casey
|
83
|
+
- Ruby
|
84
|
+
- Snoopy
|
85
|
+
- Cocoa
|
86
|
+
- Jasmine
|
87
|
+
- Diesel
|
88
|
+
- Patches
|
89
|
+
- Annie
|
90
|
+
- Sparky
|
91
|
+
- Taz
|
92
|
+
- Bruno
|
93
|
+
- Roxie
|
94
|
+
- Lexi
|
95
|
+
- Scooter
|
96
|
+
- Jasper
|
97
|
+
- Brutus
|
98
|
+
- Baxter
|
99
|
+
- Luna
|
100
|
+
- Snickers
|
101
|
+
- Misty
|
102
|
+
- Rascal
|
103
|
+
- Milo
|
104
|
+
- Murphy
|
105
|
+
- Bo
|
106
|
+
- Harvey
|
107
|
+
breed:
|
108
|
+
- Affenpinscher
|
109
|
+
- Africanis
|
110
|
+
- Airedale
|
111
|
+
- Akita
|
112
|
+
- Appenzeller
|
113
|
+
- Basenji
|
114
|
+
- Beagle
|
115
|
+
- Bluetick
|
116
|
+
- Borzoi
|
117
|
+
- Bouvier
|
118
|
+
- Boxer
|
119
|
+
- Brabancon
|
120
|
+
- Briard
|
121
|
+
- Boston Terrier
|
122
|
+
- French Bulldog
|
123
|
+
- Staffordshire Bullterrier
|
124
|
+
- Cairn
|
125
|
+
- Chihuahua
|
126
|
+
- Chow
|
127
|
+
- Clumber
|
128
|
+
- Border Collie
|
129
|
+
- Coonhound
|
130
|
+
- Cardigan Corgi
|
131
|
+
- Dachshund
|
132
|
+
- Great Dane
|
133
|
+
- Scottish Deerhound
|
134
|
+
- Dhole
|
135
|
+
- Dingo
|
136
|
+
- Doberman
|
137
|
+
- Norwegian Elkhound
|
138
|
+
- Entlebucher
|
139
|
+
- American Eskimo
|
140
|
+
- German Shepherd
|
141
|
+
- Italian Greyhound
|
142
|
+
- Groenendael
|
143
|
+
- Ibizan Hound
|
144
|
+
- Afghan Hound
|
145
|
+
- Basset Hound
|
146
|
+
- Bloodhound
|
147
|
+
- English Foxhound
|
148
|
+
- Treeing Walker Coonhound
|
149
|
+
- Husky
|
150
|
+
- Keeshond
|
151
|
+
- Kelpie
|
152
|
+
- Komondor
|
153
|
+
- Kuvasz
|
154
|
+
- Labrador
|
155
|
+
- Leonberger
|
156
|
+
- Lhasa
|
157
|
+
- Malamute
|
158
|
+
- Malinois
|
159
|
+
- Maltese
|
160
|
+
- Bull Mastiff
|
161
|
+
- Tibetan Mastiff
|
162
|
+
- Mexican Hairless
|
163
|
+
- Bernese Mountain
|
164
|
+
- Greater Swiss Mountain
|
165
|
+
- Newfoundland
|
166
|
+
- Otterhound
|
167
|
+
- Papillon
|
168
|
+
- Pekinese
|
169
|
+
- Pembroke
|
170
|
+
- Miniature Pinscher
|
171
|
+
- German Pointer
|
172
|
+
- Pomeranian
|
173
|
+
- Miniature Poodle
|
174
|
+
- Standard Poodle
|
175
|
+
- Toy Poodle
|
176
|
+
- Pug
|
177
|
+
- Pyrenees
|
178
|
+
- Redbone
|
179
|
+
- Chesapeake Retriever
|
180
|
+
- Curly Retriever
|
181
|
+
- Flat-Coated Retriever
|
182
|
+
- Golden Retriever
|
183
|
+
- Rhodesian Ridgeback
|
184
|
+
- Rottweiler
|
185
|
+
- Saluki
|
186
|
+
- Samoyed
|
187
|
+
- Schipperke
|
188
|
+
- Giant Schnauzer
|
189
|
+
- Miniature Schnauzer
|
190
|
+
- English Setter
|
191
|
+
- Gordon Setter
|
192
|
+
- Irish Setter
|
193
|
+
- English Sheepdog
|
194
|
+
- Shetland Sheepdog
|
195
|
+
- Shiba
|
196
|
+
- Shihtzu
|
197
|
+
- Blenheim Spaniel
|
198
|
+
- Brittany Spaniel
|
199
|
+
- Cocker Spaniel
|
200
|
+
- Irish Spaniel
|
201
|
+
- Japanese Spaniel
|
202
|
+
- Sussex Spaniel
|
203
|
+
- Welsh Spaniel
|
204
|
+
- English Springer
|
205
|
+
- Saint Bernard
|
206
|
+
- American Terrier
|
207
|
+
- Australian Terrier
|
208
|
+
- Bedlington Terrier
|
209
|
+
- Border Terrier
|
210
|
+
- Dandie Terrier
|
211
|
+
- Fox Terrier
|
212
|
+
- Irish Terrier
|
213
|
+
- Kerry Blue Terrier
|
214
|
+
- Lakeland Terrier
|
215
|
+
- Norfolk Terrier
|
216
|
+
- Norwich Terrier
|
217
|
+
- Patterdale Terrier
|
218
|
+
- Rat Terrier
|
219
|
+
- Scottish Terrier
|
220
|
+
- Sealyham Terrier
|
221
|
+
- Silky Terrier
|
222
|
+
- Tibetan Terrier
|
223
|
+
- Toy Terrier
|
224
|
+
- West Highland White
|
225
|
+
- Wheaten Terrier
|
226
|
+
- Yorkshire Terrier
|
227
|
+
- Vizsla
|
228
|
+
- Weimaraner
|
229
|
+
- Whippet
|
230
|
+
- Irish Wolfhound
|
231
|
+
sound:
|
232
|
+
- woof
|
233
|
+
- woof woof
|
234
|
+
- bow wow
|
235
|
+
- ruff
|
236
|
+
- owooooo
|
237
|
+
- grrrrrr
|
238
|
+
meme_phrase:
|
239
|
+
- heck no pal
|
240
|
+
- 11/10
|
241
|
+
- boop the snoot
|
242
|
+
- mlem
|
243
|
+
- blep
|
244
|
+
- long boi
|
245
|
+
- thicc doggo
|
246
|
+
- big ol' pupper
|
247
|
+
- smol pupperino
|
248
|
+
- zoom
|
249
|
+
- they're good dogs Brent
|
250
|
+
age:
|
251
|
+
- puppy
|
252
|
+
- young
|
253
|
+
- adult
|
254
|
+
- senior
|
255
|
+
coat_length:
|
256
|
+
- hairless
|
257
|
+
- short
|
258
|
+
- medium
|
259
|
+
- long
|
260
|
+
- wire
|
261
|
+
- curly
|
262
|
+
size:
|
263
|
+
- small
|
264
|
+
- medium
|
265
|
+
- large
|
266
|
+
- extra large
|
data/lib/locales/en/dota.yml
CHANGED
@@ -42,97 +42,30 @@ en:
|
|
42
42
|
- Earth Spirit
|
43
43
|
- Earthshaker
|
44
44
|
- Elder Titan
|
45
|
-
- Ember Spirit
|
46
|
-
- Enchantress
|
47
|
-
- Enigma
|
48
|
-
- Faceless Void
|
49
|
-
- Grimstroke
|
50
|
-
- Gyrocopter
|
51
|
-
- Hoodwink
|
52
45
|
- Huskar
|
53
|
-
- Invoker
|
54
46
|
- Io
|
55
|
-
- Jakiro
|
56
|
-
- Juggernaut
|
57
|
-
- Keeper of the Light
|
58
47
|
- Kunkka
|
59
48
|
- Legion Commander
|
60
|
-
- Leshrac
|
61
|
-
- Lich
|
62
49
|
- Lifestealer
|
63
|
-
- Lina
|
64
|
-
- Lion
|
65
|
-
- Lone Druid
|
66
|
-
- Luna
|
67
50
|
- Lycan
|
68
51
|
- Magnus
|
69
|
-
- Marci
|
70
|
-
- Mars
|
71
|
-
- Medusa
|
72
52
|
- Meepo
|
73
|
-
- Mirana
|
74
|
-
- Monkey King
|
75
|
-
- Morphling
|
76
|
-
- Naga Siren
|
77
|
-
- Nature's Prophet
|
78
|
-
- Necrophos
|
79
53
|
- Night Stalker
|
80
|
-
- Nyx Assassin
|
81
|
-
- Ogre Magi
|
82
54
|
- Omniknight
|
83
|
-
- Oracle
|
84
|
-
- Outworld Destroyer
|
85
|
-
- Pangolier
|
86
|
-
- Phantom Assassin
|
87
|
-
- Phantom Lancer
|
88
55
|
- Phoenix
|
89
|
-
- Primal Beast
|
90
|
-
- Puck
|
91
56
|
- Pudge
|
92
|
-
- Pugna
|
93
|
-
- Queen of Pain
|
94
|
-
- Razor
|
95
|
-
- Riki
|
96
|
-
- Rubick
|
97
57
|
- Sand King
|
98
|
-
- Shadow Demon
|
99
|
-
- Shadow Fiend
|
100
|
-
- Shadow Shaman
|
101
|
-
- Silencer
|
102
|
-
- Skywrath Mage
|
103
58
|
- Slardar
|
104
|
-
- Slark
|
105
|
-
- Snapfire
|
106
|
-
- Sniper
|
107
|
-
- Spectre
|
108
59
|
- Spirit Breaker
|
109
|
-
- Storm Spirit
|
110
60
|
- Sven
|
111
|
-
- Techies
|
112
|
-
- Templar Assassin
|
113
|
-
- Terrorblade
|
114
61
|
- Tidehunter
|
115
62
|
- Timbersaw
|
116
|
-
- Tinker
|
117
63
|
- Tiny
|
118
64
|
- Treant Protector
|
119
|
-
- Troll Warlord
|
120
65
|
- Tusk
|
121
66
|
- Underlord
|
122
67
|
- Undying
|
123
|
-
- Ursa
|
124
|
-
- Vengeful Spirit
|
125
|
-
- Venomancer
|
126
|
-
- Viper
|
127
|
-
- Visage
|
128
|
-
- Void Spirit
|
129
|
-
- Warlock
|
130
|
-
- Weaver
|
131
|
-
- Windranger
|
132
|
-
- Winter Wyvern
|
133
|
-
- Witch Doctor
|
134
68
|
- Wraith King
|
135
|
-
- Zeus
|
136
69
|
abaddon:
|
137
70
|
quote:
|
138
71
|
- You have called death upon yourself.
|
@@ -144,6 +77,23 @@ en:
|
|
144
77
|
- Easy now, this stuff is explosive!
|
145
78
|
- Better living through alchemy!
|
146
79
|
- Tell the ogre you're sorry.
|
80
|
+
ancient_apparition:
|
81
|
+
quote:
|
82
|
+
- Behold the apparition.
|
83
|
+
- Time to break the ice!
|
84
|
+
- I look again upon the cold light of day.
|
85
|
+
anti_mage:
|
86
|
+
quote:
|
87
|
+
- Truth compels me.
|
88
|
+
- I bring an end to magic.
|
89
|
+
- They who live by the wand shall die by my blade.
|
90
|
+
- It is not magic brings me back, but purity of will!
|
91
|
+
arc_warden:
|
92
|
+
quote:
|
93
|
+
- Matter has been split from its intended form. These must be made to unite.
|
94
|
+
- None escape the Self.
|
95
|
+
- These fools must learn what they stand against.
|
96
|
+
- Mercy is yours, for the end comes.
|
147
97
|
axe:
|
148
98
|
quote:
|
149
99
|
- Let the carnage begin.
|
@@ -152,11 +102,37 @@ en:
|
|
152
102
|
- Feel the axe of Axe!
|
153
103
|
- What happened? Axe happened!
|
154
104
|
- No business but war. No family but death. No mercy but the grave!
|
105
|
+
bane:
|
106
|
+
quote:
|
107
|
+
- Your Nightmare is here.
|
108
|
+
- Nightmares, follow me into the light.
|
109
|
+
- Knock knees and blood run cold!
|
110
|
+
- I dreamt a field of war…and woke to find myself upon it.
|
111
|
+
batrider:
|
112
|
+
quote:
|
113
|
+
- Death from above!
|
114
|
+
- One forest fire coming up!
|
115
|
+
- I'll have the brisket. My hoss'll have your head.
|
116
|
+
- You wanna play rough? All right, we'll play rough.
|
155
117
|
beastmaster:
|
156
118
|
quote:
|
157
119
|
- Meet your master…snuhg… beastmaster.
|
158
120
|
- I'm a natural disaster.
|
159
121
|
- A death not fit for man or beast.
|
122
|
+
bloodseeker:
|
123
|
+
quote:
|
124
|
+
- The search for blood begins.
|
125
|
+
- For the Flayed Twins, I seek blood.
|
126
|
+
- Enough hide and seek.
|
127
|
+
- Don't be negative...be positive!
|
128
|
+
bounty_hunter:
|
129
|
+
quote:
|
130
|
+
- There's a price on all their heads.
|
131
|
+
- No job is too big, no fee is too big.
|
132
|
+
- My blades will do the talking.
|
133
|
+
- Just business, nothing personal.
|
134
|
+
- Was there a bounty on me?
|
135
|
+
- It was just business before. Now it's personal.
|
160
136
|
brewmaster:
|
161
137
|
quote:
|
162
138
|
- I fight any thing in the house.
|
@@ -167,11 +143,22 @@ en:
|
|
167
143
|
- Time to mash some faces, I'd say.
|
168
144
|
- A good bashing, never hurt nobody.
|
169
145
|
- I'm more than a pretty face.
|
146
|
+
broodmother:
|
147
|
+
quote:
|
148
|
+
- The spider comes.
|
149
|
+
- You're not afraid of spiders, are you?
|
150
|
+
- I could kill you with five eyes closed.
|
151
|
+
- My enemies will pay with their liquified guts.
|
170
152
|
centaur:
|
171
153
|
quote:
|
172
154
|
- Long shall my name be remembered.
|
173
155
|
- I don't always wear a saddlebag, but when I do, I put this one in it.
|
174
156
|
- Hurts you more than it hurts me.
|
157
|
+
centaur_warrunner:
|
158
|
+
quote:
|
159
|
+
- Long shall my name be remembered.
|
160
|
+
- I don't always wear a saddlebag, but when I do, I put this one in it.
|
161
|
+
- Hurts you more than it hurts me.
|
175
162
|
chaos_knight:
|
176
163
|
quote:
|
177
164
|
- All that is light shall be cast in darkness.
|
@@ -179,11 +166,71 @@ en:
|
|
179
166
|
- We descend into chaos.
|
180
167
|
- The light shall be blackened, and chaos shall reign.
|
181
168
|
- Chaos is Fun…damental.
|
169
|
+
chen:
|
170
|
+
quote:
|
171
|
+
- The Inquisitor has arrived.
|
172
|
+
- The persecution starts now!
|
173
|
+
- Only the penitent can be forgiven.
|
174
|
+
- God taketh whom he loveth best.
|
175
|
+
- In the name of Obelis, I fight again.
|
176
|
+
clinkz:
|
177
|
+
quote:
|
178
|
+
- A light to guide my way. A light to burn my foes.
|
179
|
+
- Clink goes my bones.
|
180
|
+
- It's time for your cremation.
|
181
|
+
- I've already paid my pound of flesh.
|
182
|
+
- The furnace of my heart cannot be quenched.
|
182
183
|
clockwerk:
|
183
184
|
quote:
|
184
185
|
- I've a mind like a steel trap, and the physique to go with it!
|
185
186
|
- What time is it? It's killing time.
|
186
187
|
- A good offense is the best armor. Good armor is also good armor.
|
188
|
+
crystal_maiden:
|
189
|
+
quote:
|
190
|
+
- Who calls the Crystal Maiden?
|
191
|
+
- Behold the scourge of Icewrack!
|
192
|
+
- Swift as the wolves of Icewrack...
|
193
|
+
- You're dead and that's a cold hard fact.
|
194
|
+
- Once burned, ice shy...
|
195
|
+
dark_seer:
|
196
|
+
quote:
|
197
|
+
- From the land behind the wall, I come.
|
198
|
+
- Speed is the heart of battle.
|
199
|
+
- Face your enemy, face yourself.
|
200
|
+
- Your life, much like your head, lacked a point.
|
201
|
+
- Death is a wall I have overleapt.
|
202
|
+
dark_willow:
|
203
|
+
quote:
|
204
|
+
- Are you ready to have some fun, ya?
|
205
|
+
- No one will forget the name Mireska
|
206
|
+
- A little mischief never killed anyone... well, you I guess.
|
207
|
+
- Jex... whaddya say we find who did that and rip their eyes out?
|
208
|
+
dawnbreaker:
|
209
|
+
quote:
|
210
|
+
- Darkness fears the break of dawn!
|
211
|
+
- I was created to serve, but today I choose this fight.
|
212
|
+
- The first stars burned and faded into nothingness. Followed by countless more. I remain. And my hammer swings true.
|
213
|
+
- Even at a fraction of my best, I outshine you immeasurably.
|
214
|
+
- One must always remember that the sun also rises.
|
215
|
+
dazzle:
|
216
|
+
quote:
|
217
|
+
- Dazzle!
|
218
|
+
- Where my shadow falls, there falls my foe.
|
219
|
+
- You're under my protection.
|
220
|
+
- Resurrection comes easily to a Shadow Priest!
|
221
|
+
death_prophet:
|
222
|
+
quote:
|
223
|
+
- Who dares recall me from the grave?
|
224
|
+
- The doors of death open wide.
|
225
|
+
- You merely sipped at life. Now drink deep of death.
|
226
|
+
- The grave calls me back.
|
227
|
+
- Death is such a tease.
|
228
|
+
disruptor:
|
229
|
+
quote:
|
230
|
+
- The Stormcrafter comes!
|
231
|
+
- According to the forecast, this one is in the bag!
|
232
|
+
- Where you're going, the weather doesn't change.
|
233
|
+
- The storm charges my coil again.
|
187
234
|
doom:
|
188
235
|
quote:
|
189
236
|
- Face your demons.
|
@@ -197,6 +244,12 @@ en:
|
|
197
244
|
- Live by the sword, die by the dragon.
|
198
245
|
- Good night, Sven. I mean bad knight. [Talking to Sven]
|
199
246
|
- Never make a deal with a dragon, unless you're prepared to keep your end of it.
|
247
|
+
drow_ranger:
|
248
|
+
quote:
|
249
|
+
- My quiver and bow are ready!
|
250
|
+
- I thought they warned you not to speak with rangers.
|
251
|
+
- Autumn leaves for a deathbed.
|
252
|
+
- Faster than an arrow's flight.
|
200
253
|
earth_spirit:
|
201
254
|
quote:
|
202
255
|
- Body is flesh, but spirit immortal.
|
data/lib/locales/en/vehicle.yml
CHANGED
data/lib/locales/sv.yml
CHANGED
@@ -24,6 +24,8 @@ sv:
|
|
24
24
|
secondary_address: ['Lgh. ###', 'Hus ###']
|
25
25
|
street_address:
|
26
26
|
- "#{street_name} #{building_number}"
|
27
|
+
full_address:
|
28
|
+
- "#{street_address}, #{postcode} #{city}"
|
27
29
|
default_country: [Sverige]
|
28
30
|
default_country_code: ["SE"]
|
29
31
|
|
@@ -61,6 +63,8 @@ sv:
|
|
61
63
|
- "#{prefix} #{first_name} #{last_name}"
|
62
64
|
|
63
65
|
phone_number:
|
66
|
+
country_code:
|
67
|
+
- '46'
|
64
68
|
formats: ['####-#####', '####-######']
|
65
69
|
cell_phone:
|
66
70
|
formats:
|
@@ -80,3 +84,98 @@ sv:
|
|
80
84
|
suffix: [IF, FF, BK, HK, AIF, SK, FC, SK, BoIS, FK, BIS, FIF, IK]
|
81
85
|
name:
|
82
86
|
- "#{Address.city} #{suffix}"
|
87
|
+
|
88
|
+
bank:
|
89
|
+
name: ["Swedbank", "Handelsbanken", "SEB", "Nordea", "Danske Bank","Skandiabanken","Länsförsäkringar Bank", "Sparbanken Syd", "ICA Banken", "Forex Bank", "Resurs Bank", "Avanza Bank", "Nordnet Bank", "SBAB", "Landshypotek Bank"]
|
90
|
+
|
91
|
+
sport:
|
92
|
+
summer_olympics: # Source https://sok.se/idrotter.html?ityp=Alla&iseason=Sommar&numberOfHitsToShow=48
|
93
|
+
- Badminton
|
94
|
+
- Baseboll/Softboll
|
95
|
+
- Basketboll
|
96
|
+
- Bordtennis
|
97
|
+
- Boxning
|
98
|
+
- Brottning
|
99
|
+
- Bågskytte
|
100
|
+
- Cricket
|
101
|
+
- Cykel
|
102
|
+
- Danssport
|
103
|
+
- Dragkamp
|
104
|
+
- Flaggfotboll
|
105
|
+
- Fotboll
|
106
|
+
- Friidrott
|
107
|
+
- Fäktning
|
108
|
+
- Golf
|
109
|
+
- Gymnastik
|
110
|
+
- Handboll
|
111
|
+
- Judo
|
112
|
+
- Kanot
|
113
|
+
- Karate
|
114
|
+
- Kickboxning
|
115
|
+
- Lacrosse
|
116
|
+
- Landhockey
|
117
|
+
- Modern femkamp
|
118
|
+
- Muay Thai
|
119
|
+
- Padel
|
120
|
+
- Ridsport
|
121
|
+
- Rodd
|
122
|
+
- Rugby
|
123
|
+
- Segling
|
124
|
+
- Simidrott
|
125
|
+
- Skateboard
|
126
|
+
- Skyttesport
|
127
|
+
- Sportklättring
|
128
|
+
- Squash
|
129
|
+
- Surfing
|
130
|
+
- Taekwondo
|
131
|
+
- Tennis
|
132
|
+
- Teqball
|
133
|
+
- Triathlon
|
134
|
+
- Tyngdlyftning
|
135
|
+
- Vattenskidor
|
136
|
+
- Volleyboll
|
137
|
+
winter_olympics: # Source https://sok.se/idrotter.html?ityp=Alla&iseason=Vinter&numberOfHitsToShow=48
|
138
|
+
- Alpint
|
139
|
+
- Backhoppning
|
140
|
+
- Curling
|
141
|
+
- Freeskiing
|
142
|
+
- Freestyle
|
143
|
+
- Ishockey
|
144
|
+
- Konståkning
|
145
|
+
- Kälksport
|
146
|
+
- Längdskidåkning
|
147
|
+
- Nordisk kombination
|
148
|
+
- Skidskytte
|
149
|
+
- Skimo
|
150
|
+
- Skridsko
|
151
|
+
- Snowboard
|
152
|
+
summer_paralympics: # Source https://www.paralympics.se/paralympics/paralympics/idrotter/sommar
|
153
|
+
- Badminton
|
154
|
+
- Boccia
|
155
|
+
- Bordtennis
|
156
|
+
- Bågskytte
|
157
|
+
- Bänkpress
|
158
|
+
- Cykel
|
159
|
+
- Fotboll 5-a-side
|
160
|
+
- Friidrott
|
161
|
+
- Fäktning
|
162
|
+
- Goalball
|
163
|
+
- Judo
|
164
|
+
- Kanot
|
165
|
+
- Ridsport
|
166
|
+
- Rodd
|
167
|
+
- Rullstolsbasket
|
168
|
+
- Rullstolsrugby
|
169
|
+
- Rullstolstennis
|
170
|
+
- Simning
|
171
|
+
- Sittande volleyboll
|
172
|
+
- Sportskytte
|
173
|
+
- Taekwondo
|
174
|
+
- Triathlon
|
175
|
+
winter_paralympics: # Source https://www.paralympics.se/paralympics/paralympics/idrotter/vinter
|
176
|
+
- Alpin skidåkning
|
177
|
+
- Längdskidor
|
178
|
+
- Paraishockey
|
179
|
+
- Rullstolscurling
|
180
|
+
- Skidskytte
|
181
|
+
- Snowboard
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: faker
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.4.
|
4
|
+
version: 3.4.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Benjamin Curtis
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2024-
|
12
|
+
date: 2024-07-17 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: i18n
|