rubicure 0.4.4 → 0.4.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 83e59ad549b88b979e3db882b7a4dccb06e14b81
4
- data.tar.gz: 49e9d3cbad3221da1c5151da6c85d1124da1f65d
3
+ metadata.gz: 04dd3c43fbbab769801f82e7639056b0f2e0c43d
4
+ data.tar.gz: 5126f266b71b7f890164e6628858c550f83175d1
5
5
  SHA512:
6
- metadata.gz: a147a86874b7fd2fd21e8e0c5464904ea74b5722ae8229406518385d3f9843a61b1f21206722888eee7c516dd428099c22d88dd369d07f0531a3b688d547301f
7
- data.tar.gz: 93a10eadc667786b6fd021ffcc03e7810e792d6015517674ffff2d4bb5f623635402428394eb7a30fe99138c4f2522206172f6e102110e2303a3a96fcd9b6f03
6
+ metadata.gz: 3453df6ae013ed7a4d0f9b0019563db2af676ba8be42b1754fda8e5c24576c14236b3062fc0cc8c227a0e9c90b9d33a9e11f1ff4f5c3a8ef625e63d48859c379
7
+ data.tar.gz: 6ca379cd335e14c702a481ed6955e7960d6e0a3ac4bd5fb89e1d76ac3859ab67da4fe830d75e627e005db412d97645daf70f4f1946508ea1a5e5aa20f8a63b76
@@ -3,7 +3,7 @@ rvm:
3
3
  - 2.0
4
4
  - 2.1
5
5
  - 2.2
6
- - 2.3.0
6
+ - 2.3.1
7
7
  - ruby-head
8
8
  bundler_args: "--jobs=2"
9
9
  cache: bundler
@@ -1,5 +1,11 @@
1
1
  ## master
2
- [full changelog](http://github.com/sue445/rubicure/compare/v0.4.4...master)
2
+ [full changelog](http://github.com/sue445/rubicure/compare/v0.4.5...master)
3
+
4
+ ## v0.4.5
5
+ [full changelog](http://github.com/sue445/rubicure/compare/v0.4.4...v0.4.5)
6
+
7
+ * Add cure felice
8
+ * https://github.com/sue445/rubicure/pull/106
3
9
 
4
10
  ## v0.4.4
5
11
  [full changelog](http://github.com/sue445/rubicure/compare/v0.4.3...v0.4.4)
@@ -151,7 +151,33 @@ cure_magical: &cure_magical
151
151
  トパーズ!金色の希望よ私達の手に!
152
152
  フルフルリンクル!
153
153
  プリキュア・トパーズ・エスペランサ!
154
+ cure_felice: &cure_felice
155
+ girl_name: cure_felice
156
+ human_name: 花海ことは
157
+ precure_name: キュアフェリーチェ
158
+ cast_name: 早見沙織
159
+ color: green
160
+ created_date: 2016-07-03 # episode 22
161
+ #birthday: 4/10
162
+ extra_names:
163
+ transform_calls:
164
+ - cure_up_rapapa
165
+ transform_styles:
166
+ emerald:
167
+ girl_name: cure_felice_emerald
168
+ transform_message: |-
169
+ キュアップ・ラパパ!エメラルド!
170
+ フェリーチェ・ファンファン・フラワーレ!
171
+ あまねく生命に祝福を!キュアフェリーチェ!
172
+ attack_messages:
173
+ - |
174
+ フラワーエコーワンド!
175
+ エメラルド!
176
+ キュアー・アップ!
177
+ プリキュア!エメラルド・リンカネーション!
154
178
  miracle:
155
179
  <<: *cure_miracle
156
180
  magical:
157
181
  <<: *cure_magical
182
+ felice:
183
+ <<: *cure_felice
@@ -167,5 +167,6 @@ maho_girls: &maho_girls
167
167
  girls:
168
168
  - cure_miracle
169
169
  - cure_magical
170
+ - cure_felice
170
171
  maho_girls_precure:
171
172
  <<: *maho_girls
@@ -1,3 +1,3 @@
1
1
  module Rubicure
2
- VERSION = "0.4.4"
2
+ VERSION = "0.4.5"
3
3
  end
@@ -20,7 +20,13 @@ Gem::Specification.new do |spec|
20
20
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
21
21
  spec.require_paths = ["lib"]
22
22
 
23
- spec.add_dependency "activesupport", ">= 4.0.0"
23
+ if Gem::Version.create(RUBY_VERSION) >= Gem::Version.create("2.2.2")
24
+ spec.add_dependency "activesupport", ">= 4.0.0"
25
+ else
26
+ # NOTE: activesupport 5.x supports only ruby 2.2.2+
27
+ spec.add_dependency "activesupport", ">= 4.0.0", "< 5.0.0"
28
+ end
29
+
24
30
  spec.add_dependency "hashie", ">= 2.0.5"
25
31
  spec.add_dependency "sengiri_yaml", ">= 0.0.2"
26
32
 
@@ -62,7 +62,7 @@ EOS
62
62
  context "Without arg" do
63
63
  subject { instance.all_stars }
64
64
 
65
- let(:precure_count) { 43 }
65
+ let(:precure_count) { 44 }
66
66
 
67
67
  its(:count) { should == precure_count }
68
68
  end
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.4.4
4
+ version: 0.4.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - sue445
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-04-17 00:00:00.000000000 Z
11
+ date: 2016-07-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport