faker 3.2.1 → 3.2.3

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
  SHA256:
3
- metadata.gz: 5d53bbdb52aa714d065ea68bcddd91aad8ca346b3e00ce828e5a95a7f32fb9cc
4
- data.tar.gz: 05fa5f30f28a2b00825253650e23ea433f26457c43bf822117628f7494b660a1
3
+ metadata.gz: 112f3ff9d25ba44af343bb059444316208fc86e1c9fe4431255f539ec2fd024b
4
+ data.tar.gz: 92ac1fb90a7a741c644a8141e2c57b4f03a3a42594b5419809ec1202f533bb06
5
5
  SHA512:
6
- metadata.gz: 253c37f13596516e56f85bfbd7e509ececcfa1dd77d9ceec3cd92d127fed1249a4197dbd1ccbb0699ee9895870eaa30d61f59288bc0d954fa9805f3526346539
7
- data.tar.gz: 2e1f76f104cd9b0a3852366c26847692620129e795bb321ada197829b2d981a0a0e21f723597c741971a78a540597a84d0c86a2b9bda5fdf059e05f1f2b57c7f
6
+ metadata.gz: adf886de17ac9e4e26ac6a00df3a3d2adca6e1cf2d0a0492c04e0c983f67a318b70c904e2ce06029fc381540bc37aaa4826b6d4b1930c1a171ef9e18245934bd
7
+ data.tar.gz: 21de6006567bc40cac19809a948235914081958cf62b44d5c44c6e834675a0b0d1d9a590533ee1177c6d405a320c3728799e29fd88a7986011e52a6973748394
data/CHANGELOG.md CHANGED
@@ -1,5 +1,77 @@
1
1
  # Changelog
2
2
 
3
+ ## [v3.2.1](https://github.com/faker-ruby/faker/tree/v3.2.1) (2023-08-11)
4
+
5
+ Happy August with a new Faker release! 🎉
6
+
7
+ This version:
8
+
9
+ - adds generators
10
+ - fixes bugs
11
+ - updates dev dependencies
12
+
13
+ This version fixes a bug with setting the locale in multi-threaded environments. It's now possible to set the locale per thread. For more details, see [How to set the default locale for in threaded server environments](https://github.com/faker-ruby/faker/blob/main/lib/locales/README.md#how-to-set-the-default-locale-for-in-threaded-server-environments).
14
+
15
+ Other changes included in this version:
16
+
17
+ ## Features
18
+ * Add Final Fantasy XIV by @old-dead-account in https://github.com/faker-ruby/faker/pull/2742
19
+ * Add the Ukrainian country calling code by @kyrylo in https://github.com/faker-ruby/faker/pull/2758
20
+ * Add `exclude_words` filter to `Faker::Lorem.word` generator by @geophilusd in https://github.com/faker-ruby/faker/pull/2761
21
+ * Add Japanese translations for Sports category. by @yamat47 in https://github.com/faker-ruby/faker/pull/2770
22
+ * Add type support for Faker::Types.rb_array by @ruban-thilak in https://github.com/faker-ruby/faker/pull/2771
23
+ * Added Archer into tv category. by @lepari23 in https://github.com/faker-ruby/faker/pull/2750
24
+ * Add train station generator by @AngusDSR in https://github.com/faker-ruby/faker/pull/2755
25
+ * Add custom start date for `Faker::Date.forward` by @luciagirasoles in https://github.com/faker-ruby/faker/pull/2791
26
+ * Add `max_rut` option to `Faker::ChileRut.rut` by @hacktivista in https://github.com/faker-ruby/faker/pull/2778
27
+ * Add Faker::Date.day_of_week_between by @aramvisser in https://github.com/faker-ruby/faker/pull/2713
28
+ * Html generator for Faker by @ruban-thilak in https://github.com/faker-ruby/faker/pull/2769
29
+
30
+ ## Bug fixes
31
+ * Fix locale setting by @mateusdeap in https://github.com/faker-ruby/faker/pull/2734
32
+ * add tests for password and fix an edge case by @DeepakRaj228 in https://github.com/faker-ruby/faker/pull/2741
33
+ * Remove broken chars from minecraft.yml by @ujihisa in https://github.com/faker-ruby/faker/pull/2765
34
+ * Fix flaky specs for `name` and `id` by @ruban-thilak in https://github.com/faker-ruby/faker/pull/2782
35
+ * Fixes `Faker::Music::Opera.saint_saens` issue by @devashishTaneja in https://github.com/faker-ruby/faker/pull/2792
36
+ * Fix flaky specs for dota `test_player` by @ruban-thilak in https://github.com/faker-ruby/faker/pull/2798
37
+ * Add prefixes to french name locale (`Faker::Name.name`) by @thdaraujo in https://github.com/faker-ruby/faker/pull/2800
38
+
39
+ ## What's Changed
40
+ * Introduce PositionalGenerator by @mike-burns in https://github.com/faker-ruby/faker/pull/2710
41
+ * Update South Park by @IvanReyesO7 in https://github.com/faker-ruby/faker/pull/2744
42
+ * Speed up Internet::Password generation using constants by @MicBruz in https://github.com/faker-ruby/faker/pull/2725
43
+ * Improve de-CH locale with new formats and content by @stefnnn in https://github.com/faker-ruby/faker/pull/2768
44
+
45
+ ## Update local dependencies
46
+ * Bump rubocop from 1.55.1 to 1.56.0 by @dependabot in https://github.com/faker-ruby/faker/pull/2807
47
+ * Update test-unit requirement from = 3.5.9 to = 3.6.1 by @dependabot in https://github.com/faker-ruby/faker/pull/2788
48
+ * Bump i18n from 1.12.0 to 1.13.0 by @dependabot in https://github.com/faker-ruby/faker/pull/2756
49
+ * Update rubocop-minitest requirement from = 0.30.0 to = 0.31.0 by @dependabot in https://github.com/faker-ruby/faker/pull/2759
50
+ * Bump minitest from 5.18.1 to 5.19.0 by @dependabot in https://github.com/faker-ruby/faker/pull/2804
51
+
52
+ ## New Contributors
53
+ * @old-dead-account made their first contribution in https://github.com/faker-ruby/faker/pull/2742
54
+ * @IvanReyesO7 made their first contribution in https://github.com/faker-ruby/faker/pull/2744
55
+ * @DeepakRaj228 made their first contribution in https://github.com/faker-ruby/faker/pull/2741
56
+ * @MicBruz made their first contribution in https://github.com/faker-ruby/faker/pull/2725
57
+ * @kyrylo made their first contribution in https://github.com/faker-ruby/faker/pull/2758
58
+ * @ujihisa made their first contribution in https://github.com/faker-ruby/faker/pull/2765
59
+ * @geophilusd made their first contribution in https://github.com/faker-ruby/faker/pull/2761
60
+ * @stefnnn made their first contribution in https://github.com/faker-ruby/faker/pull/2768
61
+ * @yamat47 made their first contribution in https://github.com/faker-ruby/faker/pull/2770
62
+ * @ruban-thilak made their first contribution in https://github.com/faker-ruby/faker/pull/2782
63
+ * @lepari23 made their first contribution in https://github.com/faker-ruby/faker/pull/2750
64
+ * @AngusDSR made their first contribution in https://github.com/faker-ruby/faker/pull/2755
65
+ * @devashishTaneja made their first contribution in https://github.com/faker-ruby/faker/pull/2792
66
+ * @mike-burns made their first contribution in https://github.com/faker-ruby/faker/pull/2710
67
+ * @hacktivista made their first contribution in https://github.com/faker-ruby/faker/pull/2778
68
+ * @mateusdeap made their first contribution in https://github.com/faker-ruby/faker/pull/2734
69
+ * @aramvisser made their first contribution in https://github.com/faker-ruby/faker/pull/2713
70
+
71
+ **Full Changelog**: https://github.com/faker-ruby/faker/compare/v3.2.0...v3.2.1
72
+
73
+ -------------------------
74
+
3
75
  ## [v3.2.0](https://github.com/faker-ruby/faker/tree/v3.2.0) (2023-04-14)
4
76
 
5
77
  Happy Spring with a new Faker release! 🌼
data/lib/faker/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Faker # :nodoc:
4
- VERSION = '3.2.1'
4
+ VERSION = '3.2.3'
5
5
  end
@@ -20,7 +20,7 @@ Faker::Hipster.word #=> "kogi"
20
20
 
21
21
  ## How to update a locale with more translations
22
22
 
23
- T update a locale with more translation features, simply add a new field to the .yml file that corresponds to an existing piece of functionality in the "en.yml" file. In this example, that would mean providing Chinese hipster words.
23
+ To update a locale with more translation features, simply add a new field to the .yml file that corresponds to an existing piece of functionality in the "en.yml" file. In this example, that would mean providing Chinese hipster words.
24
24
 
25
25
  ```yaml
26
26
  # /lib/locales/zh-CN.yml
@@ -52,6 +52,8 @@ da-DK:
52
52
  - "#{first_name} #{last_name} #{last_name}"
53
53
  - "#{first_name} #{last_name} #{last_name}"
54
54
 
55
+ country_code: ['45']
56
+
55
57
  phone_number:
56
58
  formats:
57
59
  - '## ## ## ##'
@@ -0,0 +1,466 @@
1
+ ja:
2
+ faker:
3
+ games:
4
+ touhou:
5
+ games:
6
+ - 東方靈異伝
7
+ - 東方封魔録
8
+ - 東方夢時空
9
+ - 東方幻想郷
10
+ - 東方怪綺談
11
+ - 東方紅魔郷
12
+ - 東方妖々夢
13
+ - 東方永夜抄
14
+ - 東方花映塚
15
+ - 東方文花帖
16
+ - 東方風神録
17
+ - 東方地霊殿
18
+ - 東方星蓮船
19
+ - ダブルスポイラー
20
+ - 妖精大戦争
21
+ - 東方神霊廟
22
+ - 東方輝針城
23
+ - 弾幕アマノジャク
24
+ - 東方紺珠伝
25
+ - 東方天空璋
26
+ - 秘封ナイトメアダイアリー
27
+ - 東方鬼形獣
28
+ - 東方虹龍洞
29
+ - 東方獣王園
30
+ characters:
31
+ - 博麗霊夢
32
+ - 霧雨魔理沙
33
+ - ルーミア
34
+ - チルノ
35
+ - 紅美鈴
36
+ - パチュリー・ノーレッジ
37
+ - 十六夜咲夜
38
+ - レミリア・スカーレット
39
+ - フランドール・スカーレット
40
+ - レティ・ホワイトロック
41
+ - 橙
42
+ - アリス・マーガトロイド
43
+ - リリーホワイト
44
+ - ルナサ・プリズムリバー
45
+ - メルラン・プリズムリバー
46
+ - リリカ・プリズムリバー
47
+ - 魂魄 妖夢
48
+ - 西行寺 幽々子
49
+ - 八雲藍
50
+ - 八雲紫
51
+ - リグル・ナイトバグ
52
+ - ミスティア・ローレライ
53
+ - 上白沢慧音
54
+ - 因幡てゐ
55
+ - 鈴仙・優曇華院・イナバ
56
+ - 八意永琳
57
+ - 蓬莱山輝夜
58
+ - 藤原妹紅
59
+ - 伊吹萃香
60
+ - 射命丸文
61
+ - メディスン・メランコリー
62
+ - 風見幽香
63
+ - 小野塚小町
64
+ - 四季映姫・ヤマザナドゥ
65
+ - 秋静葉
66
+ - 秋穣子
67
+ - 鍵山雛
68
+ - 河城にとり
69
+ - 犬走椛
70
+ - 東風谷早苗
71
+ - 八坂神奈子
72
+ - 洩矢諏訪子
73
+ - 永江衣玖
74
+ - 比那名居天子
75
+ - キスメ
76
+ - 黒谷ヤマメ
77
+ - 水橋パルスィ
78
+ - 星熊勇儀
79
+ - 古明地さとり
80
+ - 火焔猫燐
81
+ - 霊烏路空
82
+ - 古明地こいし
83
+ - ナズーリン
84
+ - 多々良小傘
85
+ - 雲居一輪
86
+ - 村紗水蜜
87
+ - 寅丸星
88
+ - 聖白蓮
89
+ - 封獣 ぬえ
90
+ - 大ナマズ
91
+ - 姫海棠 はたて
92
+ - サニーミルク
93
+ - スターサファイア
94
+ - ルナチャイルド
95
+ - 幽谷響子
96
+ - 宮古芳香
97
+ - 霍青娥
98
+ - 蘇我屠自古
99
+ - 物部布都
100
+ - 豊聡耳神子
101
+ - 二ッ岩マミゾウ
102
+ - 秦こころ
103
+ - わかさぎ姫
104
+ - 赤蛮奇
105
+ - 今泉影狼
106
+ - 九十九弁々
107
+ - 九十九八橋
108
+ - 鬼人正邪
109
+ - 少名針妙丸
110
+ - 堀川雷鼓
111
+ - 茨木華扇
112
+ - 宇佐見菫子
113
+ - 清蘭
114
+ - 鈴瑚
115
+ - ドレミー・スイート
116
+ - 稀神 サグメ
117
+ - クラウンピース
118
+ - 純狐
119
+ - ヘカーティア・ラピスラズリ
120
+ - エタニティラルバ
121
+ - 坂田ネムノ
122
+ - 高麗野あうん
123
+ - 矢田寺成美
124
+ - 爾子田里乃
125
+ - 丁礼田舞
126
+ - 摩多羅隠岐奈
127
+ - 依神女苑
128
+ - 依神紫苑
129
+ - 戎瓔花
130
+ - 牛崎潤美
131
+ - 庭渡久侘歌
132
+ - 吉弔八千慧
133
+ - 杖刀偶磨弓
134
+ - 埴安神袿姫
135
+ - 驪駒早鬼
136
+ - 饕餮尤魔
137
+ - 豪徳寺ミケ
138
+ - 山城たかね
139
+ - 駒草山如
140
+ - 玉造魅須丸
141
+ - 飯綱丸龍
142
+ - 菅牧典
143
+ - 天弓千亦
144
+ - 姫虫百々世
145
+ - 孫美天
146
+ - 三頭慧ノ子
147
+ - 天火人ちやり
148
+ - 豫母都日狭美
149
+ - 日白残無
150
+ spell_cards:
151
+ - 恋符「マスタースパーク」
152
+ - 禁忌「レーヴァテイン」
153
+ - 紫奥義「弾幕結界」
154
+ - 桜符「完全なる墨染の桜」
155
+ - 「百万鬼夜行」
156
+ - 「深弾幕結界 -夢幻泡影-」
157
+ - 日符「ロイヤルフレア」
158
+ - 神槍「スピア・ザ・グングニル」
159
+ - 新難題「金閣寺の一枚天井」
160
+ - 凍符「パーフェクトフリーズ」
161
+ - 蓬莱「凱風快晴 -フジヤマヴォルケイノ-」
162
+ - 「レッドマジック」
163
+ - 魔砲「ファイナルマスタースパーク」
164
+ - 「夢想天生」
165
+ - 無題「空を飛ぶ不思議な巫女」
166
+ - QED「495年の波紋」
167
+ - 神鬼「レミリアストーカー」
168
+ - 彗星「ブレイジングスター」
169
+ - 審判「浄頗梨審判 -射命丸文-」
170
+ - 人鬼「未来永劫斬」
171
+ - 天呪「アポロ13」
172
+ - 秘弾「そして誰もいなくなるか?」
173
+ - 日&月符「ロイヤルダイアモンドリング」
174
+ - 幻想「花鳥風月、嘯風弄月」
175
+ - 禁忌「恋の迷路」
176
+ - 疾風「風神少女」
177
+ - 霊符「夢想封印」
178
+ - 「紅色の幻想郷」
179
+ - 氷符「アイシクルフォール」
180
+ - 虹符「彩虹の風鈴」
181
+ - 「インペリシャブルシューティング」
182
+ - 幽曲「リポジトリ・オブ・ヒロカワ」
183
+ - 銀符「パーフェクトメイド」
184
+ - 月&木符「サテライトヒマワリ」
185
+ - 審判「ラストジャッジメント」
186
+ - 滅罪「正直者の死」
187
+ - 禁薬「蓬莱の薬」
188
+ - 魔符「スターダストレヴァリエ」
189
+ - 境符「波と粒の境界」
190
+ - 魔符「全世界ナイトメア」
191
+ - 鬼神「ミッシングパープルパワー」
192
+ - 秘術「天文密葬法」
193
+ - 紅符「スカーレットマイスタ」
194
+ - 神宝「ブリリアントドラゴンバレッタ」
195
+ - 月符「サイレントセレナ」
196
+ - 大合葬「霊車コンチェルトグロッソ」
197
+ - 咒詛「首吊り蓬莱人形」
198
+ - 火水木金土符「賢者の石」
199
+ - 式神「橙」
200
+ - 鬼神「飛翔毘沙門天」
201
+ locations:
202
+ - 博麗神社
203
+ - 人間の里
204
+ - 鈴奈庵
205
+ - 鯢呑亭
206
+ - 命蓮寺
207
+ - 夢殿大祀廟
208
+ - 霧の湖
209
+ - 廃洋館
210
+ - 紅魔館
211
+ - 魔法の森
212
+ - 香霖堂
213
+ - 霧雨魔法店
214
+ - マーガトロイド邸
215
+ - 玄武の沢
216
+ - 再思の道
217
+ - 無縁塚
218
+ - 妖怪の山
219
+ - 守矢神社
220
+ - 虹龍洞
221
+ - 大蝦蟇の池
222
+ - 聖地ヤマンバの地
223
+ - 茨華仙の屋敷
224
+ - マヨヒガ
225
+ - 間欠泉地下センター
226
+ - 中有の道
227
+ - 三途の川
228
+ - 迷いの竹林
229
+ - 永遠亭
230
+ - 無名の丘
231
+ - 太陽の畑
232
+ - 旧都
233
+ - 地霊殿
234
+ - 旧血の池地獄
235
+ - 冥界
236
+ - 白玉楼
237
+ - 天界
238
+ - 彼岸
239
+ - 地獄
240
+ - 畜生界
241
+ - 霊長園
242
+ - 魔界
243
+ - 法界
244
+ - 仙界
245
+ - 後戸の国
246
+ - 八雲紫の屋敷
247
+ - 輝針城
248
+ - 月の都
249
+ - 外の世界
250
+ - 夢の世界
251
+ songs:
252
+ - 赤より紅い夢
253
+ - ほおずきみたいに紅い魂
254
+ - 妖魔夜行
255
+ - ルーネイトエルフ
256
+ - おてんば恋娘
257
+ - 明治十七年の上海アリス
258
+ - ヴワル魔法図書館
259
+ - ラクトガール ~ 少女密室
260
+ - メイドと血の懐中時計
261
+ - 月時計 ~ ルナ・ダイアル
262
+ - ツェペシュの幼き末裔
263
+ - 亡き王女の為のセプテット
264
+ - 魔法少女達の百年祭
265
+ - 紅より儚い永遠
266
+ - クリスタライズシルバー
267
+ - 遠野幻想物語
268
+ - ブクレシュティの人形師
269
+ - 人形裁判 ~ 人の形弄びし少女
270
+ - 天空の花の都
271
+ - アルティメットトゥルース
272
+ - ボーダーオブライフ
273
+ - 妖々跋扈
274
+ - ネクロファンタジア
275
+ - 春風の夢
276
+ - もう歌しか聞こえない
277
+ - プレインエイジア
278
+ - 恋色マスタースパーク
279
+ - ヴォヤージュ1969
280
+ - ヴォヤージュ1970
281
+ - エクステンドアッシュ ~ 蓬莱人
282
+ - 月まで届け、不死の煙
283
+ - 月見草
284
+ - 東方妖怪小町
285
+ - オリエンタルダークフライト
286
+ - フラワリングナイト
287
+ - おてんば恋娘の冒険
288
+ - お宇佐さまの素い幡
289
+ - 花の映る塚
290
+ - 此岸の塚
291
+ - 花は幻想のままに
292
+ - 東の国の眠らない夜
293
+ - レトロスペクティブ京都
294
+ - 風神少女
295
+ - 封印されし神々
296
+ - 稲田姫様に叱られるから
297
+ - 運命のダークサイド
298
+ - 神々が恋した幻想郷
299
+ - フォールオブフォール ~ 秋めく滝
300
+ - 少女が見た日本の原風景
301
+ - 信仰は儚き人間の為に
302
+ - 明日ハレの日、ケの昨日
303
+ - ネイティブフェイス
304
+ - 麓の神社
305
+ - プレイヤーズスコア
306
+ - 幼心地の有頂天
307
+ - 地霊達の起床
308
+ - 暗闇の風穴
309
+ - 渡る者の途絶えた橋
310
+ - 緑眼のジェラシー
311
+ - 旧地獄街道を行く
312
+ - 華のさかづき大江山
313
+ - ハートフェルトファンシー
314
+ - 廃獄ララバイ
315
+ - 業火マントル
316
+ - ラストリモート
317
+ - ハルトマンの妖怪少女
318
+ - 地霊達の帰宅
319
+ - 青空の影
320
+ - 春の湊に
321
+ - 小さな小さな賢将
322
+ - 閉ざせし雲の通い路
323
+ - 万年置き傘にご注意を
324
+ - スカイルーイン
325
+ - 時代親父とハイカラ少女
326
+ - 幽霊客船の時空を越えた旅
327
+ - キャプテン・ムラサ
328
+ - 魔界地方都市エソテリア
329
+ - 虎柄の毘沙門天
330
+ - 法界の火
331
+ - 夜空のユーフォーロマンス
332
+ - 平安のエイリアン
333
+ - 妖怪寺
334
+ - ニュースハウンド
335
+ - あなたの町の怪事件
336
+ - 妖怪モダンコロニー
337
+ - ネメシスの要塞
338
+ - 春の氷精
339
+ - 可愛い大戦争のリフレーン
340
+ - いたずらに命をかけて
341
+ - 年中夢中の好奇心
342
+ - 真夜中のフェアリーダンス
343
+ - ルーズレイン
344
+ - メイガスナイト
345
+ - 春の氷精 - 静 -
346
+ - 欲深き霊魂
347
+ - 死霊の夜桜
348
+ - ゴーストリード
349
+ - 妖怪寺へようこそ
350
+ - 門前の妖怪小娘
351
+ - 素敵な墓場で暮しましょ
352
+ - リジッドパラダイス
353
+ - デザイアドライブ
354
+ - 古きユアンシェン
355
+ - 夢殿大祀廟
356
+ - 大神神話伝
357
+ - 小さな欲望の星空
358
+ - 妖怪裏参道
359
+ - 佐渡の二ッ岩
360
+ - 神社の新しい風
361
+ - デザイアドリーム
362
+ - 幻想郷の二ッ岩
363
+ - 亡失のエモーション
364
+ - 不思議なお祓い棒
365
+ - ミストレイク
366
+ - 秘境のマーメイド
367
+ - 運河を行き交う人妖
368
+ - 柳の下のデュラハン
369
+ - 満月の竹林
370
+ - 孤独なウェアウルフ
371
+ - マジカルストーム
372
+ - 幻想浄瑠璃
373
+ - 空中に沈む輝針城
374
+ - リバースイデオロギー
375
+ - 針小棒大の天守閣
376
+ - 魔力の雷雲
377
+ - 小槌の魔力
378
+ - 不思議な不思議な道具達
379
+ - 反則の狼煙を上げろ
380
+ - 不可能弾幕には反則を
381
+ - ミッドナイトスペルカード
382
+ - ロマンチック逃飛行
383
+ - 永遠の三日天下
384
+ - 華狭間のバトルフィールド
385
+ - ラストオカルティズム ~ 現し世の秘術師
386
+ - 宇宙巫女現る
387
+ - 忘れがたき、よすがの緑
388
+ - 兎は舞い降りた
389
+ - 湖は浄めの月光を映して
390
+ - 九月のパンプキン
391
+ - 宇宙を飛ぶ不思議な巫女
392
+ - 永遠の春夢
393
+ - 凍り付いた永遠の都
394
+ - 逆転するホイールオブフォーチュン
395
+ - 遥か38万キロのボヤージュ
396
+ - 星条旗のピエロ
397
+ - 故郷の星が映る海
398
+ - ピュアヒューリーズ ~ 心の在処
399
+ - 見た事も無い悪夢の世界
400
+ - パンデモニックプラネット
401
+ - 神社から見える月
402
+ - 宇宙巫女帰還する
403
+ - 桜舞い散る天空
404
+ - 希望の星は青霄に昇る
405
+ - 真夏の妖精の夢
406
+ - 色無き風は妖怪の山に
407
+ - 山奥のエンカウンター
408
+ - 桜色の海を泳いで
409
+ - 一対の神獣
410
+ - 幻想のホワイトトラベラー
411
+ - 魔法の笠地蔵
412
+ - 禁断の扉の向こうは、この世かあの世か
413
+ - クレイジーバックダンサーズ
414
+ - イントゥ・バックドア
415
+ - 秘匿されたフォーシーズンズ
416
+ - もうドアには入れない
417
+ - 不自然な自然
418
+ - 白い旅人
419
+ - 物言わぬ獣の霊
420
+ - 地蔵だけが知る哀嘆
421
+ - ジェリーストーン
422
+ - ロストリバー
423
+ - 石の赤子と水中の牛
424
+ - 不朽の曼珠沙華
425
+ - セラフィックチキン
426
+ - アンロケイテッドヘル
427
+ - トータスドラゴン ~幸運と不運
428
+ - ビーストメトロポリス
429
+ - セラミックスの杖刀人
430
+ - エレクトリックヘリテージ
431
+ - 輝かしき弱肉強食の掟
432
+ - 畜生達の休息
433
+ - 地下からの帰還
434
+ - 虹の架かる幻想郷
435
+ - 妖異達の通り雨
436
+ - 大吉キトゥン
437
+ - 深緑に隠された断崖
438
+ - バンデットリィテクノロジー
439
+ - 駒草咲くパーペチュアルスノー
440
+ - スモーキングドラゴン
441
+ - 廃れゆく産業遺構
442
+ - 神代鉱石
443
+ - 待ちわびた逢魔が時
444
+ - 星降る天魔の山
445
+ - ルナレインボー
446
+ - 幻想の地下大線路網
447
+ - 龍王殺しのプリンセス
448
+ - 嵐の後の日曜日
449
+ - 虹色の世界
450
+ - コレクターの憂鬱な午後
451
+ - ワクワクする見慣れた幻想郷
452
+ - 妖怪フックオン
453
+ - 闇市場は場所を選ばない
454
+ - 100回目のブラックマーケット
455
+ - ルナティックドリーマー
456
+ - 獣の知性
457
+ - 世界は可愛く出来ている
458
+ - 魔獣スクランブル
459
+ - 鬼は悠久の山に
460
+ - タイニーシャングリラ
461
+ - 勇敢で有閑な妖獣
462
+ - 吸血怪獣チュパカブラ
463
+ - 振り向かない黄泉の道
464
+ - 強欲な獣のメメント
465
+ - 獣王達の休息
466
+ - 獣に知性はあるか
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: faker
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.1
4
+ version: 3.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Benjamin Curtis
8
8
  - Vitor Oliveira
9
- autorequire:
9
+ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2023-08-11 00:00:00.000000000 Z
12
+ date: 2024-01-13 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: i18n
@@ -140,7 +140,6 @@ files:
140
140
  - lib/faker/default/placeholdit.rb
141
141
  - lib/faker/default/programming_language.rb
142
142
  - lib/faker/default/relationship.rb
143
- - lib/faker/default/release notes.md
144
143
  - lib/faker/default/religion.rb
145
144
  - lib/faker/default/restaurant.rb
146
145
  - lib/faker/default/science.rb
@@ -579,6 +578,7 @@ files:
579
578
  - lib/locales/ja/subscription.yml
580
579
  - lib/locales/ja/super_mario.yml
581
580
  - lib/locales/ja/super_smash_bros.yml
581
+ - lib/locales/ja/touhou.yml
582
582
  - lib/locales/ja/university.yml
583
583
  - lib/locales/ja/zelda.yml
584
584
  - lib/locales/ko.yml
@@ -610,7 +610,7 @@ metadata:
610
610
  documentation_uri: https://rubydoc.info/github/faker-ruby/faker
611
611
  yard.run: yri
612
612
  rubygems_mfa_required: 'true'
613
- post_install_message:
613
+ post_install_message:
614
614
  rdoc_options: []
615
615
  require_paths:
616
616
  - lib
@@ -625,8 +625,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
625
625
  - !ruby/object:Gem::Version
626
626
  version: '0'
627
627
  requirements: []
628
- rubygems_version: 3.4.10
629
- signing_key:
628
+ rubygems_version: 3.2.33
629
+ signing_key:
630
630
  specification_version: 4
631
631
  summary: Easily generate fake data
632
632
  test_files: []
@@ -1,59 +0,0 @@
1
-
2
-
3
- ## What's Changed
4
- * Add Final Fantasy XIV by @old-dead-account in https://github.com/faker-ruby/faker/pull/2742
5
- * Update rubocop requirement from = 1.50.1 to = 1.50.2 by @dependabot in https://github.com/faker-ruby/faker/pull/2752
6
- * Update South Park by @IvanReyesO7 in https://github.com/faker-ruby/faker/pull/2744
7
- * add tests for password and fix an edge case by @DeepakRaj228 in https://github.com/faker-ruby/faker/pull/2741
8
- * Speed up Internet::Password generation using constants by @MicBruz in https://github.com/faker-ruby/faker/pull/2725
9
- * Add the Ukrainian country calling code by @kyrylo in https://github.com/faker-ruby/faker/pull/2758
10
- * Update test-unit requirement from = 3.5.7 to = 3.5.8 by @dependabot in https://github.com/faker-ruby/faker/pull/2760
11
- * Bump i18n from 1.12.0 to 1.13.0 by @dependabot in https://github.com/faker-ruby/faker/pull/2756
12
- * Update rubocop-minitest requirement from = 0.30.0 to = 0.31.0 by @dependabot in https://github.com/faker-ruby/faker/pull/2759
13
- * Remove broken chars from minecraft.yml by @ujihisa in https://github.com/faker-ruby/faker/pull/2765
14
- * Update test-unit requirement from = 3.5.8 to = 3.5.9 by @dependabot in https://github.com/faker-ruby/faker/pull/2766
15
- * Add `exclude_words` filter to `Faker::Lorem.word` generator by @geophilusd in https://github.com/faker-ruby/faker/pull/2761
16
- * Improve de-CH locale with new formats and content by @stefnnn in https://github.com/faker-ruby/faker/pull/2768
17
- * Add Japanese translations for Sports category. by @yamat47 in https://github.com/faker-ruby/faker/pull/2770
18
- * Fix flaky specs for `name` and `id` by @ruban-thilak in https://github.com/faker-ruby/faker/pull/2782
19
- * Add type support for Faker::Types.rb_array by @ruban-thilak in https://github.com/faker-ruby/faker/pull/2771
20
- * Added Archer into tv category. by @lepari23 in https://github.com/faker-ruby/faker/pull/2750
21
- * Add train station generator by @AngusDSR in https://github.com/faker-ruby/faker/pull/2755
22
- * Fixes `Faker::Music::Opera.saint_saens` issue by @devashishTaneja in https://github.com/faker-ruby/faker/pull/2792
23
- * Add custom start date for `Faker::Date.forward` by @luciagirasoles in https://github.com/faker-ruby/faker/pull/2791
24
- * Fix flaky specs for dota `test_player` by @ruban-thilak in https://github.com/faker-ruby/faker/pull/2798
25
- * Update minitest requirement from = 5.18.0 to = 5.18.1 by @dependabot in https://github.com/faker-ruby/faker/pull/2781
26
- * Update test-unit requirement from = 3.5.9 to = 3.6.1 by @dependabot in https://github.com/faker-ruby/faker/pull/2788
27
- * Introduce PositionalGenerator by @mike-burns in https://github.com/faker-ruby/faker/pull/2710
28
- * Bump rubocop 1.54.2 + offenses fixes by @stefannibrasil in https://github.com/faker-ruby/faker/pull/2801
29
- * Add prefixes to french name locale (`Faker::Name.name`) by @thdaraujo in https://github.com/faker-ruby/faker/pull/2800
30
- * Add `max_rut` option to `Faker::ChileRut.rut` by @hacktivista in https://github.com/faker-ruby/faker/pull/2778
31
- * Fix locale setting by @mateusdeap in https://github.com/faker-ruby/faker/pull/2734
32
- * Test default locale + and update README by @stefannibrasil in https://github.com/faker-ruby/faker/pull/2802
33
- * Bump minitest from 5.18.1 to 5.19.0 by @dependabot in https://github.com/faker-ruby/faker/pull/2804
34
- * Bump rubocop from 1.54.2 to 1.55.0 by @dependabot in https://github.com/faker-ruby/faker/pull/2803
35
- * Bump rubocop from 1.55.0 to 1.55.1 by @dependabot in https://github.com/faker-ruby/faker/pull/2805
36
- * Add Faker::Date.day_of_week_between by @aramvisser in https://github.com/faker-ruby/faker/pull/2713
37
- * Html generator for Faker by @ruban-thilak in https://github.com/faker-ruby/faker/pull/2769
38
- * Bump rubocop from 1.55.1 to 1.56.0 by @dependabot in https://github.com/faker-ruby/faker/pull/2807
39
-
40
- ## New Contributors
41
- * @old-dead-account made their first contribution in https://github.com/faker-ruby/faker/pull/2742
42
- * @IvanReyesO7 made their first contribution in https://github.com/faker-ruby/faker/pull/2744
43
- * @DeepakRaj228 made their first contribution in https://github.com/faker-ruby/faker/pull/2741
44
- * @MicBruz made their first contribution in https://github.com/faker-ruby/faker/pull/2725
45
- * @kyrylo made their first contribution in https://github.com/faker-ruby/faker/pull/2758
46
- * @ujihisa made their first contribution in https://github.com/faker-ruby/faker/pull/2765
47
- * @geophilusd made their first contribution in https://github.com/faker-ruby/faker/pull/2761
48
- * @stefnnn made their first contribution in https://github.com/faker-ruby/faker/pull/2768
49
- * @yamat47 made their first contribution in https://github.com/faker-ruby/faker/pull/2770
50
- * @ruban-thilak made their first contribution in https://github.com/faker-ruby/faker/pull/2782
51
- * @lepari23 made their first contribution in https://github.com/faker-ruby/faker/pull/2750
52
- * @AngusDSR made their first contribution in https://github.com/faker-ruby/faker/pull/2755
53
- * @devashishTaneja made their first contribution in https://github.com/faker-ruby/faker/pull/2792
54
- * @mike-burns made their first contribution in https://github.com/faker-ruby/faker/pull/2710
55
- * @hacktivista made their first contribution in https://github.com/faker-ruby/faker/pull/2778
56
- * @mateusdeap made their first contribution in https://github.com/faker-ruby/faker/pull/2734
57
- * @aramvisser made their first contribution in https://github.com/faker-ruby/faker/pull/2713
58
-
59
- **Full Changelog**: https://github.com/faker-ruby/faker/compare/v3.2.0...v3.2.1