rubicure 3.2.3 → 3.2.4
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/pages.yml +1 -1
- data/.github/workflows/test.yml +1 -1
- data/CHANGELOG.md +7 -1
- data/README.md +5 -0
- data/config/movies.yml +4 -0
- data/lib/rubicure/core.rb +8 -0
- data/lib/rubicure/version.rb +1 -1
- data/spec/rubicure/core_spec.rb +4 -0
- data/spec/rubicure/movie_spec.rb +1 -0
- 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: 2e0bff5e079520cc80520b80b587aa1ec92a79a9c5f81836d0654e58fcf9ea92
|
|
4
|
+
data.tar.gz: 06607be1453a60df04c06840ca79de2edeb907e0e59ee239ab06ddc91e040125
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8266d02c6a2f2e0be274372a48e9dfcdd65ecb078477c2be9e7366845dee8c15c8de7e7499d2b62cb421fc61c1a30c58d7d59ab964e327f4aceb5af94897cd8b
|
|
7
|
+
data.tar.gz: 667260c8850161aa77a7211c1f9cabe0b2292f1eab242126c2e575c8eca3fbbec21b4e2b211e5fd889727677fbeb8cd06c130ca50f6f2625237cf3b791b5a950
|
data/.github/workflows/pages.yml
CHANGED
data/.github/workflows/test.yml
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
## master
|
|
2
|
-
[full changelog](http://github.com/sue445/rubicure/compare/v3.2.
|
|
2
|
+
[full changelog](http://github.com/sue445/rubicure/compare/v3.2.4...master)
|
|
3
|
+
|
|
4
|
+
## v3.2.4
|
|
5
|
+
[full changelog](http://github.com/sue445/rubicure/compare/v3.2.3...v3.2.4)
|
|
6
|
+
|
|
7
|
+
* Add `Precure.all_stars(:f)`
|
|
8
|
+
* https://github.com/sue445/rubicure/pull/291
|
|
3
9
|
|
|
4
10
|
## v3.2.3
|
|
5
11
|
[full changelog](http://github.com/sue445/rubicure/compare/v3.2.2...v3.2.3)
|
data/README.md
CHANGED
|
@@ -498,6 +498,11 @@ When `Rubicure::Girl` has `human_full_name` (i.e. another `human_name`), she ret
|
|
|
498
498
|
|
|
499
499
|
>> Precure.all_stars(:memories).count
|
|
500
500
|
=> 55
|
|
501
|
+
|
|
502
|
+
>> Precure.all_stars(:f).count
|
|
503
|
+
=> 78
|
|
504
|
+
>> Precure.all_stars(:f).include?(Cure.echo)
|
|
505
|
+
=> false
|
|
501
506
|
```
|
|
502
507
|
|
|
503
508
|
and [more aliases!](config/movies.yml)
|
data/config/movies.yml
CHANGED
data/lib/rubicure/core.rb
CHANGED
|
@@ -95,6 +95,14 @@ module Rubicure
|
|
|
95
95
|
# #=> 44
|
|
96
96
|
# Precure.all_stars(:sing_together_miracle_magic).include?(Cure.echo)
|
|
97
97
|
# #=> true
|
|
98
|
+
#
|
|
99
|
+
# Precure.all_stars(:memories).count
|
|
100
|
+
# #=> 55
|
|
101
|
+
#
|
|
102
|
+
# Precure.all_stars(:f).count
|
|
103
|
+
# #=> 78
|
|
104
|
+
# Precure.all_stars(:f).include?(Cure.echo)
|
|
105
|
+
# #=> false
|
|
98
106
|
def all_stars(arg = Time.current)
|
|
99
107
|
extra_girls = []
|
|
100
108
|
|
data/lib/rubicure/version.rb
CHANGED
data/spec/rubicure/core_spec.rb
CHANGED
|
@@ -73,6 +73,10 @@ describe Rubicure::Core do
|
|
|
73
73
|
:sing_together_miracle_magic | 44 | true
|
|
74
74
|
|
|
75
75
|
:memories | 55 | false
|
|
76
|
+
|
|
77
|
+
# NOTE: キュアエコーを含めると79人なのだが、公式や各種メディアが78人と言っているのでキュアエコーは含めていない
|
|
78
|
+
# c.f. https://twitter.com/precure_movie/status/1704691931094384957
|
|
79
|
+
:f | 78 | false
|
|
76
80
|
end
|
|
77
81
|
|
|
78
82
|
with_them do
|
data/spec/rubicure/movie_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: 3.2.
|
|
4
|
+
version: 3.2.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- sue445
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-09-
|
|
11
|
+
date: 2023-09-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|