rubicure 0.2.6 → 0.2.7
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 +4 -4
- data/.travis.yml +1 -0
- data/CHANGELOG.md +9 -1
- data/README.md +17 -14
- data/config/girls/001_unmarked.yml +2 -0
- data/config/girls/002_max_heart.yml +1 -0
- data/config/girls/003_splash_star.yml +2 -0
- data/config/girls/004_yes.yml +5 -0
- data/config/girls/005_yes_gogo.yml +1 -0
- data/config/girls/006_fresh.yml +4 -0
- data/config/girls/007_heart_catch.yml +4 -0
- data/config/girls/008_suite.yml +4 -0
- data/config/girls/009_smile.yml +5 -0
- data/config/girls/010_dokidoki.yml +5 -0
- data/config/girls/011_happiness_charge.yml +4 -0
- data/config/girls/012_go_princess.yml +4 -0
- data/config/series.yml +13 -1
- data/lib/rubicure/version.rb +1 -1
- data/spec/girl_spec.rb +3 -0
- data/spec/series_spec.rb +1 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 63feed9490ed2fefb22e2389fb87a7678b9670ca
|
|
4
|
+
data.tar.gz: 6d95f7ce7a2a98fdc466472fe777a8083949cf3e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a4a94aa5534a4d17780848163aff8cab3e06960340ceff7566b77a5cd6771f64501fe4bf57e99b9128ea12875424a35561ea6a1d134289bb06ccc3245bee614b
|
|
7
|
+
data.tar.gz: de25bb71f2b80b4030f00f73ee21b9aa73957d077ee83a92c56d7d0bd122e9e0f4d355a5f0396864e4f6fe944ed5c6401980a2fcb75738769cea8538d9c97142
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
## master
|
|
2
|
-
[full changelog](http://github.com/sue445/rubicure/compare/v0.2.
|
|
2
|
+
[full changelog](http://github.com/sue445/rubicure/compare/v0.2.7...master)
|
|
3
|
+
|
|
4
|
+
## v0.2.7
|
|
5
|
+
[full changelog](http://github.com/sue445/rubicure/compare/v0.2.6...v0.2.7)
|
|
6
|
+
|
|
7
|
+
* Modify from "Splash Star" to "Splash☆Star"
|
|
8
|
+
* https://github.com/sue445/rubicure/pull/81
|
|
9
|
+
* Add own uniq name
|
|
10
|
+
* https://github.com/sue445/rubicure/pull/82
|
|
3
11
|
|
|
4
12
|
## v0.2.6
|
|
5
13
|
[full changelog](http://github.com/sue445/rubicure/compare/v0.2.5...v0.2.6)
|
data/README.md
CHANGED
|
@@ -82,7 +82,7 @@ Precure.happiness_charge.title
|
|
|
82
82
|
#=> "ハピネスチャージプリキュア!"
|
|
83
83
|
|
|
84
84
|
Precure.dokidoki
|
|
85
|
-
#=> {:title=>"ドキドキ!プリキュア", :started_date=>Sun, 03 Feb 2013, :ended_date=>Sun, 26 Jan 2014, :girls=>["cure_heart", "cure_diamond", "cure_rosetta", "cure_sword", "cure_ace"]}
|
|
85
|
+
#=> {:series_name=>"dokidoki", :title=>"ドキドキ!プリキュア", :started_date=>Sun, 03 Feb 2013, :ended_date=>Sun, 26 Jan 2014, :girls=>["cure_heart", "cure_diamond", "cure_rosetta", "cure_sword", "cure_ace"]}
|
|
86
86
|
```
|
|
87
87
|
|
|
88
88
|
other pattern
|
|
@@ -99,10 +99,10 @@ and [more aliases!](config/series.yml)
|
|
|
99
99
|
|
|
100
100
|
```ruby
|
|
101
101
|
Precure.now
|
|
102
|
-
#=> {:
|
|
102
|
+
#=> {:series_name=>"go_princess", :title=>"Go!プリンセスプリキュア", :started_date=>Sun, 01 Feb 2015, :girls=>["cure_flora", "cure_mermaid", "cure_twinkle", "cure_scarlett"]}
|
|
103
103
|
|
|
104
104
|
Precure.current
|
|
105
|
-
#=> {:
|
|
105
|
+
#=> {:series_name=>"go_princess", :title=>"Go!プリンセスプリキュア", :started_date=>Sun, 01 Feb 2015, :girls=>["cure_flora", "cure_mermaid", "cure_twinkle", "cure_scarlett"]}
|
|
106
106
|
|
|
107
107
|
# -2013/1/27 : smile precure
|
|
108
108
|
# 2013/2/5 - : dokidoki precure
|
|
@@ -124,8 +124,11 @@ Precure.smile.on_air?("2013-12-16")
|
|
|
124
124
|
|
|
125
125
|
### Rubicure::Series#girls
|
|
126
126
|
```ruby
|
|
127
|
-
Precure.smile.girls
|
|
128
|
-
#=>
|
|
127
|
+
Precure.smile.girls.count
|
|
128
|
+
#=> 5
|
|
129
|
+
|
|
130
|
+
Precure.smile.girls.first
|
|
131
|
+
#=> {:girl_name=>"cure_happy", :human_name=>"星空みゆき", :precure_name=>"キュアハッピー", :cast_name=>"福圓美里", :created_date=>Sun, 05 Feb 2012, :color=>"pink", :transform_message=>"(レディ?)\nプリキュア・スマイルチャージ!\n(ゴー!ゴー!レッツ・ゴー!ハッピー!!)\nキラキラ輝く未来の光! キュアハッピー!\n5つの光が導く未来!\n輝け!スマイルプリキュア!", :extra_names=>["プリンセスハッピー", "ウルトラハッピー"], :attack_messages=>["プリキュア!ハッピーシャワー!!", "開け、ロイヤルクロック!\n(みんなの力を1つにするクル!)\n届け、希望の光!\nはばたけ!光り輝く未来へ!\nプリキュア!ロイヤルレインボーバースト!", "(みんなの力を1つにするクル!)\nプリキュア!ミラクルレインボーバースト!\n輝けー!!\nスマイルプリキュア!!"], :transform_calls=>["smile_charge"]}
|
|
129
132
|
|
|
130
133
|
Precure.smile.girls.map(&:human_name)
|
|
131
134
|
#=> ["星空みゆき", "日野あかね", "黄瀬やよい", "緑川なお", "青木れいか"]
|
|
@@ -140,31 +143,31 @@ Precure.smile.girls.count
|
|
|
140
143
|
### Select own precure girl
|
|
141
144
|
```ruby
|
|
142
145
|
Cure.lemonade
|
|
143
|
-
#=> {:human_name=>"春日野うらら", :precure_name=>"キュアレモネード", :created_date=>Sun, 18 Feb 2007, :transform_message=>"プリキュア!メタモルフォーゼ!\nはじけるレモンの香り、キュアレモネード!\n希望の力と未来の光!\n華麗に羽ばたく5つの心!\nYes!プリキュア5!", :extra_names=>nil, :attack_messages=>["輝く乙女のはじける力、受けてみなさい!\nプリキュア!プリズム・チェーン!"], :transform_calls=>["metamorphose"]}
|
|
146
|
+
#=> {:girl_name=>"cure_lemonade", :human_name=>"春日野うらら", :precure_name=>"キュアレモネード", :cast_name=>"伊瀬茉莉也", :created_date=>Sun, 18 Feb 2007, :color=>"yellow", :transform_message=>"プリキュア!メタモルフォーゼ!\nはじけるレモンの香り、キュアレモネード!\n希望の力と未来の光!\n華麗に羽ばたく5つの心!\nYes!プリキュア5!", :extra_names=>nil, :attack_messages=>["輝く乙女のはじける力、受けてみなさい!\nプリキュア!プリズム・チェーン!"], :transform_calls=>["metamorphose"]}
|
|
144
147
|
|
|
145
148
|
Cure.pine
|
|
146
|
-
#=> {:human_name=>"山吹祈里", :precure_name=>"キュアパイン", :created_date=>Sun, 15 Feb 2009, :transform_message=>"チェインジ!プリキュア・ビートアップ!\nイエローハートは祈りのしるし!\nとれたてフレッシュ、キュアパイン!\nレッツプリキュア!", :extra_names=>["キュアエンジェルパイン"], :attack_messages=>["悪いの悪いの飛んでいけ!\nプリキュア!ヒーリングプレアーフレッシュ!"], :transform_calls=>["change_precure_beat_up", "change", "beat_up"]}
|
|
149
|
+
#=> {:girl_name=>"cure_pine", :human_name=>"山吹祈里", :precure_name=>"キュアパイン", :cast_name=>"中川亜紀子", :created_date=>Sun, 15 Feb 2009, :color=>"yellow", :transform_message=>"チェインジ!プリキュア・ビートアップ!\nイエローハートは祈りのしるし!\nとれたてフレッシュ、キュアパイン!\nレッツプリキュア!", :extra_names=>["キュアエンジェルパイン"], :attack_messages=>["悪いの悪いの飛んでいけ!\nプリキュア!ヒーリングプレアーフレッシュ!"], :transform_calls=>["change_precure_beat_up", "change", "beat_up"]}
|
|
147
150
|
|
|
148
151
|
Cure.sunshine
|
|
149
|
-
#=> {:human_name=>"明堂院いつき", :precure_name=>"キュアサンシャイン", :created_date=>Sun, 18 Jul 2010, :transform_message=>"(プリキュアの種、いくですぅ!)\nプリキュア!オープンマイハート!\n陽の光浴びる一輪の花! キュアサンシャイン!\nハートキャッチ、プリキュア!", :extra_names=>["スーパーキュアサンシャイン"], :attack_messages=>["花よ、舞い踊れ!\nプリキュア!ゴールドフォルテバースト!!", "花よ、咲き誇れ!\nプリキュア・ハートキャッチ・オーケストラ!!"], :transform_calls=>["open_my_heart"]}
|
|
152
|
+
#=> {:girl_name=>"cure_sunshine", :human_name=>"明堂院いつき", :precure_name=>"キュアサンシャイン", :cast_name=>"桑島法子", :created_date=>Sun, 18 Jul 2010, :color=>"yellow", :transform_message=>"(プリキュアの種、いくですぅ!)\nプリキュア!オープンマイハート!\n陽の光浴びる一輪の花! キュアサンシャイン!\nハートキャッチ、プリキュア!", :extra_names=>["スーパーキュアサンシャイン"], :attack_messages=>["花よ、舞い踊れ!\nプリキュア!ゴールドフォルテバースト!!", "花よ、咲き誇れ!\nプリキュア・ハートキャッチ・オーケストラ!!"], :transform_calls=>["open_my_heart"]}
|
|
150
153
|
|
|
151
154
|
Cure.muse
|
|
152
|
-
#=> {:human_name=>"調辺アコ", :precure_name=>"キュアミューズ", :created_date=>Sun, 16 Oct 2011, :transform_message=>"レッツプレイ!プリキュアモジュレーション!!\n爪弾くは女神の調べ! キュアミューズ!\n届け4人の組曲!スイートプリキュア!", :extra_names=>["クレッシェンドミューズ"], :attack_messages=>["おいで、シリー!\nシの音符の、シャイニングメロディ!\nプリキュア!スパーリングシャワー!!\n三拍子!1、2、3\nフィナーレ!", "届けましょう、希望のシンフォニー!\nプリキュア!スイートセッションアンサンブル!\nクレッシェンド!!\nフィナーレ!"], :transform_calls=>["lets_play_precure_modulation", "lets_play", "modulation"]}
|
|
155
|
+
#=> {:girl_name=>"cure_muse", :human_name=>"調辺アコ", :precure_name=>"キュアミューズ", :cast_name=>"大久保瑠美", :created_date=>Sun, 16 Oct 2011, :color=>"yellow", :transform_message=>"レッツプレイ!プリキュアモジュレーション!!\n爪弾くは女神の調べ! キュアミューズ!\n届け4人の組曲!スイートプリキュア!", :extra_names=>["クレッシェンドミューズ"], :attack_messages=>["おいで、シリー!\nシの音符の、シャイニングメロディ!\nプリキュア!スパーリングシャワー!!\n三拍子!1、2、3\nフィナーレ!", "届けましょう、希望のシンフォニー!\nプリキュア!スイートセッションアンサンブル!\nクレッシェンド!!\nフィナーレ!"], :transform_calls=>["lets_play_precure_modulation", "lets_play", "modulation"]}
|
|
153
156
|
|
|
154
157
|
Cure.peace
|
|
155
|
-
#=> {:human_name=>"黄瀬やよい", :precure_name=>"キュアピース", :created_date=>Sun, 19 Feb 2012, :transform_message=>"(レディ?)\nプリキュア・スマイルチャージ!\n(ゴー!ゴー!レッツ・ゴー!ピース!!)\nピカピカピカリンジャンケンポン! キュアピース!\n5つの光が導く未来!\n輝け!スマイルプリキュア!", :extra_names=>["プリンセスピース", "ウルトラピース"], :attack_messages=>["プリキュア!ピースサンダー!!", "開け、ロイヤルクロック!\n(みんなの力を1つにするクル!)\n届け、希望の光!\nはばたけ!光り輝く未来へ!\nプリキュア!ロイヤルレインボーバースト!", "(みんなの力を1つにするクル!)\nプリキュア!ミラクルレインボーバースト!\n輝けー!!\nスマイルプリキュア!!"], :transform_calls=>["smile_charge"]}
|
|
158
|
+
#=> {:girl_name=>"cure_peace", :human_name=>"黄瀬やよい", :precure_name=>"キュアピース", :cast_name=>"金元寿子", :created_date=>Sun, 19 Feb 2012, :color=>"yellow", :transform_message=>"(レディ?)\nプリキュア・スマイルチャージ!\n(ゴー!ゴー!レッツ・ゴー!ピース!!)\nピカピカピカリンジャンケンポン! キュアピース!\n5つの光が導く未来!\n輝け!スマイルプリキュア!", :extra_names=>["プリンセスピース", "ウルトラピース"], :attack_messages=>["プリキュア!ピースサンダー!!", "開け、ロイヤルクロック!\n(みんなの力を1つにするクル!)\n届け、希望の光!\nはばたけ!光り輝く未来へ!\nプリキュア!ロイヤルレインボーバースト!", "(みんなの力を1つにするクル!)\nプリキュア!ミラクルレインボーバースト!\n輝けー!!\nスマイルプリキュア!!"], :transform_calls=>["smile_charge"]}
|
|
156
159
|
|
|
157
160
|
Cure.rosetta
|
|
158
|
-
#=> {:human_name=>"四葉ありす", :precure_name=>"キュアロゼッタ", :created_date=>Sun, 24 Feb 2013, :transform_message=>"プリキュアラブリンク!\nL! O! V! E!\nひだまりポカポカ キュアロゼッタ!\n響け愛の鼓動!ドキドキプリキュア!\n世界を制するのは愛だけです、\nさぁ、あなたも私と愛を育んでくださいな", :extra_names=>nil, :attack_messages=>["カッチカチの!ロゼッタウォール!\n"], :transform_calls=>["love_link"]}
|
|
161
|
+
#=> {:girl_name=>"cure_rosetta", :human_name=>"四葉ありす", :precure_name=>"キュアロゼッタ", :cast_name=>"渕上舞", :created_date=>Sun, 24 Feb 2013, :color=>"yellow", :transform_message=>"プリキュアラブリンク!\nL! O! V! E!\nひだまりポカポカ キュアロゼッタ!\n響け愛の鼓動!ドキドキプリキュア!\n世界を制するのは愛だけです、\nさぁ、あなたも私と愛を育んでくださいな", :extra_names=>nil, :attack_messages=>["カッチカチの!ロゼッタウォール!\n"], :transform_calls=>["love_link"]}
|
|
159
162
|
|
|
160
163
|
Cure.honey
|
|
161
|
-
#=> {:human_name=>"大森ゆうこ", :precure_name=>"キュアハニー", :created_date=>Sat, 15 Mar 2014, :transform_message=>"(かわルンルン!)\nプリキュアくるりんミラーチェンジ!\n大地に実る命の光!キュアハニー!\nハピネス注入!幸せチャージ!\nハピネスチャージプリキュア!", :extra_names=>["キュアハニー ポップコーンチア"], :attack_messages=>["命の光を聖なる力へ!\nハニーバトン!\nプリキュア!スパークリングバトンアタック!!\nイエイ!\n命よ、天に帰れ!\n(ゴクラ〜ク…)\n", "(かわルンルン!)\nプリキュアくるりんミラーチェンジ!ポップコーンチア!!\nプリキュア!リボンハートエクスプロージョン!!\nビクトリー!!\n", "(かわルンルン!)\nプリキュアくるりんミラーチェンジ!ココナッツサンバ!!\nプリキュア!マラカスリズムスパーク!!\nマンボ!!\n"], :transform_calls=>["kururin_mirror_change"]}
|
|
164
|
+
#=> {:girl_name=>"cure_honey", :human_name=>"大森ゆうこ", :precure_name=>"キュアハニー", :cast_name=>"北川里奈", :created_date=>Sat, 15 Mar 2014, :color=>"yellow", :transform_message=>"(かわルンルン!)\nプリキュアくるりんミラーチェンジ!\n大地に実る命の光!キュアハニー!\nハピネス注入!幸せチャージ!\nハピネスチャージプリキュア!", :extra_names=>["キュアハニー ポップコーンチア"], :attack_messages=>["命の光を聖なる力へ!\nハニーバトン!\nプリキュア!スパークリングバトンアタック!!\nイエイ!\n命よ、天に帰れ!\n(ゴクラ〜ク…)\n", "(かわルンルン!)\nプリキュアくるりんミラーチェンジ!ポップコーンチア!!\nプリキュア!リボンハートエクスプロージョン!!\nビクトリー!!\n", "(かわルンルン!)\nプリキュアくるりんミラーチェンジ!ココナッツサンバ!!\nプリキュア!マラカスリズムスパーク!!\nマンボ!!\n"], :transform_calls=>["kururin_mirror_change"]}
|
|
162
165
|
|
|
163
166
|
Shiny.luminous
|
|
164
|
-
#=> {:human_name=>"九条ひかり", :precure_name=>"シャイニールミナス", :created_date=>Sun, 06 Mar 2005, :transform_message=>"ルミナス・シャイニングストリーム!\n輝く命、シャイニールミナス!\n光の心と光の意志、すべてを一つにするために!", :extra_names=>nil, :attack_messages=>["光の意志よ!私に勇気を!希望と力を!!\nルミナス・ハーティエル・アンクション!"], :transform_calls=>["shining_stream"]}
|
|
167
|
+
#=> {:girl_name=>"shiny_luminous", :human_name=>"九条ひかり", :precure_name=>"シャイニールミナス", :cast_name=>"田中理恵", :created_date=>Sun, 06 Mar 2005, :color=>"yellow", :transform_message=>"ルミナス・シャイニングストリーム!\n輝く命、シャイニールミナス!\n光の心と光の意志、すべてを一つにするために!", :extra_names=>nil, :attack_messages=>["光の意志よ!私に勇気を!希望と力を!!\nルミナス・ハーティエル・アンクション!"], :transform_calls=>["shining_stream"]}
|
|
165
168
|
|
|
166
169
|
Milky.rose
|
|
167
|
-
#=> {:human_name=>"美々野くるみ", :precure_name=>"ミルキィローズ", :created_date=>Sun, 06 Apr 2008, :transform_message=>"スカイローズ・トランスレイト!\n青いバラは秘密のしるし! ミルキィローズ!", :extra_names=>nil, :attack_messages=>["邪悪な力を包み込む\nバラの吹雪を咲かせましょう!\nミルキィローズ・ブリザード!"], :transform_calls=>["sky_rose_translate", "translate"]}
|
|
170
|
+
#=> {:girl_name=>"milky_rose", :human_name=>"美々野くるみ", :precure_name=>"ミルキィローズ", :cast_name=>"仙台エリ", :created_date=>Sun, 06 Apr 2008, :color=>"purple", :transform_message=>"スカイローズ・トランスレイト!\n青いバラは秘密のしるし! ミルキィローズ!", :extra_names=>nil, :attack_messages=>["邪悪な力を包み込む\nバラの吹雪を咲かせましょう!\nミルキィローズ・ブリザード!"], :transform_calls=>["sky_rose_translate", "translate"]}
|
|
168
171
|
```
|
|
169
172
|
|
|
170
173
|
and [more aliases!](config/girls/)
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
cure_black: &cure_black
|
|
2
|
+
girl_name: cure_black
|
|
2
3
|
human_name: 美墨なぎさ
|
|
3
4
|
precure_name: キュアブラック
|
|
4
5
|
cast_name: 本名陽子
|
|
@@ -22,6 +23,7 @@ cure_black: &cure_black
|
|
|
22
23
|
transform_calls:
|
|
23
24
|
- dual_aurora_wave
|
|
24
25
|
cure_white: &cure_white
|
|
26
|
+
girl_name: cure_white
|
|
25
27
|
human_name: 雪城ほのか
|
|
26
28
|
precure_name: キュアホワイト
|
|
27
29
|
cast_name: ゆかな
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
cure_bloom: &cure_bloom
|
|
2
|
+
girl_name: cure_bloom
|
|
2
3
|
human_name: 日向咲
|
|
3
4
|
precure_name: キュアブルーム
|
|
4
5
|
cast_name: 樹元オリエ
|
|
@@ -21,6 +22,7 @@ cure_bloom: &cure_bloom
|
|
|
21
22
|
transform_calls:
|
|
22
23
|
- dual_spiritual_power
|
|
23
24
|
cure_egret: &cure_egret
|
|
25
|
+
girl_name: cure_egret
|
|
24
26
|
human_name: 美翔舞
|
|
25
27
|
precure_name: キュアイーグレット
|
|
26
28
|
cast_name: 榎本温子
|
data/config/girls/004_yes.yml
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
cure_dream: &cure_dream
|
|
2
|
+
girl_name: cure_dream
|
|
2
3
|
human_name: 夢原のぞみ
|
|
3
4
|
precure_name: キュアドリーム
|
|
4
5
|
cast_name: 三瓶由布子
|
|
@@ -18,6 +19,7 @@ cure_dream: &cure_dream
|
|
|
18
19
|
transform_calls:
|
|
19
20
|
- metamorphose
|
|
20
21
|
cure_rouge: &cure_rouge
|
|
22
|
+
girl_name: cure_rouge
|
|
21
23
|
human_name: 夏木りん
|
|
22
24
|
precure_name: キュアルージュ
|
|
23
25
|
cast_name: 竹内順子
|
|
@@ -35,6 +37,7 @@ cure_rouge: &cure_rouge
|
|
|
35
37
|
純情乙女の炎の力、受けてみなさい!
|
|
36
38
|
プリキュア!ファイヤー・ストライク!
|
|
37
39
|
cure_lemonade: &cure_lemonade
|
|
40
|
+
girl_name: cure_lemonade
|
|
38
41
|
human_name: 春日野うらら
|
|
39
42
|
precure_name: キュアレモネード
|
|
40
43
|
cast_name: 伊瀬茉莉也
|
|
@@ -54,6 +57,7 @@ cure_lemonade: &cure_lemonade
|
|
|
54
57
|
transform_calls:
|
|
55
58
|
- metamorphose
|
|
56
59
|
cure_mint: &cure_mint
|
|
60
|
+
girl_name: cure_mint
|
|
57
61
|
human_name: 秋元こまち
|
|
58
62
|
precure_name: キュアミント
|
|
59
63
|
cast_name: 永野愛
|
|
@@ -73,6 +77,7 @@ cure_mint: &cure_mint
|
|
|
73
77
|
transform_calls:
|
|
74
78
|
- metamorphose
|
|
75
79
|
cure_aqua: &cure_aqua
|
|
80
|
+
girl_name: cure_aqua
|
|
76
81
|
human_name: 水無月かれん
|
|
77
82
|
precure_name: キュアアクア
|
|
78
83
|
cast_name: 前田愛
|
data/config/girls/006_fresh.yml
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
cure_peach: &cure_peach
|
|
2
|
+
girl_name: cure_peach
|
|
2
3
|
human_name: 桃園ラブ
|
|
3
4
|
precure_name: キュアピーチ
|
|
4
5
|
cast_name: 沖佳苗
|
|
@@ -20,6 +21,7 @@ cure_peach: &cure_peach
|
|
|
20
21
|
- change
|
|
21
22
|
- beat_up
|
|
22
23
|
cure_berry: &cure_berry
|
|
24
|
+
girl_name: cure_berry
|
|
23
25
|
human_name: 蒼乃美希
|
|
24
26
|
precure_name: キュアベリー
|
|
25
27
|
cast_name: 喜多村英梨
|
|
@@ -41,6 +43,7 @@ cure_berry: &cure_berry
|
|
|
41
43
|
- change
|
|
42
44
|
- beat_up
|
|
43
45
|
cure_pine: &cure_pine
|
|
46
|
+
girl_name: cure_pine
|
|
44
47
|
human_name: 山吹祈里
|
|
45
48
|
precure_name: キュアパイン
|
|
46
49
|
cast_name: 中川亜紀子
|
|
@@ -62,6 +65,7 @@ cure_pine: &cure_pine
|
|
|
62
65
|
- change
|
|
63
66
|
- beat_up
|
|
64
67
|
cure_passion: &cure_passion
|
|
68
|
+
girl_name: cure_passion
|
|
65
69
|
human_name: 東せつな
|
|
66
70
|
precure_name: キュアパッション
|
|
67
71
|
cast_name: 小松由佳
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
cure_blossom: &cure_blossom
|
|
2
|
+
girl_name: cure_blossom
|
|
2
3
|
human_name: 花咲つぼみ
|
|
3
4
|
precure_name: キュアブロッサム
|
|
4
5
|
cast_name: 水樹奈々
|
|
@@ -21,6 +22,7 @@ cure_blossom: &cure_blossom
|
|
|
21
22
|
transform_calls:
|
|
22
23
|
- open_my_heart
|
|
23
24
|
cure_marine: &cure_marine
|
|
25
|
+
girl_name: cure_marine
|
|
24
26
|
human_name: 来海えりか
|
|
25
27
|
precure_name: キュアマリン
|
|
26
28
|
cast_name: 水沢史絵
|
|
@@ -43,6 +45,7 @@ cure_marine: &cure_marine
|
|
|
43
45
|
transform_calls:
|
|
44
46
|
- open_my_heart
|
|
45
47
|
cure_sunshine: &cure_sunshine
|
|
48
|
+
girl_name: cure_sunshine
|
|
46
49
|
human_name: 明堂院いつき
|
|
47
50
|
precure_name: キュアサンシャイン
|
|
48
51
|
cast_name: 桑島法子
|
|
@@ -65,6 +68,7 @@ cure_sunshine: &cure_sunshine
|
|
|
65
68
|
transform_calls:
|
|
66
69
|
- open_my_heart
|
|
67
70
|
cure_moonlight: &cure_moonlight
|
|
71
|
+
girl_name: cure_moonlight
|
|
68
72
|
human_name: 月影ゆり
|
|
69
73
|
precure_name: キュアムーンライト
|
|
70
74
|
cast_name: 久川綾
|
data/config/girls/008_suite.yml
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
cure_melody: &cure_melody
|
|
2
|
+
girl_name: cure_melody
|
|
2
3
|
human_name: 北条響
|
|
3
4
|
precure_name: キュアメロディ
|
|
4
5
|
cast_name: 小清水亜美
|
|
@@ -27,6 +28,7 @@ cure_melody: &cure_melody
|
|
|
27
28
|
- lets_play
|
|
28
29
|
- modulation
|
|
29
30
|
cure_rhythm: &cure_rhythm
|
|
31
|
+
girl_name: cure_rhythm
|
|
30
32
|
human_name: 南野奏
|
|
31
33
|
precure_name: キュアリズム
|
|
32
34
|
cast_name: 折笠富美子
|
|
@@ -55,6 +57,7 @@ cure_rhythm: &cure_rhythm
|
|
|
55
57
|
- lets_play
|
|
56
58
|
- modulation
|
|
57
59
|
cure_beat: &cure_beat
|
|
60
|
+
girl_name: cure_beat
|
|
58
61
|
human_name: 黒川エレン
|
|
59
62
|
precure_name: キュアビート
|
|
60
63
|
cast_name: 豊口めぐみ
|
|
@@ -82,6 +85,7 @@ cure_beat: &cure_beat
|
|
|
82
85
|
- lets_play
|
|
83
86
|
- modulation
|
|
84
87
|
cure_muse: &cure_muse
|
|
88
|
+
girl_name: cure_muse
|
|
85
89
|
human_name: 調辺アコ
|
|
86
90
|
precure_name: キュアミューズ
|
|
87
91
|
cast_name: 大久保瑠美
|
data/config/girls/009_smile.yml
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
cure_happy: &cure_happy
|
|
2
|
+
girl_name: cure_happy
|
|
2
3
|
human_name: 星空みゆき
|
|
3
4
|
precure_name: キュアハッピー
|
|
4
5
|
cast_name: 福圓美里
|
|
@@ -31,6 +32,7 @@ cure_happy: &cure_happy
|
|
|
31
32
|
transform_calls:
|
|
32
33
|
- smile_charge
|
|
33
34
|
cure_sunny: &cure_sunny
|
|
35
|
+
girl_name: cure_sunny
|
|
34
36
|
human_name: 日野あかね
|
|
35
37
|
precure_name: キュアサニー
|
|
36
38
|
cast_name: 田野アサミ
|
|
@@ -63,6 +65,7 @@ cure_sunny: &cure_sunny
|
|
|
63
65
|
transform_calls:
|
|
64
66
|
- smile_charge
|
|
65
67
|
cure_peace: &cure_peace
|
|
68
|
+
girl_name: cure_peace
|
|
66
69
|
human_name: 黄瀬やよい
|
|
67
70
|
precure_name: キュアピース
|
|
68
71
|
cast_name: 金元寿子
|
|
@@ -95,6 +98,7 @@ cure_peace: &cure_peace
|
|
|
95
98
|
transform_calls:
|
|
96
99
|
- smile_charge
|
|
97
100
|
cure_march: &cure_march
|
|
101
|
+
girl_name: cure_march
|
|
98
102
|
human_name: 緑川なお
|
|
99
103
|
precure_name: キュアマーチ
|
|
100
104
|
cast_name: 井上麻里奈
|
|
@@ -127,6 +131,7 @@ cure_march: &cure_march
|
|
|
127
131
|
transform_calls:
|
|
128
132
|
- smile_charge
|
|
129
133
|
cure_beauty: &cure_beauty
|
|
134
|
+
girl_name: cure_beauty
|
|
130
135
|
human_name: 青木れいか
|
|
131
136
|
precure_name: キュアビューティ
|
|
132
137
|
cast_name: 西村ちなみ
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
cure_heart: &cure_heart
|
|
2
|
+
girl_name: cure_heart
|
|
2
3
|
human_name: 相田マナ
|
|
3
4
|
precure_name: キュアハート
|
|
4
5
|
cast_name: 生天目仁美
|
|
@@ -21,6 +22,7 @@ cure_heart: &cure_heart
|
|
|
21
22
|
transform_calls:
|
|
22
23
|
- love_link
|
|
23
24
|
cure_diamond: &cure_diamond
|
|
25
|
+
girl_name: cure_diamond
|
|
24
26
|
human_name: 菱川六花
|
|
25
27
|
precure_name: キュアダイヤモンド
|
|
26
28
|
cast_name: 寿美菜子
|
|
@@ -40,6 +42,7 @@ cure_diamond: &cure_diamond
|
|
|
40
42
|
transform_calls:
|
|
41
43
|
- love_link
|
|
42
44
|
cure_rosetta: &cure_rosetta
|
|
45
|
+
girl_name: cure_rosetta
|
|
43
46
|
human_name: 四葉ありす
|
|
44
47
|
precure_name: キュアロゼッタ
|
|
45
48
|
cast_name: 渕上舞
|
|
@@ -59,6 +62,7 @@ cure_rosetta: &cure_rosetta
|
|
|
59
62
|
transform_calls:
|
|
60
63
|
- love_link
|
|
61
64
|
cure_sword: &cure_sword
|
|
65
|
+
girl_name: cure_sword
|
|
62
66
|
human_name: 剣崎真琴
|
|
63
67
|
precure_name: キュアソード
|
|
64
68
|
cast_name: 宮本佳那子
|
|
@@ -78,6 +82,7 @@ cure_sword: &cure_sword
|
|
|
78
82
|
transform_calls:
|
|
79
83
|
- love_link
|
|
80
84
|
cure_ace: &cure_ace
|
|
85
|
+
girl_name: cure_ace
|
|
81
86
|
human_name: 円亜久里
|
|
82
87
|
precure_name: キュアエース
|
|
83
88
|
cast_name: 釘宮理恵
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
cure_lovely: &cure_lovely
|
|
2
|
+
girl_name: cure_lovely
|
|
2
3
|
human_name: 愛乃めぐみ
|
|
3
4
|
precure_name: キュアラブリー
|
|
4
5
|
cast_name: 中島愛
|
|
@@ -35,6 +36,7 @@ cure_lovely: &cure_lovely
|
|
|
35
36
|
transform_calls:
|
|
36
37
|
- kururin_mirror_change
|
|
37
38
|
cure_princess: &cure_princess
|
|
39
|
+
girl_name: cure_princess
|
|
38
40
|
human_name: 白雪ひめ(ヒメルダ・ウインドウ・キュアクイーン・オブ・ザ・ブルースカイ)
|
|
39
41
|
precure_name: キュアプリンセス
|
|
40
42
|
cast_name: 潘めぐみ
|
|
@@ -67,6 +69,7 @@ cure_princess: &cure_princess
|
|
|
67
69
|
transform_calls:
|
|
68
70
|
- kururin_mirror_change
|
|
69
71
|
cure_honey: &cure_honey
|
|
72
|
+
girl_name: cure_honey
|
|
70
73
|
human_name: 大森ゆうこ
|
|
71
74
|
precure_name: キュアハニー
|
|
72
75
|
cast_name: 北川里奈
|
|
@@ -101,6 +104,7 @@ cure_honey: &cure_honey
|
|
|
101
104
|
transform_calls:
|
|
102
105
|
- kururin_mirror_change
|
|
103
106
|
cure_fortune: &cure_fortune
|
|
107
|
+
girl_name: cure_fortune
|
|
104
108
|
human_name: 氷川いおな
|
|
105
109
|
precure_name: キュアフォーチュン
|
|
106
110
|
cast_name: 戸松遥
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
cure_flora: &cure_flora
|
|
2
|
+
girl_name: cure_flora
|
|
2
3
|
human_name: 春野はるか
|
|
3
4
|
precure_name: キュアフローラ
|
|
4
5
|
cast_name: 嶋村侑
|
|
@@ -20,6 +21,7 @@ cure_flora: &cure_flora
|
|
|
20
21
|
ごきげんよう
|
|
21
22
|
transform_calls:
|
|
22
23
|
cure_mermaid: &cure_mermaid
|
|
24
|
+
girl_name: cure_mermaid
|
|
23
25
|
human_name: 海藤みなみ
|
|
24
26
|
precure_name: キュアマーメイド
|
|
25
27
|
cast_name: 浅野真澄
|
|
@@ -42,6 +44,7 @@ cure_mermaid: &cure_mermaid
|
|
|
42
44
|
transform_calls:
|
|
43
45
|
- princess_engage
|
|
44
46
|
cure_twinkle: &cure_twinkle
|
|
47
|
+
girl_name: cure_twinkle
|
|
45
48
|
human_name: 天ノ川きらら
|
|
46
49
|
precure_name: キュアトゥインクル
|
|
47
50
|
cast_name: 山村響
|
|
@@ -64,6 +67,7 @@ cure_twinkle: &cure_twinkle
|
|
|
64
67
|
transform_calls:
|
|
65
68
|
- princess_engage
|
|
66
69
|
cure_scarlett: &cure_scarlett
|
|
70
|
+
girl_name: cure_scarlett
|
|
67
71
|
human_name: 紅城トワ
|
|
68
72
|
precure_name: キュアスカーレット
|
|
69
73
|
cast_name: 沢城みゆき
|
data/config/series.yml
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
#######################################################
|
|
2
2
|
unmarked: &unmarked
|
|
3
|
+
series_name: unmarked
|
|
3
4
|
title: ふたりはプリキュア
|
|
4
5
|
started_date: 2004-02-01
|
|
5
6
|
ended_date: 2005-01-30
|
|
@@ -10,6 +11,7 @@ futari_wa_pretty_cure:
|
|
|
10
11
|
<<: *unmarked
|
|
11
12
|
#######################################################
|
|
12
13
|
max_heart: &max_heart
|
|
14
|
+
series_name: max_heart
|
|
13
15
|
title: ふたりはプリキュア Max Heart
|
|
14
16
|
started_date: 2005-02-06
|
|
15
17
|
ended_date: 2006-01-29
|
|
@@ -21,7 +23,8 @@ futari_wa_pretty_cure_max_heart:
|
|
|
21
23
|
<<: *max_heart
|
|
22
24
|
#######################################################
|
|
23
25
|
splash_star: &splash_star
|
|
24
|
-
|
|
26
|
+
series_name: splash_star
|
|
27
|
+
title: ふたりはプリキュア Splash☆Star
|
|
25
28
|
started_date: 2006-02-05
|
|
26
29
|
ended_date: 2007-01-28
|
|
27
30
|
girls:
|
|
@@ -31,6 +34,7 @@ futari_wa_pretty_cure_splash_star:
|
|
|
31
34
|
<<: *splash_star
|
|
32
35
|
#######################################################
|
|
33
36
|
"yes": &yes
|
|
37
|
+
series_name: "yes"
|
|
34
38
|
title: Yes! プリキュア5
|
|
35
39
|
started_date: 2007-02-04
|
|
36
40
|
ended_date: 2008-01-27
|
|
@@ -46,6 +50,7 @@ yes_precure5:
|
|
|
46
50
|
<<: *yes
|
|
47
51
|
#######################################################
|
|
48
52
|
yes_gogo: &yes_gogo
|
|
53
|
+
series_name: yes_gogo
|
|
49
54
|
title: Yes! プリキュア5 Go Go!
|
|
50
55
|
started_date: 2008-02-03
|
|
51
56
|
ended_date: 2009-01-25
|
|
@@ -62,6 +67,7 @@ yes_precure5_gogo:
|
|
|
62
67
|
<<: *yes_gogo
|
|
63
68
|
#######################################################
|
|
64
69
|
fresh: &fresh
|
|
70
|
+
series_name: fresh
|
|
65
71
|
title: フレッシュプリキュア!
|
|
66
72
|
started_date: 2009-02-01
|
|
67
73
|
ended_date: 2010-01-31
|
|
@@ -74,6 +80,7 @@ fresh_precure:
|
|
|
74
80
|
<<: *fresh
|
|
75
81
|
#######################################################
|
|
76
82
|
heart_catch: &heart_catch
|
|
83
|
+
series_name: heart_catch
|
|
77
84
|
title: ハートキャッチプリキュア!
|
|
78
85
|
started_date: 2010-02-07
|
|
79
86
|
ended_date: 2011-01-30
|
|
@@ -86,6 +93,7 @@ heart_catch_precure:
|
|
|
86
93
|
<<: *heart_catch
|
|
87
94
|
#######################################################
|
|
88
95
|
suite: &suite
|
|
96
|
+
series_name: suite
|
|
89
97
|
title: スイートプリキュア♪
|
|
90
98
|
started_date: 2011-02-06
|
|
91
99
|
ended_date: 2012-01-29
|
|
@@ -98,6 +106,7 @@ suite_precure:
|
|
|
98
106
|
<<: *suite
|
|
99
107
|
#######################################################
|
|
100
108
|
smile: &smile
|
|
109
|
+
series_name: smile
|
|
101
110
|
title: スマイルプリキュア!
|
|
102
111
|
started_date: 2012-02-05
|
|
103
112
|
ended_date: 2013-01-27
|
|
@@ -111,6 +120,7 @@ smile_precure:
|
|
|
111
120
|
<<: *smile
|
|
112
121
|
#######################################################
|
|
113
122
|
dokidoki: &dokidoki
|
|
123
|
+
series_name: dokidoki
|
|
114
124
|
title: ドキドキ!プリキュア
|
|
115
125
|
started_date: 2013-02-03
|
|
116
126
|
ended_date: 2014-01-26
|
|
@@ -124,6 +134,7 @@ dokidoki_precure:
|
|
|
124
134
|
<<: *dokidoki
|
|
125
135
|
#######################################################
|
|
126
136
|
happiness_charge: &happiness_charge
|
|
137
|
+
series_name: happiness_charge
|
|
127
138
|
title: ハピネスチャージプリキュア!
|
|
128
139
|
started_date: 2014-02-02
|
|
129
140
|
ended_date: 2015-01-25
|
|
@@ -136,6 +147,7 @@ happiness_charge_precure:
|
|
|
136
147
|
<<: *happiness_charge
|
|
137
148
|
#######################################################
|
|
138
149
|
go_princess: &go_princess
|
|
150
|
+
series_name: go_princess
|
|
139
151
|
title: Go!プリンセスプリキュア
|
|
140
152
|
started_date: 2015-02-01
|
|
141
153
|
# ended_date: 2016-01-
|
data/lib/rubicure/version.rb
CHANGED
data/spec/girl_spec.rb
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
describe Rubicure::Girl do
|
|
2
2
|
let(:girl) do
|
|
3
3
|
girl = Rubicure::Girl[
|
|
4
|
+
girl_name: girl_name,
|
|
4
5
|
human_name: human_name,
|
|
5
6
|
precure_name: precure_name,
|
|
6
7
|
cast_name: cast_name,
|
|
@@ -16,6 +17,7 @@ describe Rubicure::Girl do
|
|
|
16
17
|
end
|
|
17
18
|
let(:mock_io) { StringIO.new }
|
|
18
19
|
|
|
20
|
+
let(:girl_name) { "cure_peace" }
|
|
19
21
|
let(:human_name) { "黄瀬やよい" }
|
|
20
22
|
let(:precure_name) { "キュアピース" }
|
|
21
23
|
let(:cast_name) { "金元寿子" }
|
|
@@ -117,6 +119,7 @@ EOF
|
|
|
117
119
|
|
|
118
120
|
it { should be_an_instance_of Rubicure::Girl }
|
|
119
121
|
its(:precure_name) { should == "キュアピース" }
|
|
122
|
+
its(:girl_name) { should == "cure_peace" }
|
|
120
123
|
end
|
|
121
124
|
|
|
122
125
|
describe "#uniq_names" do
|
data/spec/series_spec.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rubicure
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- sue445
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-08-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -291,7 +291,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
291
291
|
version: '0'
|
|
292
292
|
requirements: []
|
|
293
293
|
rubyforge_project:
|
|
294
|
-
rubygems_version: 2.4.5
|
|
294
|
+
rubygems_version: 2.4.5.1
|
|
295
295
|
signing_key:
|
|
296
296
|
specification_version: 4
|
|
297
297
|
summary: All about Japanese battle heroine "Pretty Cure (Precure)".
|