faker-pretty_series 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.coveralls.yml +1 -0
- data/.github/workflows/test.yml +105 -0
- data/.gitignore +13 -0
- data/.rspec +3 -0
- data/CHANGELOG.md +5 -0
- data/Gemfile +13 -0
- data/LICENSE.txt +21 -0
- data/README.md +64 -0
- data/Rakefile +27 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/faker-pretty_series.gemspec +29 -0
- data/lib/data/characters.yml +319 -0
- data/lib/data/episodes.yml +3182 -0
- data/lib/data/songs.yml +657 -0
- data/lib/faker-pretty_series.rb +1 -0
- data/lib/faker/pretty_series.rb +13 -0
- data/lib/faker/pretty_series/character.rb +15 -0
- data/lib/faker/pretty_series/data_reader.rb +16 -0
- data/lib/faker/pretty_series/episode.rb +10 -0
- data/lib/faker/pretty_series/song.rb +10 -0
- data/lib/faker/pretty_series/version.rb +5 -0
- metadata +82 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 1bd002bc1d4fed77e67255ce1a82a94db23d7e49d6b55e2231045793fe0ee90f
|
4
|
+
data.tar.gz: 8f3599945801fb21c66ab49330cbd2ea10b3bc1059d88a4f1879d8495f6c6f7c
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 624217cffc94d7258f3fea1172ba71626e068a6f2ab092d87be0e51990350d4cd0c86bc925a9ac58bd76f15e49c924a12b533343ecd846d82a2f1b1d6bd64cb5
|
7
|
+
data.tar.gz: 5f7234c9ae04a2b7ce259c51fd6bb8f846d8b828c8cdc7ab8fef5d308e6c61d40f67fcef241e71ab5a6ee0da101783330adbe0c72d6f6f065f50d35cf5f1fc68
|
data/.coveralls.yml
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
repo_token: 0AO0vAbkda4nQp1Eir6dCRNnLRAPQu0fP
|
@@ -0,0 +1,105 @@
|
|
1
|
+
name: test
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches:
|
6
|
+
- master
|
7
|
+
pull_request:
|
8
|
+
types:
|
9
|
+
- opened
|
10
|
+
- synchronize
|
11
|
+
- reopened
|
12
|
+
schedule:
|
13
|
+
- cron: "0 10 * * 5" # JST 19:00 (Fri)
|
14
|
+
|
15
|
+
env:
|
16
|
+
CI: "true"
|
17
|
+
|
18
|
+
jobs:
|
19
|
+
test:
|
20
|
+
runs-on: ubuntu-latest
|
21
|
+
|
22
|
+
container: ${{ matrix.ruby }}
|
23
|
+
|
24
|
+
strategy:
|
25
|
+
fail-fast: false
|
26
|
+
|
27
|
+
matrix:
|
28
|
+
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"
|
36
|
+
|
37
|
+
steps:
|
38
|
+
- uses: actions/checkout@v2
|
39
|
+
- name: Cache vendor/bundle
|
40
|
+
uses: actions/cache@v1
|
41
|
+
id: cache_gem
|
42
|
+
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' }}
|
48
|
+
|
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' }}
|
55
|
+
|
56
|
+
- name: Setup Code Climate Test Reporter
|
57
|
+
uses: aktions/codeclimate-test-reporter@v1
|
58
|
+
with:
|
59
|
+
codeclimate-test-reporter-id: ${{ secrets.CC_TEST_REPORTER_ID }}
|
60
|
+
command: before-build
|
61
|
+
if: matrix.ruby >= 'ruby:2.4'
|
62
|
+
continue-on-error: true
|
63
|
+
|
64
|
+
- name: Run test
|
65
|
+
run: |
|
66
|
+
set -xe
|
67
|
+
bundle exec rspec
|
68
|
+
continue-on-error: ${{ matrix.allow_failures == 'true' }}
|
69
|
+
|
70
|
+
- name: Teardown Code Climate Test Reporter
|
71
|
+
uses: aktions/codeclimate-test-reporter@v1
|
72
|
+
with:
|
73
|
+
codeclimate-test-reporter-id: ${{ secrets.CC_TEST_REPORTER_ID }}
|
74
|
+
command: after-build
|
75
|
+
if: matrix.ruby >= 'ruby:2.4' && always()
|
76
|
+
continue-on-error: true
|
77
|
+
|
78
|
+
- name: Slack Notification (not success)
|
79
|
+
uses: homoluctus/slatify@master
|
80
|
+
if: "! success()"
|
81
|
+
continue-on-error: true
|
82
|
+
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 }}
|
88
|
+
|
89
|
+
notify:
|
90
|
+
needs:
|
91
|
+
- test
|
92
|
+
|
93
|
+
runs-on: ubuntu-latest
|
94
|
+
|
95
|
+
steps:
|
96
|
+
- name: Slack Notification (success)
|
97
|
+
uses: homoluctus/slatify@master
|
98
|
+
if: always()
|
99
|
+
continue-on-error: true
|
100
|
+
with:
|
101
|
+
job_name: '*build*'
|
102
|
+
type: ${{ job.status }}
|
103
|
+
icon_emoji: ":octocat:"
|
104
|
+
url: ${{ secrets.SLACK_WEBHOOK }}
|
105
|
+
token: ${{ secrets.GITHUB_TOKEN }}
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/CHANGELOG.md
ADDED
data/Gemfile
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
source "https://rubygems.org"
|
2
|
+
|
3
|
+
# Specify your gem's dependencies in faker-pretty_series.gemspec
|
4
|
+
gemspec
|
5
|
+
|
6
|
+
gem "coveralls"
|
7
|
+
gem "rake", "~> 12.0"
|
8
|
+
gem "rspec", "~> 3.0"
|
9
|
+
|
10
|
+
# Workaround for cc-test-reporter with SimpleCov 0.18.
|
11
|
+
# Stop upgrading SimpleCov until the following issue will be resolved.
|
12
|
+
# https://github.com/codeclimate/test-reporter/issues/418
|
13
|
+
gem "simplecov", "~> 0.10", "< 0.18"
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2020 sue445
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,64 @@
|
|
1
|
+
# Faker::PrettySeries
|
2
|
+
Test data generator using [PrettySeries](https://en.wikipedia.org/wiki/Pretty_Rhythm)
|
3
|
+
|
4
|
+
[![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
|
+
[![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)
|
6
|
+
[![Maintainability](https://api.codeclimate.com/v1/badges/1e61884ff835944a69d2/maintainability)](https://codeclimate.com/github/sue445/faker-pretty_series/maintainability)
|
7
|
+
|
8
|
+
## Installation
|
9
|
+
|
10
|
+
Add this line to your application's Gemfile:
|
11
|
+
|
12
|
+
```ruby
|
13
|
+
gem 'faker-pretty_series'
|
14
|
+
```
|
15
|
+
|
16
|
+
And then execute:
|
17
|
+
|
18
|
+
$ bundle install
|
19
|
+
|
20
|
+
Or install it yourself as:
|
21
|
+
|
22
|
+
$ gem install faker-pretty_series
|
23
|
+
|
24
|
+
## Usage
|
25
|
+
|
26
|
+
```ruby
|
27
|
+
require "faker-pretty_series"
|
28
|
+
|
29
|
+
Faker::PrettySeries::Character.name
|
30
|
+
# => "かのん"
|
31
|
+
|
32
|
+
Faker::PrettySeries::Character.cv
|
33
|
+
# => "佐々木李子"
|
34
|
+
|
35
|
+
Faker::PrettySeries::Episode.subtitle
|
36
|
+
# => "真夏のフェスでやってみた!"
|
37
|
+
|
38
|
+
Faker::PrettySeries::Song.name
|
39
|
+
# => "Neo Dimension Go!!"
|
40
|
+
```
|
41
|
+
|
42
|
+
## Example for [factory_bot](https://github.com/thoughtbot/factory_bot)
|
43
|
+
```ruby
|
44
|
+
FactoryBot.define do
|
45
|
+
factory :user do
|
46
|
+
name { Faker::PrettySeries::Character.name }
|
47
|
+
end
|
48
|
+
end
|
49
|
+
```
|
50
|
+
|
51
|
+
## Development
|
52
|
+
|
53
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
54
|
+
|
55
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
56
|
+
|
57
|
+
## Contributing
|
58
|
+
|
59
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/faker-pretty_series.
|
60
|
+
|
61
|
+
|
62
|
+
## License
|
63
|
+
|
64
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
2
|
+
require "rspec/core/rake_task"
|
3
|
+
|
4
|
+
RSpec::Core::RakeTask.new(:spec)
|
5
|
+
|
6
|
+
task :default => :spec
|
7
|
+
|
8
|
+
desc "Generate data"
|
9
|
+
task :generate_data do
|
10
|
+
require "prismdb"
|
11
|
+
require "yaml"
|
12
|
+
|
13
|
+
client = Prismdb::Client.new
|
14
|
+
|
15
|
+
save_file(client.get_characters, "characters")
|
16
|
+
save_file(client.get_episodes, "episodes")
|
17
|
+
save_file(client.get_songs, "songs")
|
18
|
+
end
|
19
|
+
|
20
|
+
def save_file(data, name)
|
21
|
+
data = data.map(&:to_hash)
|
22
|
+
filename = "#{__dir__}/lib/data/#{name}.yml"
|
23
|
+
File.open(filename, "wb") do |f|
|
24
|
+
f.write(data.to_yaml)
|
25
|
+
end
|
26
|
+
puts "Saved. #{filename}"
|
27
|
+
end
|
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "faker/pretty_series"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
require_relative 'lib/faker/pretty_series/version'
|
2
|
+
|
3
|
+
Gem::Specification.new do |spec|
|
4
|
+
spec.name = "faker-pretty_series"
|
5
|
+
spec.version = Faker::PrettySeries::VERSION
|
6
|
+
spec.authors = ["sue445"]
|
7
|
+
spec.email = ["sue445@sue445.net"]
|
8
|
+
|
9
|
+
spec.summary = %q{Test data generator using PrettySeries}
|
10
|
+
spec.description = %q{Test data generator using PrettySeries}
|
11
|
+
spec.homepage = "https://github.com/sue445/faker-pretty_series"
|
12
|
+
spec.license = "MIT"
|
13
|
+
spec.required_ruby_version = Gem::Requirement.new(">= 2.5.0")
|
14
|
+
|
15
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
16
|
+
spec.metadata["source_code_uri"] = "https://github.com/sue445/faker-pretty_series"
|
17
|
+
spec.metadata["changelog_uri"] = "https://github.com/sue445/faker-pretty_series/blob/master/CHANGELOG.md"
|
18
|
+
|
19
|
+
# Specify which files should be added to the gem when it is released.
|
20
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
21
|
+
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
22
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
23
|
+
end
|
24
|
+
spec.bindir = "exe"
|
25
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
26
|
+
spec.require_paths = ["lib"]
|
27
|
+
|
28
|
+
spec.add_dependency "prismdb"
|
29
|
+
end
|
@@ -0,0 +1,319 @@
|
|
1
|
+
---
|
2
|
+
- birthday: 7月6日
|
3
|
+
blood_type: O型
|
4
|
+
cv: 芹澤優
|
5
|
+
favorite_brand: dolly_waltz
|
6
|
+
favorite_food: 紅茶
|
7
|
+
height: 147
|
8
|
+
name: 赤城 あんな
|
9
|
+
name_kana: あかぎ あんな
|
10
|
+
type: ラブリー
|
11
|
+
_key: akagi_anna
|
12
|
+
- cv: 伊藤かな恵
|
13
|
+
name: 赤井 めが姉ぇ
|
14
|
+
name_kana: あかい めがねぇ
|
15
|
+
performerIn: pripara_79_virtual_idol
|
16
|
+
_key: akai_meganee
|
17
|
+
- birthday: 1月25日
|
18
|
+
blood_type: A型
|
19
|
+
cv: 厚木那奈美
|
20
|
+
favorite_brand: secret_alice
|
21
|
+
favorite_food: アップルパイ
|
22
|
+
height: 153
|
23
|
+
name: 青葉 りんか
|
24
|
+
name_kana: あおば りんか
|
25
|
+
performerIn: prichan_58_yumeiro_energy
|
26
|
+
type: クール
|
27
|
+
_key: aoba_rinka
|
28
|
+
- cv: 佐々木李子
|
29
|
+
favorite_brand: milky_rainbow
|
30
|
+
name: だいあ
|
31
|
+
name_kana: だいあ
|
32
|
+
type: ポップ
|
33
|
+
_key: daia
|
34
|
+
- birthday: 2月5日
|
35
|
+
blood_type: A型
|
36
|
+
charm: ポップ
|
37
|
+
cv: 澁谷梓希
|
38
|
+
favorite_brand: fortune_party
|
39
|
+
favorite_food: もんじゃ焼き
|
40
|
+
memberOf: solami_dressing_and_falulu
|
41
|
+
name: ドロシー・ウェスト
|
42
|
+
name_kana: どろしー うぇすと
|
43
|
+
_key: dorothy_west
|
44
|
+
- birthday: 3月21日
|
45
|
+
charm: ラブリー
|
46
|
+
cv: 赤﨑千夏
|
47
|
+
favorite_brand: marionette_mu
|
48
|
+
favorite_food: 牛乳
|
49
|
+
memberOf: tricolore
|
50
|
+
name: ファルル
|
51
|
+
name_kana: ふぁるる
|
52
|
+
performerIn: pripara_75_love_week_old
|
53
|
+
_key: falulu
|
54
|
+
- birthday: 4月17日
|
55
|
+
charm: ラブリー
|
56
|
+
cv: 真田アサミ
|
57
|
+
favorite_brand: marionette_mu
|
58
|
+
favorite_food: アーモンドクッキー
|
59
|
+
memberOf: garumageddon
|
60
|
+
name: ガァルル
|
61
|
+
name_kana: がぁるる
|
62
|
+
performerIn: pripara_83_love_week_old
|
63
|
+
_key: gaaruru
|
64
|
+
- birthday: 9月12日
|
65
|
+
blood_type: AB型
|
66
|
+
charm: クール/プレミアム
|
67
|
+
cv: 山本希望
|
68
|
+
favorite_brand: prismstone
|
69
|
+
favorite_food: 玉子
|
70
|
+
memberOf: ucchari_big_bangs
|
71
|
+
name: 北条 コスモ
|
72
|
+
name_kana: ほうじょう こすも
|
73
|
+
performerIn: pripara_81_kimi_100_percent_jinse
|
74
|
+
_key: hojo_cosmo
|
75
|
+
- birthday: 7月30日
|
76
|
+
blood_type: AB型
|
77
|
+
charm: クール
|
78
|
+
cv: 久保田未夢
|
79
|
+
favorite_brand: holic_trick
|
80
|
+
favorite_food: 梅干し
|
81
|
+
memberOf: solami_smile
|
82
|
+
name: 北条 そふぃ
|
83
|
+
name_kana: ほうじょう そふぃ
|
84
|
+
performerIn: pripara_97_taiyo_no_flare_serbet_sakura_shower_ver
|
85
|
+
_key: hojo_sophie
|
86
|
+
- cv: 豊崎愛生
|
87
|
+
name: ジャニス
|
88
|
+
name_kana: じゃにす
|
89
|
+
_key: janice
|
90
|
+
- cv: 上田麗奈
|
91
|
+
favorite_food: 綿菓子
|
92
|
+
name: ジュリィ
|
93
|
+
name_kana: じゅりぃ
|
94
|
+
performerIn: pripara_140_girls_fantasy
|
95
|
+
_key: jewlie
|
96
|
+
- cv: 田中美海
|
97
|
+
memberOf: triangle
|
98
|
+
name: じゅのん
|
99
|
+
name_kana: じゅのん
|
100
|
+
performerIn: pripara_92_charisma_to_girl_yeah
|
101
|
+
_key: junon
|
102
|
+
- birthday: 5月9日
|
103
|
+
cv: 茜屋日海夏
|
104
|
+
favorite_brand: cutie_happiness
|
105
|
+
favorite_food: アイスクリーム
|
106
|
+
name: 金森 まりあ
|
107
|
+
name_kana: かなもり まりあ
|
108
|
+
performerIn: prichan_57_shiawasei_kawaii_sanka
|
109
|
+
type: ラブリー
|
110
|
+
_key: kanamori_maria
|
111
|
+
- cv: 田中美海
|
112
|
+
memberOf: triangle
|
113
|
+
name: かのん
|
114
|
+
name_kana: かのん
|
115
|
+
performerIn: pripara_94_charisma_to_girl_yeah
|
116
|
+
_key: kanon
|
117
|
+
- birthday: 11月3日
|
118
|
+
blood_type: A型
|
119
|
+
charm: ポップ
|
120
|
+
cv: 上田麗奈
|
121
|
+
favorite_brand: candy_alamode_more
|
122
|
+
favorite_food: チキンライス
|
123
|
+
memberOf: ucchari_big_bangs
|
124
|
+
name: 黄木 あじみ
|
125
|
+
name_kana: きき あじみ
|
126
|
+
performerIn: pripara_72_panic_labyrinth
|
127
|
+
_key: kiki_ajimi
|
128
|
+
- birthday: 12月6日
|
129
|
+
cv: 徳井青空
|
130
|
+
favorite_brand: dance_and_street
|
131
|
+
favorite_food: モナカ
|
132
|
+
name: 黒川 すず
|
133
|
+
name_kana: くろかわ すず
|
134
|
+
type: クール
|
135
|
+
_key: kurokawa_suzu
|
136
|
+
- birthday: 6月6日
|
137
|
+
blood_type: A型
|
138
|
+
charm: クール
|
139
|
+
cv: 牧野由依
|
140
|
+
favorite_brand: love_devi
|
141
|
+
favorite_food: カレーうどん
|
142
|
+
memberOf: garumageddon
|
143
|
+
name: 黒須 あろま
|
144
|
+
name_kana: くろす あろま
|
145
|
+
_key: kurosu_aroma
|
146
|
+
- birthday: 2月5日
|
147
|
+
blood_type: A型
|
148
|
+
charm: ポップ
|
149
|
+
cv: 若井友希
|
150
|
+
favorite_brand: fortune_party
|
151
|
+
favorite_food: いちごパフェ
|
152
|
+
memberOf: solami_dressing_and_falulu
|
153
|
+
name: レオナ・ウェスト
|
154
|
+
name_kana: れおな うぇすと
|
155
|
+
_key: leona_west
|
156
|
+
- birthday: 11月20日
|
157
|
+
blood_type: O型
|
158
|
+
charm: ラブリー
|
159
|
+
cv: 茜屋日海夏
|
160
|
+
favorite_brand: twinkle_ribbon
|
161
|
+
favorite_food: 駄菓子
|
162
|
+
memberOf: solami_smile
|
163
|
+
name: 真中 らぁら
|
164
|
+
name_kana: まなか らぁら
|
165
|
+
performerIn: pripara_50_dream_parade
|
166
|
+
_key: manaka_laala
|
167
|
+
- birthday: 9月6日
|
168
|
+
blood_type: A型
|
169
|
+
cv: 田中美海
|
170
|
+
favorite_brand: twinkle_ribbon_sweet
|
171
|
+
favorite_food: パスタ
|
172
|
+
memberOf: non_sugar
|
173
|
+
name: 真中 のん
|
174
|
+
name_kana: まなか のん
|
175
|
+
_key: manaka_non
|
176
|
+
- birthday: 6月9日
|
177
|
+
blood_type: O型
|
178
|
+
cv: 若井友希
|
179
|
+
favorite_brand: romance_beat
|
180
|
+
favorite_food: ステーキ
|
181
|
+
height: 163
|
182
|
+
name: 緑川 さら
|
183
|
+
name_kana: みどりかわ さら
|
184
|
+
type: クール
|
185
|
+
_key: midorikawa_sara
|
186
|
+
- birthday: 8月11日
|
187
|
+
blood_type: O型
|
188
|
+
charm: ナチュラル
|
189
|
+
cv: 佐藤あずさ
|
190
|
+
favorite_brand: coco_flower
|
191
|
+
favorite_food: お寿司
|
192
|
+
memberOf: tricolore
|
193
|
+
name: 緑風 ふわり
|
194
|
+
name_kana: みどりかぜ ふわり
|
195
|
+
performerIn: pripara_59_konouta_tomareihi
|
196
|
+
_key: midorikaze_fuwari
|
197
|
+
- birthday: 10月1日
|
198
|
+
blood_type: A型
|
199
|
+
charm: ポップ
|
200
|
+
cv: 芹澤優
|
201
|
+
favorite_brand: candy_alamode
|
202
|
+
favorite_food: スイーツ全般
|
203
|
+
memberOf: solami_smile
|
204
|
+
name: 南 みれぃ
|
205
|
+
name_kana: みなみ みれぃ
|
206
|
+
performerIn: pripara_84_pritto_perfect
|
207
|
+
_key: minami_mirei
|
208
|
+
- birthday: 9月9日
|
209
|
+
blood_type: O型
|
210
|
+
cv: 久保田未夢
|
211
|
+
favorite_brand: girls_yell
|
212
|
+
favorite_food: ポップコーン
|
213
|
+
height: 150
|
214
|
+
name: 萌黄 えも
|
215
|
+
name_kana: もえぎ えも
|
216
|
+
performerIn: prichan_6_suki_suki_sensor
|
217
|
+
type: ポップ
|
218
|
+
_key: moegi_emo
|
219
|
+
- birthday: 7月12日
|
220
|
+
blood_type: B型
|
221
|
+
cv: 林鼓子
|
222
|
+
favorite_brand: sweet_honey
|
223
|
+
favorite_food: ケーキ
|
224
|
+
height: 150
|
225
|
+
name: 桃山 みらい
|
226
|
+
name_kana: ももやま みらい
|
227
|
+
performerIn: prichan_5_one_two_sweets
|
228
|
+
type: ラブリー
|
229
|
+
_key: momoyama_mirai
|
230
|
+
- charm: クール
|
231
|
+
cv: 赤﨑千夏
|
232
|
+
memberOf: ucchari_big_bangs
|
233
|
+
name: 鍋島 ちゃん子
|
234
|
+
name_kana: なべしま ちゃんこ
|
235
|
+
_key: nabesima_chanko
|
236
|
+
- cv: 阿澄佳奈
|
237
|
+
name: 七星 あいら
|
238
|
+
name_kana: ななほし あいら
|
239
|
+
_key: nanahoshi_aira
|
240
|
+
- cv: 佐々木李子
|
241
|
+
favorite_brand: milky_rainbow
|
242
|
+
name: 虹ノ咲 だいあ
|
243
|
+
name_kana: にじのさき だいあ
|
244
|
+
performerIn: prichan_100_memories_for_future
|
245
|
+
type: ポップ
|
246
|
+
_key: nijinosaki_daia
|
247
|
+
- cv: 田中美海
|
248
|
+
memberOf: triangle
|
249
|
+
name: ぴのん
|
250
|
+
name_kana: ぴのん
|
251
|
+
performerIn: pripara_93_charisma_to_girl_yeah
|
252
|
+
_key: pinon
|
253
|
+
- birthday: 4月23日
|
254
|
+
blood_type: AB型
|
255
|
+
cv: 森嶋優花
|
256
|
+
favorite_brand: universe_queen
|
257
|
+
favorite_food: ドーナツ
|
258
|
+
name: 紫藤 める
|
259
|
+
name_kana: しどう める
|
260
|
+
type: クール
|
261
|
+
_key: shidou_meru
|
262
|
+
- birthday: 3月27日
|
263
|
+
blood_type: B型
|
264
|
+
charm: セレブ
|
265
|
+
cv: 斎賀みつき
|
266
|
+
favorite_brand: brilliant_prince
|
267
|
+
favorite_food: ガトーショコラ
|
268
|
+
memberOf: tricolore
|
269
|
+
name: 紫京院 ひびき
|
270
|
+
name_kana: しきょういん ひびき
|
271
|
+
performerIn: pripara_74_jun_amore_ai
|
272
|
+
_key: shikyoin_hibiki
|
273
|
+
- birthday: 10月4日
|
274
|
+
blood_type: B型
|
275
|
+
charm: ラブリー
|
276
|
+
cv: 渡部優衣
|
277
|
+
favorite_brand: silky_heart
|
278
|
+
favorite_food: 中華まん
|
279
|
+
memberOf: pripara_police
|
280
|
+
name: 白玉 みかん
|
281
|
+
name_kana: しらたま みかん
|
282
|
+
_key: shiratama_mikan
|
283
|
+
- birthday: 11月11日
|
284
|
+
blood_type: A型
|
285
|
+
cv: 三森すずこ
|
286
|
+
favorite_brand: precious_muse
|
287
|
+
name: 白鳥 アンジュ
|
288
|
+
name_kana: しらとり あんじゅ
|
289
|
+
type: プレミアム
|
290
|
+
_key: shiratori_anjyu
|
291
|
+
- birthday: 2月9日
|
292
|
+
blood_type: O型
|
293
|
+
cv: 山下七海
|
294
|
+
favorite_brand: sunny_zoo
|
295
|
+
favorite_food: 焼肉
|
296
|
+
memberOf: non_sugar
|
297
|
+
name: 太陽 ペッパー
|
298
|
+
name_kana: たいよう ぺっぱー
|
299
|
+
_key: taiyo_pepper
|
300
|
+
- birthday: 1月5日
|
301
|
+
blood_type: B型
|
302
|
+
charm: クール
|
303
|
+
cv: 山北早紀
|
304
|
+
favorite_brand: baby_monster
|
305
|
+
favorite_food: 大福
|
306
|
+
memberOf: solami_dressing_and_falulu
|
307
|
+
name: 東堂 シオン
|
308
|
+
name_kana: とうどう しおん
|
309
|
+
performerIn: pripara_90_zettai_seimei_final_show_jo
|
310
|
+
_key: todo_shion
|
311
|
+
- birthday: 11月15日
|
312
|
+
blood_type: AB型
|
313
|
+
cv: 大森日雅
|
314
|
+
favorite_brand: dear_crown
|
315
|
+
favorite_food: 栗きんとん
|
316
|
+
memberOf: non_sugar
|
317
|
+
name: 月川 ちり
|
318
|
+
name_kana: つきかわ ちり
|
319
|
+
_key: tsukikawa_chiri
|