rubicure 4.2.1 → 4.2.2

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
  SHA256:
3
- metadata.gz: f7bfa49a5867e66c6a472c8c7a9126257e139e8861c0ab9893cf0a9dacd3f263
4
- data.tar.gz: 33916515925e7985a26cde910e3a3b47d27ec823b202b5b238a1f27aa9b3a545
3
+ metadata.gz: 0d293f48cef9397f8015708aae4f9a7081d8210003eebd306545b77cb26a9571
4
+ data.tar.gz: 7c7f1f7f5e942a8da850bbf24af72c7b9a765e03352e264e59244e14ae870c32
5
5
  SHA512:
6
- metadata.gz: 1445b146878f4ec5fe72d0984ad20e5228988eff8ee597e5d9cd87c6fb2bcce0f3244879b6fd88f9c3f2501a2c175b31063c7e9f8d130f03bedeb16fdb9b6433
7
- data.tar.gz: f2002d894372388acc5d41f12148b090fd47d0594ac2ac293bf4d9f70f8e947bf0be2f0bc3d13b428326f3ce4bc7679ddbc789fc750ac30cb8ecada6f5f82525
6
+ metadata.gz: fbf1ad9a2fbec29c123e540449416a7eab68b3c9153bc5502154a22ec7b6c794b6fe2baa5638ebba7c4f5cd20e0abc21f5ccae2d09bb0c0d9bf4798950b77e28
7
+ data.tar.gz: dd2d6dfc16dd99ff5baf789f8b50b24ae209a69a57e1422e48f3b4db29f9e17acc5d0d75f79c8e55a38cebd284de32e46f1662bd4b515af3e50e5b9514380cd7
@@ -171,6 +171,6 @@ jobs:
171
171
 
172
172
  steps:
173
173
  - name: check dependent jobs
174
- uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # v1.2.2
174
+ uses: re-actors/alls-green@b5b5b37504aa4183270bd3d855c52a67f212be35 # v1.3.0
175
175
  with:
176
176
  jobs: ${{ toJSON(needs) }}
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  ## master
2
- [full changelog](http://github.com/sue445/rubicure/compare/v4.2.1...master)
2
+ [full changelog](http://github.com/sue445/rubicure/compare/v4.2.2...master)
3
+
4
+ ## [v4.2.2](https://github.com/sue445/rubicure/releases/tag/v4.2.2)
5
+ [full changelog](http://github.com/sue445/rubicure/compare/v4.2.1...v4.2.2)
6
+
7
+ * キュアアルカナに girl_name がなかったのを修正
8
+ * https://github.com/sue445/rubicure/pull/387
3
9
 
4
10
  ## [v4.2.1](https://github.com/sue445/rubicure/releases/tag/v4.2.1)
5
11
  [full changelog](http://github.com/sue445/rubicure/compare/v4.2.0...v4.2.1)
@@ -97,6 +97,7 @@ eclair:
97
97
 
98
98
 
99
99
  cure_arcana: &cure_arcana
100
+ girl_name: cure_arcana
100
101
  human_name: 森亜るるか
101
102
  precure_name: キュアアルカナ
102
103
  cast_name: 東山奈央
@@ -1,3 +1,3 @@
1
1
  module Rubicure
2
- VERSION = "4.2.1".freeze
2
+ VERSION = "4.2.2".freeze
3
3
  end
@@ -7,6 +7,36 @@ describe "girls_checker" do # rubocop:disable RSpec/DescribeClass
7
7
 
8
8
  girls.each do |girl_name, girl|
9
9
  describe girl_name do
10
+ describe "#girl_name" do
11
+ subject { girl["girl_name"] }
12
+
13
+ it { should_not be_blank }
14
+ end
15
+
16
+ describe "#human_name" do
17
+ subject { girl["human_name"] }
18
+
19
+ it { should_not be_blank }
20
+ end
21
+
22
+ describe "#precure_name" do
23
+ subject { girl["precure_name"] }
24
+
25
+ it { should_not be_blank }
26
+ end
27
+
28
+ describe "#cast_name" do
29
+ subject { girl["cast_name"] }
30
+
31
+ it { should_not be_blank }
32
+ end
33
+
34
+ describe "#color" do
35
+ subject { girl["color"] }
36
+
37
+ it { should_not be_blank }
38
+ end
39
+
10
40
  describe "#transform_message" do
11
41
  subject { girl["transform_message"] }
12
42
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubicure
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.2.1
4
+ version: 4.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - sue445