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 +4 -4
- data/.github/workflows/test.yml +1 -1
- data/CHANGELOG.md +7 -1
- data/config/girls/023_star_detective.yml +1 -0
- data/lib/rubicure/version.rb +1 -1
- data/spec/config/girls_checker_spec.rb +30 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0d293f48cef9397f8015708aae4f9a7081d8210003eebd306545b77cb26a9571
|
|
4
|
+
data.tar.gz: 7c7f1f7f5e942a8da850bbf24af72c7b9a765e03352e264e59244e14ae870c32
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fbf1ad9a2fbec29c123e540449416a7eab68b3c9153bc5502154a22ec7b6c794b6fe2baa5638ebba7c4f5cd20e0abc21f5ccae2d09bb0c0d9bf4798950b77e28
|
|
7
|
+
data.tar.gz: dd2d6dfc16dd99ff5baf789f8b50b24ae209a69a57e1422e48f3b4db29f9e17acc5d0d75f79c8e55a38cebd284de32e46f1662bd4b515af3e50e5b9514380cd7
|
data/.github/workflows/test.yml
CHANGED
|
@@ -171,6 +171,6 @@ jobs:
|
|
|
171
171
|
|
|
172
172
|
steps:
|
|
173
173
|
- name: check dependent jobs
|
|
174
|
-
uses: re-actors/alls-green@
|
|
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.
|
|
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)
|
data/lib/rubicure/version.rb
CHANGED
|
@@ -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
|
|