rubicure 3.3.0.rc1 → 3.3.0.rc2
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 +4 -7
- data/.github/workflows/test.yml +7 -12
- data/CHANGELOG.md +7 -1
- data/Gemfile +2 -0
- data/README.md +3 -3
- data/config/girls/021_wonderful.yml +1 -1
- data/gemfiles/activesupport_5_0.gemfile +2 -0
- data/gemfiles/activesupport_5_1.gemfile +2 -0
- data/gemfiles/activesupport_5_2.gemfile +2 -0
- data/gemfiles/activesupport_6_0.gemfile +2 -0
- data/gemfiles/activesupport_6_1.gemfile +2 -0
- data/gemfiles/activesupport_7_0.gemfile +2 -0
- data/gemfiles/activesupport_7_1.gemfile +2 -0
- data/gemfiles/common.gemfile +2 -0
- data/lib/rubicure/version.rb +1 -1
- data/rubicure.gemspec +0 -1
- metadata +3 -16
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9d05761f8d368cb513992c47f957c8b6989ebb30b06c45bc74fba69e54bc7afb
|
|
4
|
+
data.tar.gz: 6b55bc504ab854c85fe1af852bd6f2b521e65b3c445410d74f99909457eb885c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 99e656cf871e9b3c360b10f890b92130307406f367b5f2858d6e2c8b4e212d24040ef9ea5023368ef0df16524166d9454b637b92d202d30d4a7467e4952a7045
|
|
7
|
+
data.tar.gz: 95c6c29a6b453893db87958353f193e79a16095ee6f91659e2f1be6e1b2c068002273048a795cff384cbe9f3f68f9874afc1256bd08f87fc5bd86d76bcd9c680
|
data/.github/workflows/pages.yml
CHANGED
|
@@ -40,7 +40,7 @@ jobs:
|
|
|
40
40
|
- run: bundle exec yard
|
|
41
41
|
|
|
42
42
|
- name: Setup Pages
|
|
43
|
-
uses: actions/configure-pages@
|
|
43
|
+
uses: actions/configure-pages@v5
|
|
44
44
|
- name: Upload artifact
|
|
45
45
|
uses: actions/upload-pages-artifact@v3
|
|
46
46
|
with:
|
|
@@ -51,12 +51,9 @@ jobs:
|
|
|
51
51
|
uses: actions/deploy-pages@main
|
|
52
52
|
|
|
53
53
|
- name: Slack Notification (not success)
|
|
54
|
-
uses:
|
|
54
|
+
uses: act10ns/slack@v2
|
|
55
55
|
if: "! success()"
|
|
56
56
|
continue-on-error: true
|
|
57
57
|
with:
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
icon_emoji: ":octocat:"
|
|
61
|
-
url: ${{ secrets.SLACK_WEBHOOK }}
|
|
62
|
-
token: ${{ secrets.GITHUB_TOKEN }}
|
|
58
|
+
status: ${{ job.status }}
|
|
59
|
+
webhook-url: ${{ secrets.SLACK_WEBHOOK }}
|
data/.github/workflows/test.yml
CHANGED
|
@@ -92,15 +92,13 @@ jobs:
|
|
|
92
92
|
if: matrix.ruby >= '3.2'
|
|
93
93
|
|
|
94
94
|
- name: Slack Notification (not success)
|
|
95
|
-
uses:
|
|
95
|
+
uses: act10ns/slack@v2
|
|
96
96
|
if: "! success()"
|
|
97
97
|
continue-on-error: true
|
|
98
98
|
with:
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
url: ${{ secrets.SLACK_WEBHOOK }}
|
|
103
|
-
token: ${{ secrets.GITHUB_TOKEN }}
|
|
99
|
+
status: ${{ job.status }}
|
|
100
|
+
webhook-url: ${{ secrets.SLACK_WEBHOOK }}
|
|
101
|
+
matrix: ${{ toJson(matrix) }}
|
|
104
102
|
|
|
105
103
|
notify:
|
|
106
104
|
needs:
|
|
@@ -110,12 +108,9 @@ jobs:
|
|
|
110
108
|
|
|
111
109
|
steps:
|
|
112
110
|
- name: Slack Notification (success)
|
|
113
|
-
uses:
|
|
111
|
+
uses: act10ns/slack@v2
|
|
114
112
|
if: always()
|
|
115
113
|
continue-on-error: true
|
|
116
114
|
with:
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
icon_emoji: ":octocat:"
|
|
120
|
-
url: ${{ secrets.SLACK_WEBHOOK }}
|
|
121
|
-
token: ${{ secrets.GITHUB_TOKEN }}
|
|
115
|
+
status: ${{ job.status }}
|
|
116
|
+
webhook-url: ${{ secrets.SLACK_WEBHOOK }}
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
## master
|
|
2
|
-
[full changelog](http://github.com/sue445/rubicure/compare/v3.3.0.
|
|
2
|
+
[full changelog](http://github.com/sue445/rubicure/compare/v3.3.0.rc2...master)
|
|
3
|
+
|
|
4
|
+
## v3.3.0.rc2
|
|
5
|
+
[full changelog](http://github.com/sue445/rubicure/compare/v3.3.0.rc1...v3.3.0.rc2)
|
|
6
|
+
|
|
7
|
+
* Add Cure Wonderful's birthday :dog:
|
|
8
|
+
* https://github.com/sue445/rubicure/pull/306
|
|
3
9
|
|
|
4
10
|
## v3.3.0.rc1
|
|
5
11
|
[full changelog](http://github.com/sue445/rubicure/compare/v3.2.6...v3.3.0.rc1)
|
data/Gemfile
CHANGED
data/README.md
CHANGED
|
@@ -757,12 +757,12 @@ Cure.cosmo.name
|
|
|
757
757
|
=> true
|
|
758
758
|
|
|
759
759
|
>> Precure.all_girls.select(&:have_birthday?).map(&:human_name)
|
|
760
|
-
=> ["美墨なぎさ", "雪城ほのか", "九条ひかり", "日向咲", "美翔舞", "相田マナ", "菱川六花", "四葉ありす", "剣崎真琴", "春野はるか", "海藤みなみ", "天ノ川きらら", "紅城トワ", "朝日奈みらい", "十六夜リコ", "宇佐美いちか", "有栖川ひまり", "立神あおい", "琴爪ゆかり", "剣城あきら", "キラ星シエル", "野乃はな", "薬師寺さあや", "輝木ほまれ", "愛崎えみる", "ルールー・アムール", "星奈ひかる", "羽衣ララ", "天宮えれな", "香久矢まどか", "ユニ", "花寺のどか", "沢泉ちゆ", "平光ひなた", "風鈴アスミ", "夏海まなつ", "涼村さんご", "一ノ瀬みのり", "滝沢あすか", "ローラ・ラメール", "和実ゆい", "芙羽ここね", "華満らん", "菓彩あまね", "ソラ・ハレワタール", "虹ヶ丘ましろ", "夕凪ツバサ", "聖あげは", "プリンセス・エル"]
|
|
760
|
+
=> ["美墨なぎさ", "雪城ほのか", "九条ひかり", "日向咲", "美翔舞", "相田マナ", "菱川六花", "四葉ありす", "剣崎真琴", "春野はるか", "海藤みなみ", "天ノ川きらら", "紅城トワ", "朝日奈みらい", "十六夜リコ", "宇佐美いちか", "有栖川ひまり", "立神あおい", "琴爪ゆかり", "剣城あきら", "キラ星シエル", "野乃はな", "薬師寺さあや", "輝木ほまれ", "愛崎えみる", "ルールー・アムール", "星奈ひかる", "羽衣ララ", "天宮えれな", "香久矢まどか", "ユニ", "花寺のどか", "沢泉ちゆ", "平光ひなた", "風鈴アスミ", "夏海まなつ", "涼村さんご", "一ノ瀬みのり", "滝沢あすか", "ローラ・ラメール", "和実ゆい", "芙羽ここね", "華満らん", "菓彩あまね", "ソラ・ハレワタール", "虹ヶ丘ましろ", "夕凪ツバサ", "聖あげは", "プリンセス・エル", "犬飼こむぎ"]
|
|
761
761
|
>> Precure.all_girls.select(&:have_birthday?).sort_by { |girl| Date.parse(girl.birthday) }.map{ |girl| [girl.birthday, girl.human_name] }
|
|
762
|
-
=> [["1/7", "宇佐美いちか"], ["1/20", "野乃はな"], ["3/9", "花寺のどか"], ["3/12", "プリンセス・エル"], ["3/13", "芙羽ここね"], ["4/4", "雪城ほのか"], ["4/8", "輝木ほまれ"], ["4/10", "春野はるか"], ["4/12", "星奈ひかる"], ["4/16", "有栖川ひまり"], ["5/9", "涼村さんご"], ["5/21", "夕凪ツバサ"], ["5/28", "四葉ありす"], ["6/10", "薬師寺さあや"], ["6/11", "琴爪ゆかり"], ["6/12", "朝日奈みらい"], ["6/30", "ローラ・ラメール"], ["7/7", "羽衣ララ"], ["7/11", "華満らん"], ["7/15", "愛崎えみる"], ["7/16", "虹ヶ丘ましろ"], ["7/20", "海藤みなみ"], ["7/30", "キラ星シエル"], ["8/1", "夏海まなつ"], ["8/4", "相田マナ"], ["8/7", "日向咲"], ["8/8", "聖あげは"], ["8/16", "風鈴アスミ"], ["8/21", "沢泉ちゆ"], ["8/27", "立神あおい"], ["8/31", "和実ゆい"], ["9/8", "天宮えれな"], ["9/9", "九条ひかり"], ["9/12", "天ノ川きらら"], ["9/17", "菱川六花"], ["9/20", "ソラ・ハレワタール"], ["9/23", "ルールー・アムール"], ["9/24", "剣城あきら"], ["10/4", "平光ひなた"], ["10/10", "美墨なぎさ"], ["10/11", "ユニ"], ["10/15", "滝沢あすか"], ["11/4", "剣崎真琴"], ["11/12", "十六夜リコ"], ["11/20", "美翔舞"], ["11/21", "一ノ瀬みのり"], ["11/23", "香久矢まどか"], ["11/24", "菓彩あまね"], ["12/15", "紅城トワ"]]
|
|
762
|
+
=> [["1/7", "宇佐美いちか"], ["1/20", "野乃はな"], ["3/9", "花寺のどか"], ["3/12", "プリンセス・エル"], ["3/13", "芙羽ここね"], ["4/4", "雪城ほのか"], ["4/8", "輝木ほまれ"], ["4/10", "春野はるか"], ["4/12", "星奈ひかる"], ["4/16", "有栖川ひまり"], ["5/9", "涼村さんご"], ["5/13", "犬飼こむぎ"], ["5/21", "夕凪ツバサ"], ["5/28", "四葉ありす"], ["6/10", "薬師寺さあや"], ["6/11", "琴爪ゆかり"], ["6/12", "朝日奈みらい"], ["6/30", "ローラ・ラメール"], ["7/7", "羽衣ララ"], ["7/11", "華満らん"], ["7/15", "愛崎えみる"], ["7/16", "虹ヶ丘ましろ"], ["7/20", "海藤みなみ"], ["7/30", "キラ星シエル"], ["8/1", "夏海まなつ"], ["8/4", "相田マナ"], ["8/7", "日向咲"], ["8/8", "聖あげは"], ["8/16", "風鈴アスミ"], ["8/21", "沢泉ちゆ"], ["8/27", "立神あおい"], ["8/31", "和実ゆい"], ["9/8", "天宮えれな"], ["9/9", "九条ひかり"], ["9/12", "天ノ川きらら"], ["9/17", "菱川六花"], ["9/20", "ソラ・ハレワタール"], ["9/23", "ルールー・アムール"], ["9/24", "剣城あきら"], ["10/4", "平光ひなた"], ["10/10", "美墨なぎさ"], ["10/11", "ユニ"], ["10/15", "滝沢あすか"], ["11/4", "剣崎真琴"], ["11/12", "十六夜リコ"], ["11/20", "美翔舞"], ["11/21", "一ノ瀬みのり"], ["11/23", "香久矢まどか"], ["11/24", "菓彩あまね"], ["12/15", "紅城トワ"]]
|
|
763
763
|
|
|
764
764
|
>> Precure.all_girls.select(&:have_birthday?).map(&:human_name).count
|
|
765
|
-
=>
|
|
765
|
+
=> 50
|
|
766
766
|
```
|
|
767
767
|
|
|
768
768
|
* `has_birthday?` is alias to `have_birthday?`
|
data/lib/rubicure/version.rb
CHANGED
data/rubicure.gemspec
CHANGED
|
@@ -48,7 +48,6 @@ Gem::Specification.new do |spec|
|
|
|
48
48
|
spec.add_development_dependency "rubocop-performance", "1.9.2"
|
|
49
49
|
spec.add_development_dependency "rubocop-rake", "0.5.1"
|
|
50
50
|
spec.add_development_dependency "rubocop-rspec", "2.1.0"
|
|
51
|
-
spec.add_development_dependency "rubydoctest"
|
|
52
51
|
spec.add_development_dependency "simplecov"
|
|
53
52
|
spec.add_development_dependency "unparser", ">= 0.4.5"
|
|
54
53
|
spec.add_development_dependency "yard"
|
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.0.
|
|
4
|
+
version: 3.3.0.rc2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- sue445
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-04-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -248,20 +248,6 @@ dependencies:
|
|
|
248
248
|
- - '='
|
|
249
249
|
- !ruby/object:Gem::Version
|
|
250
250
|
version: 2.1.0
|
|
251
|
-
- !ruby/object:Gem::Dependency
|
|
252
|
-
name: rubydoctest
|
|
253
|
-
requirement: !ruby/object:Gem::Requirement
|
|
254
|
-
requirements:
|
|
255
|
-
- - ">="
|
|
256
|
-
- !ruby/object:Gem::Version
|
|
257
|
-
version: '0'
|
|
258
|
-
type: :development
|
|
259
|
-
prerelease: false
|
|
260
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
261
|
-
requirements:
|
|
262
|
-
- - ">="
|
|
263
|
-
- !ruby/object:Gem::Version
|
|
264
|
-
version: '0'
|
|
265
251
|
- !ruby/object:Gem::Dependency
|
|
266
252
|
name: simplecov
|
|
267
253
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -355,6 +341,7 @@ files:
|
|
|
355
341
|
- gemfiles/activesupport_6_1.gemfile
|
|
356
342
|
- gemfiles/activesupport_7_0.gemfile
|
|
357
343
|
- gemfiles/activesupport_7_1.gemfile
|
|
344
|
+
- gemfiles/common.gemfile
|
|
358
345
|
- lib/rubicure.rb
|
|
359
346
|
- lib/rubicure/concerns/gengou.rb
|
|
360
347
|
- lib/rubicure/concerns/util.rb
|