faker-pretty_series 0.1.1 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d9861ec1a7ab8976c6ecad69eaac35c225a8adab3ab6ed70fa8733bdffdec30b
4
- data.tar.gz: 66c07183993ad2b6fc82f7cfa47946859c582f9613b328655cf133c8403b54d8
3
+ metadata.gz: eae9cb6d58909d8f1b23a3bec5968001b78ad0e6e3176815dd7f09bedeb14655
4
+ data.tar.gz: fb10bafb9f736d15848823ee6253a5794897213d81b95507a3897934cf0aee26
5
5
  SHA512:
6
- metadata.gz: fe88a84a89ce45f50e7533efd77a4255344cccd136d99fd125ba2d4733db3d05e4efb5dc7c999b33f2354c5f4418930f935a7bf5e8dd16cba978be1758002306
7
- data.tar.gz: '0913ae07c96f39bbb3fbd83b83cfb92524ebea2baa27f0240ced24a643eadfea960e7f57ff344d10b83908f3aaa4a3b576b3ab38ef317c1617abff17858b9c46'
6
+ metadata.gz: e414c2df391fe4e66de60e38d7fa83aa367cfd055470bed106d722f3d36709fa99fb17df6be6b9339109bca8014cd78393e47a99b1284da71a9ed43792044a00
7
+ data.tar.gz: e4325f12d89a205947b4ce2dac2c7c2b072a209623ee0a261baba42ad66d2964a1e167a83730c53f4e5c149161ca71d4ab059563d6ade2dc61f2372b4f8524ca
@@ -0,0 +1,12 @@
1
+ # c.f. https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
2
+ version: 2
3
+
4
+ updates:
5
+ - package-ecosystem: github-actions
6
+ directory: /
7
+ schedule:
8
+ interval: weekly
9
+ cooldown:
10
+ default-days: 7
11
+ assignees:
12
+ - sue445
@@ -0,0 +1,59 @@
1
+ # Simple workflow for deploying static content to GitHub Pages
2
+ name: Deploy static content to Pages
3
+
4
+ on:
5
+ # Runs on pushes targeting the default branch
6
+ push:
7
+ branches:
8
+ - master
9
+
10
+ # Allows you to run this workflow manually from the Actions tab
11
+ workflow_dispatch:
12
+
13
+ # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
14
+ permissions:
15
+ contents: read
16
+ pages: write
17
+ id-token: write
18
+
19
+ # Allow one concurrent deployment
20
+ concurrency:
21
+ group: "pages"
22
+ cancel-in-progress: true
23
+
24
+ jobs:
25
+ # Single deploy job since we're just deploying
26
+ deploy:
27
+ environment:
28
+ name: github-pages
29
+ url: ${{ steps.deployment.outputs.page_url }}
30
+ runs-on: ubuntu-latest
31
+ steps:
32
+ - name: Checkout
33
+ uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
34
+
35
+ - uses: ruby/setup-ruby@8aeb6ff8030dd539317f8e1769a044873b56ea71 # v1.268.0
36
+ with:
37
+ ruby-version: ruby
38
+ bundler-cache: true
39
+
40
+ - run: bundle exec yard
41
+
42
+ - name: Setup Pages
43
+ uses: actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5.0.0
44
+ - name: Upload artifact
45
+ uses: actions/upload-pages-artifact@7b1f4a764d45c48632c6b24a0339c27f5614fb0b # v4.0.0
46
+ with:
47
+ # Upload entire repository
48
+ path: './doc'
49
+ - name: Deploy to GitHub Pages
50
+ id: deployment
51
+ uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e # v4.0.5
52
+
53
+ - name: Slack Notification (not success)
54
+ uses: act10ns/slack@cfcc30955fe9377f4f55e1079e5419ee1014269f # v2
55
+ if: "! success()"
56
+ continue-on-error: true
57
+ with:
58
+ status: ${{ job.status }}
59
+ webhook-url: ${{ secrets.SLACK_WEBHOOK }}
@@ -0,0 +1,41 @@
1
+ name: Publish gem to rubygems.org
2
+
3
+ on:
4
+ workflow_dispatch:
5
+
6
+ jobs:
7
+ release:
8
+ if: github.repository == 'sue445/faker-pretty_series'
9
+ runs-on: ubuntu-latest
10
+
11
+ environment:
12
+ name: rubygems.org
13
+ url: https://rubygems.org/gems/faker-pretty_series
14
+
15
+ permissions:
16
+ contents: write
17
+ id-token: write
18
+
19
+ steps:
20
+ - name: Harden Runner
21
+ uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0
22
+ with:
23
+ egress-policy: audit
24
+
25
+ - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
26
+
27
+ - name: Set up Ruby
28
+ uses: ruby/setup-ruby@eaecf785f6a34567a6d97f686bbb7bccc1ac1e5c # v1.237.0
29
+ with:
30
+ bundler-cache: true
31
+ ruby-version: ruby
32
+
33
+ - name: Publish to RubyGems
34
+ uses: rubygems/release-gem@a25424ba2ba8b387abc8ef40807c2c85b96cbe32 # v1.1.1
35
+
36
+ - name: Create GitHub release
37
+ run: |
38
+ tag_name="$(git describe --tags --abbrev=0)"
39
+ gh release create "${tag_name}" --verify-tag --generate-notes
40
+ env:
41
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -12,79 +12,59 @@ on:
12
12
  schedule:
13
13
  - cron: "0 10 * * 5" # JST 19:00 (Fri)
14
14
 
15
- env:
16
- CI: "true"
17
-
18
15
  jobs:
19
16
  test:
20
17
  runs-on: ubuntu-latest
21
18
 
22
- container: ${{ matrix.ruby }}
23
-
24
19
  strategy:
25
20
  fail-fast: false
26
21
 
27
22
  matrix:
28
23
  ruby:
29
- - ruby:2.5
30
- - ruby:2.6
31
- - ruby:2.7
32
- - rubylang/ruby:master-nightly-bionic
33
- include:
34
- - ruby: rubylang/ruby:master-nightly-bionic
35
- allow_failures: "true"
24
+ - "2.5"
25
+ - "2.6"
26
+ - "2.7"
27
+ - "3.0"
28
+ - "3.1"
29
+ - "3.2"
30
+ - "3.3"
31
+ - "3.4"
36
32
 
37
33
  steps:
38
- - uses: actions/checkout@v2
39
- - name: Cache vendor/bundle
40
- uses: actions/cache@v1
41
- id: cache_gem
34
+ - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
35
+
36
+ - uses: ruby/setup-ruby@8aeb6ff8030dd539317f8e1769a044873b56ea71 # v1.268.0
42
37
  with:
43
- path: vendor/bundle
44
- key: v1-gem-${{ runner.os }}-${{ matrix.ruby }}-${{ github.sha }}
45
- restore-keys: |
46
- v1-gem-${{ runner.os }}-${{ matrix.ruby }}-
47
- continue-on-error: ${{ matrix.allow_failures == 'true' }}
38
+ ruby-version: ${{ matrix.ruby }}
39
+ bundler-cache: true
48
40
 
49
- - name: bundle update
50
- run: |
51
- set -xe
52
- bundle config path vendor/bundle
53
- bundle update --jobs $(nproc) --retry 3
54
- continue-on-error: ${{ matrix.allow_failures == 'true' }}
41
+ - run: bundle update --jobs $(nproc) --retry 3
55
42
 
56
43
  - name: Setup Code Climate Test Reporter
57
- uses: aktions/codeclimate-test-reporter@v1
44
+ uses: aktions/codeclimate-test-reporter@7634aa9ac7883182f583f15ff7b6ff519939dd0a # v1.2.0
58
45
  with:
59
46
  codeclimate-test-reporter-id: ${{ secrets.CC_TEST_REPORTER_ID }}
60
47
  command: before-build
61
- if: matrix.ruby >= 'ruby:2.4'
62
48
  continue-on-error: true
63
49
 
64
- - name: Run test
65
- run: |
66
- set -xe
67
- bundle exec rspec
68
- continue-on-error: ${{ matrix.allow_failures == 'true' }}
50
+ - run: bundle exec rspec
69
51
 
70
52
  - name: Teardown Code Climate Test Reporter
71
- uses: aktions/codeclimate-test-reporter@v1
53
+ uses: aktions/codeclimate-test-reporter@7634aa9ac7883182f583f15ff7b6ff519939dd0a # v1.2.0
72
54
  with:
73
55
  codeclimate-test-reporter-id: ${{ secrets.CC_TEST_REPORTER_ID }}
74
56
  command: after-build
75
- if: matrix.ruby >= 'ruby:2.4' && always()
57
+ if: always()
76
58
  continue-on-error: true
77
59
 
78
60
  - name: Slack Notification (not success)
79
- uses: homoluctus/slatify@master
61
+ uses: act10ns/slack@cfcc30955fe9377f4f55e1079e5419ee1014269f # v2
80
62
  if: "! success()"
81
63
  continue-on-error: true
82
64
  with:
83
- job_name: ${{ format('*build* ({0})', matrix.ruby) }}
84
- type: ${{ job.status }}
85
- icon_emoji: ":octocat:"
86
- url: ${{ secrets.SLACK_WEBHOOK }}
87
- token: ${{ secrets.GITHUB_TOKEN }}
65
+ status: ${{ job.status }}
66
+ webhook-url: ${{ secrets.SLACK_WEBHOOK }}
67
+ matrix: ${{ toJson(matrix) }}
88
68
 
89
69
  notify:
90
70
  needs:
@@ -94,12 +74,9 @@ jobs:
94
74
 
95
75
  steps:
96
76
  - name: Slack Notification (success)
97
- uses: homoluctus/slatify@master
77
+ uses: act10ns/slack@cfcc30955fe9377f4f55e1079e5419ee1014269f # v2
98
78
  if: always()
99
79
  continue-on-error: true
100
80
  with:
101
- job_name: '*build*'
102
- type: ${{ job.status }}
103
- icon_emoji: ":octocat:"
104
- url: ${{ secrets.SLACK_WEBHOOK }}
105
- token: ${{ secrets.GITHUB_TOKEN }}
81
+ status: ${{ job.status }}
82
+ webhook-url: ${{ secrets.SLACK_WEBHOOK }}
data/.yardopts ADDED
@@ -0,0 +1,2 @@
1
+ --markup markdown
2
+ --no-private
data/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  ## Unreleased
2
- [full changelog](http://github.com/sue445/faker-pretty_series/compare/v0.1.1...master)
2
+ [full changelog](http://github.com/sue445/faker-pretty_series/compare/v0.1.3...master)
3
+
4
+ ## [v0.1.3](https://github.com/sue445/faker-pretty_series/releases/tag/v0.1.3)
5
+ [full changelog](http://github.com/sue445/faker-pretty_series/compare/v0.1.2...v0.1.3)
6
+
7
+ * Release gem from GitHub Actions
8
+ * https://github.com/sue445/faker-pretty_series/pull/30
9
+
10
+ ## v0.1.2
11
+ [full changelog](http://github.com/sue445/faker-pretty_series/compare/v0.1.1...v0.1.2)
12
+
13
+ * Enable MFA requirement for gem releasing
14
+ * https://github.com/sue445/faker-pretty_series/pull/8
15
+ * Update data
16
+ * https://github.com/sue445/faker-pretty_series/pull/9
3
17
 
4
18
  ## v0.1.1
5
19
  [full changelog](http://github.com/sue445/faker-pretty_series/compare/v0.1.0...v0.1.1)
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
  Test data generator using [PrettySeries](https://en.wikipedia.org/wiki/Pretty_Rhythm)
3
3
 
4
4
  [![Gem Version](https://badge.fury.io/rb/faker-pretty_series.svg)](https://badge.fury.io/rb/faker-pretty_series)
5
- [![test](https://github.com/sue445/faker-pretty_series/workflows/test/badge.svg?branch=master)](https://github.com/sue445/faker-pretty_series/actions?query=workflow%3Atest)
5
+ [![test](https://github.com/sue445/faker-pretty_series/actions/workflows/test.yml/badge.svg)](https://github.com/sue445/faker-pretty_series/actions/workflows/test.yml)
6
6
  [![Coverage Status](https://coveralls.io/repos/github/sue445/faker-pretty_series/badge.svg?branch=master)](https://coveralls.io/github/sue445/faker-pretty_series?branch=master)
7
7
  [![Maintainability](https://api.codeclimate.com/v1/badges/1e61884ff835944a69d2/maintainability)](https://codeclimate.com/github/sue445/faker-pretty_series/maintainability)
8
8
 
@@ -15,6 +15,8 @@ Gem::Specification.new do |spec|
15
15
  spec.metadata["homepage_uri"] = spec.homepage
16
16
  spec.metadata["source_code_uri"] = "https://github.com/sue445/faker-pretty_series"
17
17
  spec.metadata["changelog_uri"] = "https://github.com/sue445/faker-pretty_series/blob/master/CHANGELOG.md"
18
+ spec.metadata["documentation_uri"] = "https://sue445.github.io/faker-pretty_series"
19
+ spec.metadata["rubygems_mfa_required"] = "true"
18
20
 
19
21
  # Specify which files should be added to the gem when it is released.
20
22
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
@@ -24,4 +26,7 @@ Gem::Specification.new do |spec|
24
26
  spec.bindir = "exe"
25
27
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
26
28
  spec.require_paths = ["lib"]
29
+
30
+ spec.add_development_dependency "term-ansicolor", "!= 1.11.1" # ref. https://github.com/flori/term-ansicolor/issues/41
31
+ spec.add_development_dependency "yard"
27
32
  end
@@ -5,8 +5,10 @@
5
5
  favorite_brand: dolly_waltz
6
6
  favorite_food: 紅茶
7
7
  height: 147
8
+ memberOf: meltic_star
8
9
  name: 赤城 あんな
9
10
  name_kana: あかぎ あんな
11
+ performerIn: prichan_101_diamond_smile
10
12
  type: ラブリー
11
13
  _key: akagi_anna
12
14
  - cv: 伊藤かな恵
@@ -14,17 +16,31 @@
14
16
  name_kana: あかい めがねぇ
15
17
  performerIn: pripara_79_virtual_idol
16
18
  _key: akai_meganee
19
+ - birthday: 11月5日
20
+ cv: ファイルーズあい
21
+ favorite_brand: fun_fun_trunk
22
+ favorite_food: ペペロンチーノ
23
+ name: アリス・ペペロンチーノ
24
+ name_kana: ありす ぺぺろんちーの
25
+ type: ナチュラル
26
+ _key: alice_peperoncino
17
27
  - birthday: 1月25日
18
28
  blood_type: A型
19
29
  cv: 厚木那奈美
20
30
  favorite_brand: secret_alice
21
31
  favorite_food: アップルパイ
22
32
  height: 153
33
+ memberOf: miracle_kiratts
23
34
  name: 青葉 りんか
24
35
  name_kana: あおば りんか
25
36
  performerIn: prichan_58_yumeiro_energy
26
37
  type: クール
27
38
  _key: aoba_rinka
39
+ - cv: 澁谷梓希
40
+ memberOf: oshama_tricks
41
+ name: 明日香 ルゥ
42
+ name_kana: あすか るぅ
43
+ _key: asuka_ruu
28
44
  - cv: 佐々木李子
29
45
  favorite_brand: milky_rainbow
30
46
  name: だいあ
@@ -51,6 +67,11 @@
51
67
  name_kana: ふぁるる
52
68
  performerIn: pripara_75_love_week_old
53
69
  _key: falulu
70
+ - cv: 山北早紀
71
+ memberOf: oshama_tricks
72
+ name: 歩堂 デヴィ
73
+ name_kana: ふどう でびぃ
74
+ _key: fudou_devy
54
75
  - birthday: 4月17日
55
76
  charm: ラブリー
56
77
  cv: 真田アサミ
@@ -61,6 +82,11 @@
61
82
  name_kana: がぁるる
62
83
  performerIn: pripara_83_love_week_old
63
84
  _key: gaaruru
85
+ - cv: 伊達朱里紗
86
+ name: 激川 ゆい
87
+ name_kana: げきかわ ゆい
88
+ type: ラブリー
89
+ _key: gekikawa_yui
64
90
  - birthday: 9月12日
65
91
  blood_type: AB型
66
92
  charm: クール/プレミアム
@@ -87,28 +113,45 @@
87
113
  name: ジャニス
88
114
  name_kana: じゃにす
89
115
  _key: janice
90
- - cv: 上田麗奈
116
+ - birthday: 7月10日
117
+ cv: 上田麗奈
91
118
  favorite_food: 綿菓子
92
119
  name: ジュリィ
93
120
  name_kana: じゅりぃ
94
121
  performerIn: pripara_140_girls_fantasy
95
122
  _key: jewlie
96
- - cv: 田中美海
123
+ - birthday: 1月23日
124
+ blood_type: A型
125
+ cv: 田中美海
126
+ favorite_food: ジェラート
97
127
  memberOf: triangle
98
128
  name: じゅのん
99
129
  name_kana: じゅのん
100
130
  performerIn: pripara_92_charisma_to_girl_yeah
101
131
  _key: junon
132
+ - birthday: 11月5日
133
+ cv: 指出毬亜
134
+ favorite_brand: moonlight_magic
135
+ favorite_food: エクレア
136
+ name: 輝 イブ
137
+ name_kana: かがやき いぶ
138
+ type: セレブ
139
+ _key: kagayaki_eve
102
140
  - birthday: 5月9日
141
+ blood_type: O型
103
142
  cv: 茜屋日海夏
104
143
  favorite_brand: cutie_happiness
105
144
  favorite_food: アイスクリーム
145
+ memberOf: ring_marry
106
146
  name: 金森 まりあ
107
147
  name_kana: かなもり まりあ
108
148
  performerIn: prichan_57_shiawasei_kawaii_sanka
109
149
  type: ラブリー
110
150
  _key: kanamori_maria
111
- - cv: 田中美海
151
+ - birthday: 3月21日
152
+ blood_type: A型
153
+ cv: 田中美海
154
+ favorite_food: ティラミス
112
155
  memberOf: triangle
113
156
  name: かのん
114
157
  name_kana: かのん
@@ -125,12 +168,23 @@
125
168
  name_kana: きき あじみ
126
169
  performerIn: pripara_72_panic_labyrinth
127
170
  _key: kiki_ajimi
171
+ - birthday: 10月10日
172
+ cv: 山下七海
173
+ favorite_brand: little_princess_egg
174
+ memberOf: gogo_mascots
175
+ name: キラッCHU
176
+ name_kana: きらっちゅ
177
+ type: ラブリー
178
+ _key: kiracchu
128
179
  - birthday: 12月6日
180
+ blood_type: B型
129
181
  cv: 徳井青空
130
182
  favorite_brand: dance_and_street
131
183
  favorite_food: モナカ
184
+ memberOf: ring_marry
132
185
  name: 黒川 すず
133
186
  name_kana: くろかわ すず
187
+ performerIn: prichan_101_diamond_smile
134
188
  type: クール
135
189
  _key: kurokawa_suzu
136
190
  - birthday: 6月6日
@@ -153,6 +207,14 @@
153
207
  name: レオナ・ウェスト
154
208
  name_kana: れおな うぇすと
155
209
  _key: leona_west
210
+ - birthday: 2月22日
211
+ cv: 山村響
212
+ favorite_brand: little_princess_egg
213
+ favorite_food: オムレツ
214
+ name: ルルナ
215
+ name_kana: るるな
216
+ type: セレブ
217
+ _key: luluna
156
218
  - birthday: 11月20日
157
219
  blood_type: O型
158
220
  charm: ラブリー
@@ -173,14 +235,24 @@
173
235
  name: 真中 のん
174
236
  name_kana: まなか のん
175
237
  _key: manaka_non
238
+ - birthday: 8月8日
239
+ cv: 大森日雅
240
+ favorite_brand: little_princess_egg
241
+ memberOf: gogo_mascots
242
+ name: メルパン
243
+ name_kana: めるぱん
244
+ type: クール
245
+ _key: melpan
176
246
  - birthday: 6月9日
177
247
  blood_type: O型
178
248
  cv: 若井友希
179
249
  favorite_brand: romance_beat
180
250
  favorite_food: ステーキ
181
251
  height: 163
252
+ memberOf: meltic_star
182
253
  name: 緑川 さら
183
254
  name_kana: みどりかわ さら
255
+ performerIn: prichan_101_diamond_smile
184
256
  type: クール
185
257
  _key: midorikawa_sara
186
258
  - birthday: 8月11日
@@ -211,17 +283,23 @@
211
283
  favorite_brand: girls_yell
212
284
  favorite_food: ポップコーン
213
285
  height: 150
286
+ memberOf: miracle_kiratts
214
287
  name: 萌黄 えも
215
288
  name_kana: もえぎ えも
216
289
  performerIn: prichan_6_suki_suki_sensor
217
290
  type: ポップ
218
291
  _key: moegi_emo
292
+ - cv: 楠木ともり
293
+ name: 桃山 ひかり
294
+ name_kana: ももやま ひかり
295
+ _key: momoyama_hikari
219
296
  - birthday: 7月12日
220
297
  blood_type: B型
221
298
  cv: 林鼓子
222
299
  favorite_brand: sweet_honey
223
300
  favorite_food: ケーキ
224
301
  height: 150
302
+ memberOf: miracle_kiratts
225
303
  name: 桃山 みらい
226
304
  name_kana: ももやま みらい
227
305
  performerIn: prichan_5_one_two_sweets
@@ -233,30 +311,48 @@
233
311
  name: 鍋島 ちゃん子
234
312
  name_kana: なべしま ちゃんこ
235
313
  _key: nabesima_chanko
236
- - cv: 阿澄佳奈
314
+ - birthday: 9月3日
315
+ cv: 阿澄佳奈
316
+ memberOf: il_ange
237
317
  name: 七星 あいら
238
318
  name_kana: ななほし あいら
239
319
  _key: nanahoshi_aira
240
- - cv: 佐々木李子
320
+ - birthday: 4月22日
321
+ blood_type: A型
322
+ cv: 佐々木李子
241
323
  favorite_brand: milky_rainbow
324
+ favorite_food: ラムネ菓子
242
325
  name: 虹ノ咲 だいあ
243
326
  name_kana: にじのさき だいあ
244
- performerIn: prichan_100_memories_for_future
327
+ performerIn: prichan_102_memories_for_future
245
328
  type: ポップ
246
329
  _key: nijinosaki_daia
247
- - cv: 田中美海
330
+ - birthday: 2月13日
331
+ blood_type: A型
332
+ cv: 田中美海
333
+ favorite_food: パンナコッタ
248
334
  memberOf: triangle
249
335
  name: ぴのん
250
336
  name_kana: ぴのん
251
337
  performerIn: pripara_93_charisma_to_girl_yeah
252
338
  _key: pinon
339
+ - birthday: 3月3日
340
+ cv: 田中美海
341
+ favorite_brand: little_princess_egg
342
+ memberOf: gogo_mascots
343
+ name: ラビリィ
344
+ name_kana: らびりぃ
345
+ type: ポップ
346
+ _key: rabbily
253
347
  - birthday: 4月23日
254
348
  blood_type: AB型
255
349
  cv: 森嶋優花
256
350
  favorite_brand: universe_queen
257
351
  favorite_food: ドーナツ
352
+ memberOf: meltic_star
258
353
  name: 紫藤 める
259
354
  name_kana: しどう める
355
+ performerIn: prichan_101_diamond_smile
260
356
  type: クール
261
357
  _key: shidou_meru
262
358
  - birthday: 3月27日
@@ -286,8 +382,17 @@
286
382
  favorite_brand: precious_muse
287
383
  name: 白鳥 アンジュ
288
384
  name_kana: しらとり あんじゅ
385
+ performerIn: prichan_101_diamond_smile
289
386
  type: プレミアム
290
387
  _key: shiratori_anjyu
388
+ - birthday: 2月22日
389
+ cv: 斎賀みつき
390
+ favorite_brand: little_princess_egg
391
+ favorite_food: 目玉焼き
392
+ name: ソルル
393
+ name_kana: そるる
394
+ type: ナチュラル
395
+ _key: solulu
291
396
  - birthday: 2月9日
292
397
  blood_type: O型
293
398
  cv: 山下七海