rubicure 0.2.2.1 → 0.2.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -1
- data/README.md +3 -0
- data/config/girls/012_go_princess.yml +59 -0
- data/config/movies.yml +6 -0
- data/config/series.yml +11 -0
- data/lib/rubicure/version.rb +1 -1
- data/spec/core_spec.rb +21 -18
- data/spec/movie_spec.rb +1 -0
- data/spec/series_spec.rb +1 -0
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4c80a520a3680ca1ffa40cef92873b6d47ba565c
|
4
|
+
data.tar.gz: 44b1f2c4deb35c80bf47cb55f47e8fe411bd3b6d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ec6e2a1e1a0e904fe03b2535fc17e34361286375f3e90c7f8ef5ef62b35e8ea4cf575cefc864e4085b5bca2e034e9462b934cf217d51f7620dc2bcca10bd6ea2
|
7
|
+
data.tar.gz: 0815d70b50aac24f3f6411d5022bb05e4e3ac2f0ee4135bb3e97ff69b1e5936010f717f0fbe18d325236b152cd2b162980f255c0d7c7cc07d63325b052f53525
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,11 @@
|
|
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.3...master)
|
3
|
+
|
4
|
+
## v0.2.2
|
5
|
+
[full changelog](http://github.com/sue445/rubicure/compare/v0.2.2.1...v0.2.3)
|
6
|
+
|
7
|
+
* Add Go! Princess Precure
|
8
|
+
* https://github.com/sue445/rubicure/pull/66
|
3
9
|
|
4
10
|
## v0.2.2.1
|
5
11
|
[full changelog](http://github.com/sue445/rubicure/compare/v0.2.2...v0.2.2.1)
|
data/README.md
CHANGED
@@ -474,6 +474,9 @@ Precure.all_stars.select(&:pink?).map(&:precure_name)
|
|
474
474
|
|
475
475
|
Precure.all_stars.select(&:yellow?).map(&:precure_name)
|
476
476
|
#=> ["シャイニールミナス", "キュアレモネード", "キュアパイン", "キュアサンシャイン", "キュアミューズ", "キュアピース", "キュアロゼッタ", "キュアハニー"]
|
477
|
+
|
478
|
+
Precure.all_stars.group_by{ |girl| girl.color }.map{ |color, girls| [color, girls.count] }.sort_by{ |color, girl_count| girl_count }.reverse
|
479
|
+
#=> [["pink", 9], ["yellow", 9], ["blue", 8], ["purple", 4], ["red", 4], ["white", 3], ["green", 2], ["black", 1]]
|
477
480
|
```
|
478
481
|
|
479
482
|
## More reference
|
@@ -0,0 +1,59 @@
|
|
1
|
+
cure_flora: &cure_flora
|
2
|
+
human_name: 春野はるか
|
3
|
+
precure_name: キュアフローラ
|
4
|
+
cast_name: 嶋村侑
|
5
|
+
color: pink
|
6
|
+
created_date: 2015-02-01 # episode 1
|
7
|
+
transform_message: |-
|
8
|
+
プリキュア!プリンセスエンゲージ!
|
9
|
+
咲き誇る花のプリンセス!キュアフローラ!
|
10
|
+
extra_names:
|
11
|
+
attack_messages:
|
12
|
+
- |
|
13
|
+
エクスチェンジ!モードエレガント!
|
14
|
+
舞え、花よ!プリキュア・フローラル・トルビヨン!
|
15
|
+
(ドリーミング)
|
16
|
+
ごきげんよう
|
17
|
+
transform_calls:
|
18
|
+
cure_mermaid: &cure_mermaid
|
19
|
+
human_name: 海藤みなみ
|
20
|
+
precure_name: キュアマーメイド
|
21
|
+
cast_name: 浅野真澄
|
22
|
+
color: blue
|
23
|
+
created_date: 2015-02-08 # episode 2
|
24
|
+
transform_message: |-
|
25
|
+
プリキュア!プリンセスエンゲージ!
|
26
|
+
澄み渡る海のプリンセス!キュアマーメイド!
|
27
|
+
extra_names:
|
28
|
+
attack_messages:
|
29
|
+
- |
|
30
|
+
エクスチェンジ!モードエレガント!
|
31
|
+
高鳴れ、海よ!プリンセス・マーメイド・リップル!
|
32
|
+
(ドリーミング)
|
33
|
+
ごきげんよう
|
34
|
+
transform_calls:
|
35
|
+
- princess_engage
|
36
|
+
cure_twinkle: &cure_twinkle
|
37
|
+
human_name: 天ノ川きらら
|
38
|
+
precure_name: キュアトゥインクル
|
39
|
+
cast_name: 山村響
|
40
|
+
color: yellow
|
41
|
+
created_date: 2015-02-22 # episode 4
|
42
|
+
transform_message: |-
|
43
|
+
プリキュア!プリンセスエンゲージ!
|
44
|
+
きらめく星のプリンセス!キュアトゥインクル!
|
45
|
+
extra_names:
|
46
|
+
attack_messages:
|
47
|
+
- |
|
48
|
+
エクスチェンジ!モードエレガント!
|
49
|
+
キラキラ、星よ!プリンセス・トゥインクル・ハミング!
|
50
|
+
(ドリーミング)
|
51
|
+
ごきげんよう
|
52
|
+
transform_calls:
|
53
|
+
- princess_engage
|
54
|
+
flora:
|
55
|
+
<<: *cure_flora
|
56
|
+
mermaid:
|
57
|
+
<<: *cure_mermaid
|
58
|
+
twinkle:
|
59
|
+
<<: *cure_twinkle
|
data/config/movies.yml
CHANGED
data/config/series.yml
CHANGED
@@ -134,3 +134,14 @@ happiness_charge: &happiness_charge
|
|
134
134
|
- cure_fortune
|
135
135
|
happiness_charge_precure:
|
136
136
|
<<: *happiness_charge
|
137
|
+
#######################################################
|
138
|
+
go_princess: &go_princess
|
139
|
+
title: Go!プリンセスプリキュア
|
140
|
+
started_date: 2015-02-01
|
141
|
+
# ended_date: 2016-01-
|
142
|
+
girls:
|
143
|
+
- cure_flora
|
144
|
+
- cure_mermaid
|
145
|
+
- cure_twinkle
|
146
|
+
go_princess_precure:
|
147
|
+
<<: *go_princess
|
data/lib/rubicure/version.rb
CHANGED
data/spec/core_spec.rb
CHANGED
@@ -62,7 +62,7 @@ EOS
|
|
62
62
|
context "Without arg" do
|
63
63
|
subject { instance.all_stars }
|
64
64
|
|
65
|
-
let(:precure_count){
|
65
|
+
let(:precure_count){ 40 }
|
66
66
|
|
67
67
|
its(:count) { should == precure_count }
|
68
68
|
end
|
@@ -72,23 +72,26 @@ EOS
|
|
72
72
|
|
73
73
|
where(:arg, :expected_count) do
|
74
74
|
[
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
75
|
+
["2009-03-20", 14],
|
76
|
+
[Date.parse("2010-03-20"), 17],
|
77
|
+
[Time.parse("2011-03-19"), 21],
|
78
|
+
|
79
|
+
[:dx, 14],
|
80
|
+
[:dx1, 14],
|
81
|
+
[:dx2, 17],
|
82
|
+
[:dx3, 21],
|
83
|
+
|
84
|
+
[:ns, 28],
|
85
|
+
[:ns1, 28],
|
86
|
+
[:new_stage, 28],
|
87
|
+
[:new_stage1, 28],
|
88
|
+
[:ns2, 32],
|
89
|
+
[:new_stage2, 32],
|
90
|
+
[:ns3, 36],
|
91
|
+
[:new_stage3, 36],
|
92
|
+
|
93
|
+
[:sc, 40],
|
94
|
+
[:spring_carnival, 40],
|
92
95
|
]
|
93
96
|
end
|
94
97
|
|
data/spec/movie_spec.rb
CHANGED
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.3
|
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-02-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -250,6 +250,7 @@ files:
|
|
250
250
|
- config/girls/009_smile.yml
|
251
251
|
- config/girls/010_dokidoki.yml
|
252
252
|
- config/girls/011_happiness_charge.yml
|
253
|
+
- config/girls/012_go_princess.yml
|
253
254
|
- config/movies.yml
|
254
255
|
- config/series.yml
|
255
256
|
- lib/rubicure.rb
|