rubicure 3.3.2 → 3.3.3
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/CHANGELOG.md +7 -1
- data/config/girls/021_wonderful.yml +2 -4
- data/gemfiles/common.gemfile +5 -0
- data/lib/rubicure/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f0e0ff28812a87b83ff33e174cde8ed53cb68328675fd7abaa4d1de549fadbb9
|
|
4
|
+
data.tar.gz: e828e530cb89322c65aece2e0e76c4792c12ef012cd8ad91a9c764cd93f475ec
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a1421c0ec737c85ff9327885c4ec7a288708420b6ab6f2b312638f99d44d5799750012666b50c06083a552e180a173de58b8314b3503953241062cb6c8bac182
|
|
7
|
+
data.tar.gz: 171e4dbd64782349022798708c6f3fded6ed61e166814f674fba6e5f673ef2855b14c177de296ab02c6bc8d6a988a37804ac4d7ede20f67e7a6b8a84d2da5aba
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
## master
|
|
2
|
-
[full changelog](http://github.com/sue445/rubicure/compare/v3.3.
|
|
2
|
+
[full changelog](http://github.com/sue445/rubicure/compare/v3.3.3...master)
|
|
3
|
+
|
|
4
|
+
## v3.3.3
|
|
5
|
+
[full changelog](http://github.com/sue445/rubicure/compare/v3.3.2...v3.3.3)
|
|
6
|
+
|
|
7
|
+
* Fix CureNyammy and CureLillian's transform message :cat:
|
|
8
|
+
* https://github.com/sue445/rubicure/pull/314
|
|
3
9
|
|
|
4
10
|
## v3.3.2
|
|
5
11
|
[full changelog](http://github.com/sue445/rubicure/compare/v3.3.1...v3.3.2)
|
|
@@ -78,8 +78,7 @@ cure_nyammy: &cure_nyammy
|
|
|
78
78
|
気高くかわいくきらめく世界!
|
|
79
79
|
キュアニャミー!
|
|
80
80
|
仕方ない、構ってあげる
|
|
81
|
-
|
|
82
|
-
わんだふるぷりきゅあ!
|
|
81
|
+
ニャンダフルプリキュア!
|
|
83
82
|
# extra_names:
|
|
84
83
|
attack_messages:
|
|
85
84
|
- |-
|
|
@@ -109,8 +108,7 @@ cure_lillian: &cure_lillian
|
|
|
109
108
|
結んで紡いでつながる世界!
|
|
110
109
|
キュアリリアン!
|
|
111
110
|
こわくない、こわくない
|
|
112
|
-
|
|
113
|
-
わんだふるぷりきゅあ!
|
|
111
|
+
ニャンダフルプリキュア!
|
|
114
112
|
# extra_names:
|
|
115
113
|
attack_messages:
|
|
116
114
|
- |-
|
data/gemfiles/common.gemfile
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
1
|
# FIXME: rubydoctest doesn't work on ruby 3.2+
|
|
2
2
|
# c.f. https://github.com/tslocke/rubydoctest/pull/17
|
|
3
3
|
gem "rubydoctest", github: "sue445/rubydoctest", ref: "ruby3.2"
|
|
4
|
+
|
|
5
|
+
if Gem::Version.create(RUBY_VERSION) < Gem::Version.create("2.7.0")
|
|
6
|
+
# term-ansicolor 1.9.0+ doesn't work on Ruby < 2.7
|
|
7
|
+
gem "term-ansicolor", "< 1.9.0"
|
|
8
|
+
end
|
data/lib/rubicure/version.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: 3.3.
|
|
4
|
+
version: 3.3.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- sue445
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-06-
|
|
11
|
+
date: 2024-06-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|