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 +4 -4
- data/.travis.yml +1 -1
- data/CHANGELOG.md +7 -1
- data/config/girls/013_maho_girls.yml +26 -0
- data/config/series.yml +1 -0
- data/lib/rubicure/version.rb +1 -1
- data/rubicure.gemspec +7 -1
- data/spec/core_spec.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 04dd3c43fbbab769801f82e7639056b0f2e0c43d
|
4
|
+
data.tar.gz: 5126f266b71b7f890164e6628858c550f83175d1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3453df6ae013ed7a4d0f9b0019563db2af676ba8be42b1754fda8e5c24576c14236b3062fc0cc8c227a0e9c90b9d33a9e11f1ff4f5c3a8ef625e63d48859c379
|
7
|
+
data.tar.gz: 6ca379cd335e14c702a481ed6955e7960d6e0a3ac4bd5fb89e1d76ac3859ab67da4fe830d75e627e005db412d97645daf70f4f1946508ea1a5e5aa20f8a63b76
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,11 @@
|
|
1
1
|
## master
|
2
|
-
[full changelog](http://github.com/sue445/rubicure/compare/v0.4.
|
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
|
data/config/series.yml
CHANGED
data/lib/rubicure/version.rb
CHANGED
data/rubicure.gemspec
CHANGED
@@ -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
|
-
|
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
|
|
data/spec/core_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.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-
|
11
|
+
date: 2016-07-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|