rubicure 1.0.0.pre4 → 1.0.0

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: 6915349c8dcc03f08e33175e3cf8b4ad953644ac
4
- data.tar.gz: b11cab3b0e800afae4b990470d6f3255b49ee5cb
3
+ metadata.gz: 2295c4227e9c72df7a597beb3a1f5f5a33f317f5
4
+ data.tar.gz: 2094f77901f313abef73e2563157b238606a5183
5
5
  SHA512:
6
- metadata.gz: 17068e42dcec9d06df6f3bbb7e75492b70ed689e8f8a73eed46c62d6232281831a15f9e5355789dfffc2f1dbab9738ed98f36dfbf7f61f906c02de789b4bf6c4
7
- data.tar.gz: dd63f8bdde078948873addb6e33a0ca7615c2adcd4b439ac5de475fc189f703633602853bbd31ff1cfe9086e41b23808b5c992d3c05ff917dd8a9f6505c0f5a8
6
+ metadata.gz: 75293257d2be0e072237250013bfa55282d08b992580dbf38c3d3508ca35f639b14b7d1d2545ac8bb78c168867ecf7f4f0458f06a7badf0d54eb9681f8d75f28
7
+ data.tar.gz: 67a35fdc69c5131d3117c7e85fec615c493e5867d0e2aaa166b198a39a566389cc5746c1dc1007e7af5aca8a959d8dccef185cccc96e08953840d508fde270ce
@@ -1,7 +1,8 @@
1
1
  ## master
2
- [full changelog](http://github.com/sue445/rubicure/compare/v0.4.13...master)
2
+ [full changelog](http://github.com/sue445/rubicure/compare/v1.0.0...master)
3
3
 
4
4
  ## v1.0.0
5
+ [full changelog](http://github.com/sue445/rubicure/compare/v0.4.13...v1.0.0)
5
6
 
6
7
  ### Breaking changes :bomb:
7
8
  * Remove `Girl#humanize`
@@ -23,6 +24,11 @@
23
24
  * Impl `Precure.all_girls` (a.k.a. `Precure.all`)
24
25
  * https://github.com/sue445/rubicure/pull/138
25
26
  * https://github.com/sue445/rubicure/issues/136
27
+ * Add kirakira precure alamode
28
+ * https://github.com/sue445/rubicure/pull/131
29
+ * Impl `Precure.dream_stars`
30
+ * https://github.com/sue445/rubicure/pull/141
31
+ * https://github.com/sue445/rubicure/issues/137
26
32
 
27
33
  ### Others
28
34
  * Exclude examples/ from gem file
data/README.md CHANGED
@@ -476,6 +476,15 @@ Precure.all_girls.include?(Cure.echo)
476
476
  * `Precure.all_girls` returns all precure. (includes "Kirakira Precure Alamode")
477
477
  * `Precure.all_stars` returns only from "Futari wa Pretty Cure" to "Maho Girls PreCure"
478
478
 
479
+ ### `Precure.dream_stars`
480
+ ```ruby
481
+ Precure.dream_stars.count
482
+ #=> 12
483
+
484
+ Precure.dream_stars.map(&:precure_name)
485
+ #=> ["キュアフローラ", "キュアマーメイド", "キュアトゥインクル", "キュアスカーレット", "キュアミラクル", "キュアマジカル", "キュアフェリーチェ", "キュアホイップ", "キュアカスタード", "キュアジェラート", "キュアマカロン", "キュアショコラ"]
486
+ ```
487
+
479
488
  ### Equivalence
480
489
  ```ruby
481
490
  yayoi = Cure.peace.dup
@@ -52,3 +52,9 @@ stmm: &stmm
52
52
  - cure_echo
53
53
  sing_together_miracle_magic:
54
54
  <<: *stmm
55
+ #######################################################
56
+ dream_stars: &dream_stars
57
+ title: 映画プリキュアドリームスターズ!
58
+ started_date: 2017-03-18
59
+ dc:
60
+ <<: *dream_stars
@@ -39,7 +39,12 @@ module Rubicure
39
39
  # args is Time or Date
40
40
  date = to_date(arg)
41
41
 
42
- unless date
42
+ if date
43
+ last_all_stars_date = Rubicure::Movie.find(:stmm).started_date
44
+ if date > last_all_stars_date
45
+ date = last_all_stars_date
46
+ end
47
+ else
43
48
  # args is movie name
44
49
  movie = Rubicure::Movie.find(arg.to_sym)
45
50
  date = movie.started_date
@@ -71,6 +76,16 @@ module Rubicure
71
76
 
72
77
  alias_method :all, :all_girls
73
78
 
79
+ def dream_stars
80
+ return @dream_stars if @dream_stars
81
+ girls = Precure.go_princess.girls + Precure.maho_girls.girls + Precure.a_la_mode.girls
82
+
83
+ dream_stars_date = Rubicure::Movie.find(:dream_stars).started_date
84
+ @dream_stars = girls.select { |girl| girl.created_date && girl.created_date <= dream_stars_date }
85
+
86
+ @dream_stars
87
+ end
88
+
74
89
  # iterate with :unmarked, :max_heart, ...
75
90
  #
76
91
  # @yield series
@@ -1,3 +1,3 @@
1
1
  module Rubicure
2
- VERSION = "1.0.0.pre4"
2
+ VERSION = "1.0.0"
3
3
  end
@@ -36,7 +36,7 @@ describe Rubicure::Core do
36
36
  context "Without arg" do
37
37
  subject { instance.all_stars }
38
38
 
39
- let(:precure_count) { 49 }
39
+ let(:precure_count) { 43 }
40
40
 
41
41
  its(:count) { should == precure_count }
42
42
  end
@@ -48,7 +48,7 @@ describe Rubicure::Core do
48
48
 
49
49
  where(:arg, :expected_count, :include_cure_echo) do
50
50
  "2009-03-20" | 14 | false
51
- "2017-01-17" | 44 | false
51
+ "2017-01-17" | 43 | false
52
52
  Date.parse("2010-03-20") | 17 | false
53
53
  Time.parse("2011-03-19") | 21 | false
54
54
 
@@ -84,7 +84,7 @@ describe Rubicure::Core do
84
84
  context "Without arg" do
85
85
  subject { instance.all_girls }
86
86
 
87
- let(:precure_count) { 45 }
87
+ let(:precure_count) { 50 }
88
88
 
89
89
  its(:count) { should == precure_count }
90
90
  it { should include Cure.echo }
@@ -108,4 +108,27 @@ describe Rubicure::Core do
108
108
  end
109
109
  end
110
110
  end
111
+
112
+ describe "#dream_stars" do
113
+ subject { Precure.dream_stars.map(&:girl_name) }
114
+
115
+ let(:dream_stars_girl_names) do
116
+ [
117
+ Cure.flora,
118
+ Cure.mermaid,
119
+ Cure.twinkle,
120
+ Cure.scarlet,
121
+ Cure.miracle,
122
+ Cure.magical,
123
+ Cure.felice,
124
+ Cure.whip,
125
+ Cure.custard,
126
+ Cure.gelato,
127
+ Cure.macaroon,
128
+ Cure.chocolat,
129
+ ].map(&:girl_name)
130
+ end
131
+
132
+ it { should contain_exactly(*dream_stars_girl_names) }
133
+ end
111
134
  end
@@ -9,6 +9,7 @@ describe Rubicure::Movie do
9
9
  :ns3,
10
10
  :sc,
11
11
  :stmm,
12
+ :dream_stars,
12
13
  ]
13
14
  end
14
15
 
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: 1.0.0.pre4
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - sue445
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-02-26 00:00:00.000000000 Z
11
+ date: 2017-03-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -306,9 +306,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
306
306
  version: 2.2.2
307
307
  required_rubygems_version: !ruby/object:Gem::Requirement
308
308
  requirements:
309
- - - ">"
309
+ - - ">="
310
310
  - !ruby/object:Gem::Version
311
- version: 1.3.1
311
+ version: '0'
312
312
  requirements: []
313
313
  rubyforge_project:
314
314
  rubygems_version: 2.6.8