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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: adf78ade695db5a6272cbb30692c3d3d7bc7c7c8
4
- data.tar.gz: 841971d5ca99ea0702b56b7fb0df5f288c949f51
3
+ metadata.gz: 4c80a520a3680ca1ffa40cef92873b6d47ba565c
4
+ data.tar.gz: 44b1f2c4deb35c80bf47cb55f47e8fe411bd3b6d
5
5
  SHA512:
6
- metadata.gz: 063b222592787e31d35cee154547787cca2799f46d08dc83c20069f49e20351cb86c524e4e14d15b58eb1bb8b6303ecaef3c6859a8b476276242e298bb648424
7
- data.tar.gz: c493043dcb00abd1a94644a2c83118b9319d0a9c6e1cc2feb14b069e2120d7af9abf51bb492a4071a47fdf17ecb79dffa04c4b6aa2b00cd437eba0a209e4083e
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.1...master)
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
@@ -34,3 +34,9 @@ ns3: &ns3
34
34
  started_date: 2014-03-15
35
35
  new_stage3:
36
36
  <<: *ns3
37
+ #######################################################
38
+ sc: &sc
39
+ title: 映画 プリキュアオールスターズ 春のカーニバル
40
+ started_date: 2015-03-14
41
+ spring_carnival:
42
+ <<: *sc
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
@@ -1,3 +1,3 @@
1
1
  module Rubicure
2
- VERSION = "0.2.2.1"
2
+ VERSION = "0.2.3"
3
3
  end
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){ 37 }
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
- ["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],
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
@@ -7,6 +7,7 @@ describe Rubicure::Movie do
7
7
  :ns1,
8
8
  :ns2,
9
9
  :ns3,
10
+ :sc,
10
11
  ]
11
12
  end
12
13
 
data/spec/series_spec.rb CHANGED
@@ -62,6 +62,7 @@ describe Rubicure::Series do
62
62
  :smile,
63
63
  :dokidoki,
64
64
  :happiness_charge,
65
+ :go_princess,
65
66
  ]
66
67
  end
67
68
 
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.2.1
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-01-26 00:00:00.000000000 Z
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