rubicure 3.1.3 → 3.1.5
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/dependabot.yml +10 -0
- data/.github/workflows/pages.yml +62 -0
- data/.github/workflows/test.yml +13 -26
- data/.yardopts +1 -0
- data/CHANGELOG.md +13 -1
- data/README.md +28 -49
- data/Rakefile +9 -1
- data/config/series.yml +1 -1
- data/lib/rubicure/cure_finale.rb +3 -0
- data/lib/rubicure/version.rb +1 -1
- data/lib/rubicure.rb +1 -0
- data/rubicure.gemspec +6 -10
- metadata +8 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 642537b0fcef0761f8b9155aa62c4febcfad7cf885c77e874a03bf74acad9c25
|
|
4
|
+
data.tar.gz: c86995fb08e4097a5be839bec821633046436ee5e586dda89536e8d1f3cdb261
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f181e61d41f8ecf3b667b3bfbc0567e978b1f6b46f39a07282e11999a39770bb93bd3758d3b0cd5fb293f224b823834e9e18c5ac72af085f33c864e9156864ed
|
|
7
|
+
data.tar.gz: e950a754b6046ea4a2bda71b947643ed253e04912d80edb503661d1270d680498c939dc68efa33af67aeaf2576734c2c182b83ccb503076807951b288837a232
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# c.f. https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
|
|
2
|
+
version: 2
|
|
3
|
+
|
|
4
|
+
updates:
|
|
5
|
+
- package-ecosystem: github-actions
|
|
6
|
+
directory: /
|
|
7
|
+
schedule:
|
|
8
|
+
interval: weekly
|
|
9
|
+
assignees:
|
|
10
|
+
- sue445
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
# Simple workflow for deploying static content to GitHub Pages
|
|
2
|
+
name: Deploy static content to Pages
|
|
3
|
+
|
|
4
|
+
on:
|
|
5
|
+
# Runs on pushes targeting the default branch
|
|
6
|
+
push:
|
|
7
|
+
branches:
|
|
8
|
+
- master
|
|
9
|
+
|
|
10
|
+
# Allows you to run this workflow manually from the Actions tab
|
|
11
|
+
workflow_dispatch:
|
|
12
|
+
|
|
13
|
+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
|
|
14
|
+
permissions:
|
|
15
|
+
contents: read
|
|
16
|
+
pages: write
|
|
17
|
+
id-token: write
|
|
18
|
+
|
|
19
|
+
# Allow one concurrent deployment
|
|
20
|
+
concurrency:
|
|
21
|
+
group: "pages"
|
|
22
|
+
cancel-in-progress: true
|
|
23
|
+
|
|
24
|
+
jobs:
|
|
25
|
+
# Single deploy job since we're just deploying
|
|
26
|
+
deploy:
|
|
27
|
+
environment:
|
|
28
|
+
name: github-pages
|
|
29
|
+
url: ${{ steps.deployment.outputs.page_url }}
|
|
30
|
+
runs-on: ubuntu-latest
|
|
31
|
+
steps:
|
|
32
|
+
- name: Checkout
|
|
33
|
+
uses: actions/checkout@v3
|
|
34
|
+
|
|
35
|
+
- uses: ruby/setup-ruby@v1
|
|
36
|
+
with:
|
|
37
|
+
ruby-version: ruby
|
|
38
|
+
bundler-cache: true
|
|
39
|
+
|
|
40
|
+
- run: bundle exec yard
|
|
41
|
+
|
|
42
|
+
- name: Setup Pages
|
|
43
|
+
uses: actions/configure-pages@v2
|
|
44
|
+
- name: Upload artifact
|
|
45
|
+
uses: actions/upload-pages-artifact@v1
|
|
46
|
+
with:
|
|
47
|
+
# Upload entire repository
|
|
48
|
+
path: './doc'
|
|
49
|
+
- name: Deploy to GitHub Pages
|
|
50
|
+
id: deployment
|
|
51
|
+
uses: actions/deploy-pages@main
|
|
52
|
+
|
|
53
|
+
- name: Slack Notification (not success)
|
|
54
|
+
uses: lazy-actions/slatify@master
|
|
55
|
+
if: "! success()"
|
|
56
|
+
continue-on-error: true
|
|
57
|
+
with:
|
|
58
|
+
job_name: "*pages*"
|
|
59
|
+
type: ${{ job.status }}
|
|
60
|
+
icon_emoji: ":octocat:"
|
|
61
|
+
url: ${{ secrets.SLACK_WEBHOOK }}
|
|
62
|
+
token: ${{ secrets.GITHUB_TOKEN }}
|
data/.github/workflows/test.yml
CHANGED
|
@@ -13,48 +13,38 @@ on:
|
|
|
13
13
|
- cron: "0 10 * * 5" # JST 19:00 (Fri)
|
|
14
14
|
|
|
15
15
|
env:
|
|
16
|
-
CI: "true"
|
|
17
16
|
RUBYOPT: -EUTF-8
|
|
18
17
|
|
|
19
18
|
jobs:
|
|
20
19
|
test:
|
|
21
20
|
runs-on: ubuntu-latest
|
|
22
21
|
|
|
23
|
-
container: ${{ matrix.ruby }}
|
|
24
|
-
|
|
25
22
|
strategy:
|
|
26
23
|
fail-fast: false
|
|
27
24
|
|
|
28
25
|
matrix:
|
|
29
26
|
ruby:
|
|
30
|
-
-
|
|
31
|
-
-
|
|
32
|
-
-
|
|
33
|
-
-
|
|
34
|
-
-
|
|
35
|
-
include:
|
|
36
|
-
- ruby: rubylang/ruby:master-nightly-bionic
|
|
37
|
-
allow_failures: "true"
|
|
27
|
+
- "2.6"
|
|
28
|
+
- "2.7"
|
|
29
|
+
- "3.0"
|
|
30
|
+
- "3.1"
|
|
31
|
+
- "3.2"
|
|
38
32
|
|
|
39
33
|
steps:
|
|
40
|
-
- uses: actions/checkout@
|
|
34
|
+
- uses: actions/checkout@v3
|
|
41
35
|
|
|
42
|
-
-
|
|
43
|
-
uses: actions/cache@v1
|
|
44
|
-
id: cache_gem
|
|
36
|
+
- uses: ruby/setup-ruby@v1
|
|
45
37
|
with:
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
continue-on-error: ${{ matrix.allow_failures == 'true' }}
|
|
38
|
+
ruby-version: ${{ matrix.ruby }}
|
|
39
|
+
bundler-cache: true
|
|
40
|
+
|
|
41
|
+
- run: bundle update --jobs $(nproc) --retry 3
|
|
51
42
|
|
|
52
43
|
- name: bundle update
|
|
53
44
|
run: |
|
|
54
45
|
set -xe
|
|
55
46
|
bundle config path vendor/bundle
|
|
56
47
|
bundle update --jobs $(nproc) --retry 3
|
|
57
|
-
continue-on-error: ${{ matrix.allow_failures == 'true' }}
|
|
58
48
|
|
|
59
49
|
- name: Setup Code Climate Test Reporter
|
|
60
50
|
uses: aktions/codeclimate-test-reporter@v1
|
|
@@ -65,11 +55,9 @@ jobs:
|
|
|
65
55
|
|
|
66
56
|
- run: bundle exec rspec
|
|
67
57
|
timeout-minutes: 1
|
|
68
|
-
continue-on-error: ${{ matrix.allow_failures == 'true' }}
|
|
69
58
|
|
|
70
59
|
- run: bundle exec ruby examples/all.rb
|
|
71
60
|
timeout-minutes: 1
|
|
72
|
-
continue-on-error: ${{ matrix.allow_failures == 'true' }}
|
|
73
61
|
|
|
74
62
|
- name: Teardown Code Climate Test Reporter
|
|
75
63
|
uses: aktions/codeclimate-test-reporter@v1
|
|
@@ -81,11 +69,10 @@ jobs:
|
|
|
81
69
|
|
|
82
70
|
- run: bundle exec rubocop
|
|
83
71
|
timeout-minutes: 1
|
|
84
|
-
continue-on-error: ${{ matrix.allow_failures == 'true' }}
|
|
85
72
|
|
|
86
|
-
- run: bundle exec rubydoctest
|
|
73
|
+
- run: bundle exec rake rubydoctest
|
|
87
74
|
timeout-minutes: 1
|
|
88
|
-
|
|
75
|
+
if: matrix.ruby >= '3.2'
|
|
89
76
|
|
|
90
77
|
- name: Slack Notification (not success)
|
|
91
78
|
uses: lazy-actions/slatify@master
|
data/.yardopts
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
## master
|
|
2
|
-
[full changelog](http://github.com/sue445/rubicure/compare/v3.1.
|
|
2
|
+
[full changelog](http://github.com/sue445/rubicure/compare/v3.1.5...master)
|
|
3
|
+
|
|
4
|
+
## v3.1.5
|
|
5
|
+
[full changelog](http://github.com/sue445/rubicure/compare/v3.1.4...v3.1.5)
|
|
6
|
+
|
|
7
|
+
* Add `ended_date` of Delicious Party :heart: Precure
|
|
8
|
+
* https://github.com/sue445/rubicure/pull/278
|
|
9
|
+
|
|
10
|
+
## v3.1.4
|
|
11
|
+
[full changelog](http://github.com/sue445/rubicure/compare/v3.1.3...v3.1.4)
|
|
12
|
+
|
|
13
|
+
* Add turnover to Cure Finale (Amane <=> Gentle)
|
|
14
|
+
* https://github.com/sue445/rubicure/pull/271
|
|
3
15
|
|
|
4
16
|
## v3.1.3
|
|
5
17
|
[full changelog](http://github.com/sue445/rubicure/compare/v3.1.2...v3.1.3)
|
data/README.md
CHANGED
|
@@ -101,7 +101,7 @@ Or install it yourself as:
|
|
|
101
101
|
=> "HUGっと!プリキュア"
|
|
102
102
|
|
|
103
103
|
>> Precure.dokidoki
|
|
104
|
-
=> {:series_name=>"dokidoki", :title=>"ドキドキ!プリキュア", :started_date=>#<Date: 2013-02-03 ((2456327j,0s,0n),+0s
|
|
104
|
+
=> {:series_name=>"dokidoki", :title=>"ドキドキ!プリキュア", :started_date=>#<Date: 2013-02-03 ((2456327j,0s,0n),+0s,-Infj)>, :ended_date=>#<Date: 2014-01-26 ((2456684j,0s,0n),+0s,-Infj)>, :girls=>["cure_heart", "cure_diamond", "cure_rosetta", "cure_sword", "cure_ace"]}
|
|
105
105
|
```
|
|
106
106
|
|
|
107
107
|
other pattern
|
|
@@ -118,7 +118,7 @@ and [more aliases!](config/series.yml)
|
|
|
118
118
|
|
|
119
119
|
```ruby
|
|
120
120
|
>> Precure.now
|
|
121
|
-
=> {:series_name=>"delicious_party", :title=>"デリシャスパーティ♡プリキュア", :started_date=>#<Date: 2022-02-06 ((2459617j,0s,0n),+0s,
|
|
121
|
+
=> {:series_name=>"delicious_party", :title=>"デリシャスパーティ♡プリキュア", :started_date=>#<Date: 2022-02-06 ((2459617j,0s,0n),+0s,-Infj)>, :ended_date=>#<Date: 2023-01-29 ((2459974j,0s,0n),+0s,-Infj)>, :girls=>["cure_precious", "cure_spicy", "cure_yumyum", "cure_finale"]}
|
|
122
122
|
|
|
123
123
|
# -2013/1/27 : smile precure
|
|
124
124
|
# 2013/2/5 - : dokidoki precure
|
|
@@ -144,7 +144,7 @@ Precure.now
|
|
|
144
144
|
=> 5
|
|
145
145
|
|
|
146
146
|
>> Precure.smile.girls.first
|
|
147
|
-
=> {:girl_name=>"cure_happy", :human_name=>"星空みゆき", :precure_name=>"キュアハッピー", :cast_name=>"福圓美里", :created_date=>#<Date: 2012-02-05 ((2455963j,0s,0n),+0s
|
|
147
|
+
=> {:girl_name=>"cure_happy", :human_name=>"星空みゆき", :precure_name=>"キュアハッピー", :cast_name=>"福圓美里", :created_date=>#<Date: 2012-02-05 ((2455963j,0s,0n),+0s,-Infj)>, :color=>"pink", :transform_message=>"(レディ?)\nプリキュア・スマイルチャージ!\n(ゴー!ゴー!レッツ・ゴー!ハッピー!!)\nキラキラ輝く未来の光! キュアハッピー!\n5つの光が導く未来!\n輝け!スマイルプリキュア!", :extra_names=>["プリンセスハッピー", "ウルトラハッピー"], :attack_messages=>["プリキュア!ハッピーシャワー!!", "開け、ロイヤルクロック!\n(みんなの力を1つにするクル!)\n届け、希望の光!\nはばたけ!光り輝く未来へ!\nプリキュア!ロイヤルレインボーバースト!", "(みんなの力を1つにするクル!)\nプリキュア!ミラクルレインボーバースト!\n輝けー!!\nスマイルプリキュア!!"], :transform_calls=>["smile_charge"]}
|
|
148
148
|
|
|
149
149
|
>> Precure.smile.girls.map(&:human_name)
|
|
150
150
|
=> ["星空みゆき", "日野あかね", "黄瀬やよい", "緑川なお", "青木れいか"]
|
|
@@ -159,31 +159,31 @@ Precure.now
|
|
|
159
159
|
### Select own precure girl
|
|
160
160
|
```ruby
|
|
161
161
|
>> Cure.lemonade
|
|
162
|
-
=> {:girl_name=>"cure_lemonade", :human_name=>"春日野うらら", :precure_name=>"キュアレモネード", :cast_name=>"伊瀬茉莉也", :created_date=>#<Date: 2007-02-18 ((2454150j,0s,0n),+0s
|
|
162
|
+
=> {:girl_name=>"cure_lemonade", :human_name=>"春日野うらら", :precure_name=>"キュアレモネード", :cast_name=>"伊瀬茉莉也", :created_date=>#<Date: 2007-02-18 ((2454150j,0s,0n),+0s,-Infj)>, :color=>"yellow", :transform_message=>"プリキュア!メタモルフォーゼ!\nはじけるレモンの香り、キュアレモネード!\n希望の力と未来の光!\n華麗に羽ばたく5つの心!\nYes!プリキュア5!", :extra_names=>nil, :attack_messages=>["輝く乙女のはじける力、受けてみなさい!\nプリキュア!プリズム・チェーン!"], :transform_calls=>["metamorphose"]}
|
|
163
163
|
|
|
164
164
|
>> Cure.pine
|
|
165
|
-
=> {:girl_name=>"cure_pine", :human_name=>"山吹祈里", :precure_name=>"キュアパイン", :cast_name=>"中川亜紀子", :created_date=>#<Date: 2009-02-15 ((2454878j,0s,0n),+0s
|
|
165
|
+
=> {:girl_name=>"cure_pine", :human_name=>"山吹祈里", :precure_name=>"キュアパイン", :cast_name=>"中川亜紀子", :created_date=>#<Date: 2009-02-15 ((2454878j,0s,0n),+0s,-Infj)>, :color=>"yellow", :transform_message=>"チェインジ!プリキュア・ビートアップ!\nイエローハートは祈りのしるし!\nとれたてフレッシュ、キュアパイン!\nレッツプリキュア!", :extra_names=>["キュアエンジェルパイン"], :attack_messages=>["悪いの悪いの飛んでいけ!\nプリキュア!ヒーリングプレアーフレッシュ!"], :transform_calls=>["change_precure_beat_up", "change", "beat_up"]}
|
|
166
166
|
|
|
167
167
|
>> Cure.sunshine
|
|
168
|
-
=> {:girl_name=>"cure_sunshine", :human_name=>"明堂院いつき", :precure_name=>"キュアサンシャイン", :cast_name=>"桑島法子", :created_date=>#<Date: 2010-07-18 ((2455396j,0s,0n),+0s
|
|
168
|
+
=> {:girl_name=>"cure_sunshine", :human_name=>"明堂院いつき", :precure_name=>"キュアサンシャイン", :cast_name=>"桑島法子", :created_date=>#<Date: 2010-07-18 ((2455396j,0s,0n),+0s,-Infj)>, :color=>"yellow", :transform_message=>"(プリキュアの種、いくですぅ!)\nプリキュア!オープンマイハート!\n陽の光浴びる一輪の花! キュアサンシャイン!\nハートキャッチ、プリキュア!", :extra_names=>["スーパーキュアサンシャイン"], :attack_messages=>["花よ、舞い踊れ!\nプリキュア!ゴールドフォルテバースト!!", "花よ、咲き誇れ!\nプリキュア・ハートキャッチ・オーケストラ!!"], :transform_calls=>["open_my_heart"]}
|
|
169
169
|
|
|
170
170
|
>> Cure.muse
|
|
171
|
-
=> {:girl_name=>"cure_muse", :human_name=>"調辺アコ", :precure_name=>"キュアミューズ", :cast_name=>"大久保瑠美", :created_date=>#<Date: 2011-10-16 ((2455851j,0s,0n),+0s
|
|
171
|
+
=> {:girl_name=>"cure_muse", :human_name=>"調辺アコ", :precure_name=>"キュアミューズ", :cast_name=>"大久保瑠美", :created_date=>#<Date: 2011-10-16 ((2455851j,0s,0n),+0s,-Infj)>, :color=>"yellow", :transform_message=>"レッツプレイ!プリキュアモジュレーション!!\n爪弾くは女神の調べ! キュアミューズ!\n届け4人の組曲!スイートプリキュア!", :extra_names=>["クレッシェンドミューズ"], :attack_messages=>["おいで、シリー!\nシの音符の、シャイニングメロディ!\nプリキュア!スパークリングシャワー!!\n三拍子!1、2、3\nフィナーレ!", "届けましょう、希望のシンフォニー!\nプリキュア!スイートセッションアンサンブル!\nクレッシェンド!!\nフィナーレ!"], :transform_calls=>["lets_play_precure_modulation", "lets_play", "modulation"]}
|
|
172
172
|
|
|
173
173
|
>> Cure.peace
|
|
174
|
-
=> {:girl_name=>"cure_peace", :human_name=>"黄瀬やよい", :precure_name=>"キュアピース", :cast_name=>"金元寿子", :created_date=>#<Date: 2012-02-19 ((2455977j,0s,0n),+0s
|
|
174
|
+
=> {:girl_name=>"cure_peace", :human_name=>"黄瀬やよい", :precure_name=>"キュアピース", :cast_name=>"金元寿子", :created_date=>#<Date: 2012-02-19 ((2455977j,0s,0n),+0s,-Infj)>, :color=>"yellow", :transform_message=>"(レディ?)\nプリキュア・スマイルチャージ!\n(ゴー!ゴー!レッツ・ゴー!ピース!!)\nピカピカピカリンジャンケンポン! キュアピース!\n5つの光が導く未来!\n輝け!スマイルプリキュア!", :extra_names=>["プリンセスピース", "ウルトラピース"], :attack_messages=>["プリキュア!ピースサンダー!!", "開け、ロイヤルクロック!\n(みんなの力を1つにするクル!)\n届け、希望の光!\nはばたけ!光り輝く未来へ!\nプリキュア!ロイヤルレインボーバースト!", "(みんなの力を1つにするクル!)\nプリキュア!ミラクルレインボーバースト!\n輝けー!!\nスマイルプリキュア!!"], :transform_calls=>["smile_charge"]}
|
|
175
175
|
|
|
176
176
|
>> Cure.rosetta
|
|
177
|
-
=> {:girl_name=>"cure_rosetta", :human_name=>"四葉ありす", :precure_name=>"キュアロゼッタ", :cast_name=>"渕上舞", :created_date=>#<Date: 2013-02-24 ((2456348j,0s,0n),+0s
|
|
177
|
+
=> {:girl_name=>"cure_rosetta", :human_name=>"四葉ありす", :precure_name=>"キュアロゼッタ", :cast_name=>"渕上舞", :created_date=>#<Date: 2013-02-24 ((2456348j,0s,0n),+0s,-Infj)>, :color=>"yellow", :birthday=>"5/28", :transform_message=>"プリキュアラブリンク!\nL! O! V! E!\nひだまりポカポカ キュアロゼッタ!\n響け愛の鼓動!ドキドキプリキュア!\n世界を制するのは愛だけです、\nさぁ、あなたも私と愛を育んでくださいな", :extra_names=>nil, :attack_messages=>["カッチカチの!ロゼッタウォール!"], :transform_calls=>["love_link"]}
|
|
178
178
|
|
|
179
179
|
>> Cure.honey
|
|
180
|
-
=> {:girl_name=>"cure_honey", :human_name=>"大森ゆうこ", :precure_name=>"キュアハニー", :cast_name=>"北川里奈", :created_date=>#<Date: 2014-03-15 ((2456732j,0s,0n),+0s
|
|
180
|
+
=> {:girl_name=>"cure_honey", :human_name=>"大森ゆうこ", :precure_name=>"キュアハニー", :cast_name=>"北川里奈", :created_date=>#<Date: 2014-03-15 ((2456732j,0s,0n),+0s,-Infj)>, :color=>"yellow", :transform_message=>"(かわルンルン!)\nプリキュアくるりんミラーチェンジ!\n大地に実る命の光!キュアハニー!\nハピネス注入!幸せチャージ!\nハピネスチャージプリキュア!", :extra_names=>["キュアハニー ポップコーンチア"], :attack_messages=>["命の光を聖なる力へ!\nハニーバトン!\nプリキュア!スパークリングバトンアタック!!\nイエイ!\n命よ、天に帰れ!\n(ゴクラ〜ク…)", "(かわルンルン!)\nプリキュアくるりんミラーチェンジ!ポップコーンチア!!\nプリキュア!リボンハートエクスプロージョン!!\nビクトリー!!", "(かわルンルン!)\nプリキュアくるりんミラーチェンジ!ココナッツサンバ!!\nプリキュア!マラカスリズムスパーク!!\nマンボ!!"], :transform_calls=>["kururin_mirror_change"]}
|
|
181
181
|
|
|
182
182
|
>> Shiny.luminous
|
|
183
|
-
=> {:girl_name=>"shiny_luminous", :human_name=>"九条ひかり", :precure_name=>"シャイニールミナス", :cast_name=>"田中理恵", :created_date=>#<Date: 2005-03-06 ((2453436j,0s,0n),+0s
|
|
183
|
+
=> {:girl_name=>"shiny_luminous", :human_name=>"九条ひかり", :precure_name=>"シャイニールミナス", :cast_name=>"田中理恵", :created_date=>#<Date: 2005-03-06 ((2453436j,0s,0n),+0s,-Infj)>, :color=>"yellow", :birthday=>"9/9", :transform_message=>"ルミナス・シャイニングストリーム!\n輝く命、シャイニールミナス!\n光の心と光の意志、すべてを一つにするために!", :extra_names=>nil, :attack_messages=>["光の意志よ!私に勇気を!希望と力を!!\nルミナス・ハーティエル・アンクション!"], :transform_calls=>["shining_stream"]}
|
|
184
184
|
|
|
185
185
|
>> Milky.rose
|
|
186
|
-
=> {:girl_name=>"milky_rose", :human_name=>"美々野くるみ", :precure_name=>"ミルキィローズ", :cast_name=>"仙台エリ", :created_date=>#<Date: 2008-04-06 ((2454563j,0s,0n),+0s
|
|
186
|
+
=> {:girl_name=>"milky_rose", :human_name=>"美々野くるみ", :precure_name=>"ミルキィローズ", :cast_name=>"仙台エリ", :created_date=>#<Date: 2008-04-06 ((2454563j,0s,0n),+0s,-Infj)>, :color=>"purple", :transform_message=>"スカイローズ・トランスレイト!\n青いバラは秘密のしるし! ミルキィローズ!", :extra_names=>nil, :attack_messages=>["邪悪な力を包み込む\nバラの吹雪を咲かせましょう!\nミルキィローズ・ブリザード!"], :transform_calls=>["sky_rose_translate", "translate"]}
|
|
187
187
|
```
|
|
188
188
|
|
|
189
189
|
and [more aliases!](config/girls/)
|
|
@@ -633,6 +633,7 @@ Go!プリンセスプリキュア
|
|
|
633
633
|
```
|
|
634
634
|
|
|
635
635
|
### Not operator
|
|
636
|
+
#### !Cure.passion
|
|
636
637
|
```ruby
|
|
637
638
|
>> passion = Cure.passion
|
|
638
639
|
>> passion.name
|
|
@@ -644,6 +645,7 @@ Go!プリンセスプリキュア
|
|
|
644
645
|
=> "イース"
|
|
645
646
|
```
|
|
646
647
|
|
|
648
|
+
#### !Cure.beat
|
|
647
649
|
```ruby
|
|
648
650
|
>> beat = Cure.beat
|
|
649
651
|
|
|
@@ -656,6 +658,7 @@ Go!プリンセスプリキュア
|
|
|
656
658
|
=> "セイレーン"
|
|
657
659
|
```
|
|
658
660
|
|
|
661
|
+
#### !Cure.scarlet
|
|
659
662
|
```ruby
|
|
660
663
|
>> scarlet = Cure.scarlet
|
|
661
664
|
>> scarlet.name
|
|
@@ -667,6 +670,18 @@ Go!プリンセスプリキュア
|
|
|
667
670
|
=> "トワイライト"
|
|
668
671
|
```
|
|
669
672
|
|
|
673
|
+
#### !Cure.finale
|
|
674
|
+
```ruby
|
|
675
|
+
>> finale = Cure.finale
|
|
676
|
+
>> finale.name
|
|
677
|
+
=> "菓彩あまね"
|
|
678
|
+
|
|
679
|
+
>> !finale
|
|
680
|
+
|
|
681
|
+
>> finale.name
|
|
682
|
+
=> "ジェントルー"
|
|
683
|
+
```
|
|
684
|
+
|
|
670
685
|
### Cure.cosmo.transform!(:rainbow_perfume)
|
|
671
686
|
```ruby
|
|
672
687
|
Cure.cosmo.transform!(:rainbow_perfume)
|
|
@@ -766,43 +781,7 @@ Cure.cosmo.name
|
|
|
766
781
|
```
|
|
767
782
|
|
|
768
783
|
## More reference
|
|
769
|
-
http://
|
|
770
|
-
|
|
771
|
-
## API Server is available!
|
|
772
|
-
https://rubicure.herokuapp.com/
|
|
773
|
-
|
|
774
|
-
```sh
|
|
775
|
-
$ curl -s https://rubicure.herokuapp.com/series/go_princess.json | jq .
|
|
776
|
-
{
|
|
777
|
-
"series_name": "go_princess",
|
|
778
|
-
"title": "Go!プリンセスプリキュア",
|
|
779
|
-
"started_date": "2015-02-01",
|
|
780
|
-
"girls": [
|
|
781
|
-
"cure_flora",
|
|
782
|
-
"cure_mermaid",
|
|
783
|
-
"cure_twinkle",
|
|
784
|
-
"cure_scarlet"
|
|
785
|
-
]
|
|
786
|
-
}
|
|
787
|
-
|
|
788
|
-
$ curl -s https://rubicure.herokuapp.com/girls/cure_twinkle.json | jq .
|
|
789
|
-
{
|
|
790
|
-
"girl_name": "cure_twinkle",
|
|
791
|
-
"human_name": "天ノ川きらら",
|
|
792
|
-
"precure_name": "キュアトゥインクル",
|
|
793
|
-
"cast_name": "山村響",
|
|
794
|
-
"color": "yellow",
|
|
795
|
-
"created_date": "2015-02-22",
|
|
796
|
-
"transform_message": "プリキュア!プリンセスエンゲージ!\nきらめく星のプリンセス!キュアトゥインクル!\n強く、やさしく、美しく!\nGo!プリンセスプリキュア!\n冷たい檻に閉ざされた夢、返していただきますわ!\nお覚悟はよろしくて?",
|
|
797
|
-
"extra_names": null,
|
|
798
|
-
"attack_messages": [
|
|
799
|
-
"エクスチェンジ!モードエレガント!\nキラキラ、星よ!プリキュア・トゥインクル・ハミング!\n(ドリーミング)\nごきげんよう\n"
|
|
800
|
-
],
|
|
801
|
-
"transform_calls": [
|
|
802
|
-
"princess_engage"
|
|
803
|
-
]
|
|
804
|
-
}
|
|
805
|
-
```
|
|
784
|
+
http://sue445.github.io/rubicure/
|
|
806
785
|
|
|
807
786
|
## Versioning Policy
|
|
808
787
|
`rubicure` uses **Semantic Cure Versioning** :heart:
|
data/Rakefile
CHANGED
|
@@ -3,7 +3,15 @@ require "rspec/core/rake_task"
|
|
|
3
3
|
|
|
4
4
|
RSpec::Core::RakeTask.new(:spec)
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
desc "Run rubydoctest"
|
|
7
|
+
task :rubydoctest do
|
|
8
|
+
sh "rubydoctest README.md"
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
desc "Run tests"
|
|
12
|
+
task :test => [:spec, :rubydoctest]
|
|
13
|
+
|
|
14
|
+
task :default => :test
|
|
7
15
|
|
|
8
16
|
require "yard"
|
|
9
17
|
|
data/config/series.yml
CHANGED
data/lib/rubicure/version.rb
CHANGED
data/lib/rubicure.rb
CHANGED
data/rubicure.gemspec
CHANGED
|
@@ -14,15 +14,11 @@ Gem::Specification.new do |spec|
|
|
|
14
14
|
|
|
15
15
|
spec.required_ruby_version = ">= 2.6"
|
|
16
16
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
else
|
|
23
|
-
raise "RubyGems 2.0 or newer is required to protect against " \
|
|
24
|
-
"public gem pushes."
|
|
25
|
-
end
|
|
17
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
|
18
|
+
spec.metadata["source_code_uri"] = spec.homepage
|
|
19
|
+
spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/master/CHANGELOG.md"
|
|
20
|
+
spec.metadata["documentation_uri"] = "https://sue445.github.io/rubicure/"
|
|
21
|
+
spec.metadata["rubygems_mfa_required"] = "true"
|
|
26
22
|
|
|
27
23
|
spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
|
|
28
24
|
|
|
@@ -39,7 +35,7 @@ Gem::Specification.new do |spec|
|
|
|
39
35
|
spec.add_dependency "sengiri_yaml", ">= 1.0.0"
|
|
40
36
|
|
|
41
37
|
spec.add_development_dependency "bundler", ">= 1.3.5"
|
|
42
|
-
spec.add_development_dependency "
|
|
38
|
+
spec.add_development_dependency "coveralls_reborn"
|
|
43
39
|
spec.add_development_dependency "delorean"
|
|
44
40
|
spec.add_development_dependency "onkcop", "1.0.0.0"
|
|
45
41
|
spec.add_development_dependency "rake"
|
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.1.
|
|
4
|
+
version: 3.1.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- sue445
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-01-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -67,7 +67,7 @@ dependencies:
|
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
68
|
version: 1.3.5
|
|
69
69
|
- !ruby/object:Gem::Dependency
|
|
70
|
-
name:
|
|
70
|
+
name: coveralls_reborn
|
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
|
72
72
|
requirements:
|
|
73
73
|
- - ">="
|
|
@@ -312,6 +312,8 @@ extensions: []
|
|
|
312
312
|
extra_rdoc_files: []
|
|
313
313
|
files:
|
|
314
314
|
- ".coveralls.yml"
|
|
315
|
+
- ".github/dependabot.yml"
|
|
316
|
+
- ".github/workflows/pages.yml"
|
|
315
317
|
- ".github/workflows/test.yml"
|
|
316
318
|
- ".gitignore"
|
|
317
319
|
- ".rspec"
|
|
@@ -351,6 +353,7 @@ files:
|
|
|
351
353
|
- lib/rubicure/cure.rb
|
|
352
354
|
- lib/rubicure/cure_beat.rb
|
|
353
355
|
- lib/rubicure/cure_cosmo.rb
|
|
356
|
+
- lib/rubicure/cure_finale.rb
|
|
354
357
|
- lib/rubicure/cure_passion.rb
|
|
355
358
|
- lib/rubicure/cure_peace.rb
|
|
356
359
|
- lib/rubicure/cure_scarlet.rb
|
|
@@ -383,6 +386,7 @@ metadata:
|
|
|
383
386
|
homepage_uri: https://github.com/sue445/rubicure
|
|
384
387
|
source_code_uri: https://github.com/sue445/rubicure
|
|
385
388
|
changelog_uri: https://github.com/sue445/rubicure/blob/master/CHANGELOG.md
|
|
389
|
+
documentation_uri: https://sue445.github.io/rubicure/
|
|
386
390
|
rubygems_mfa_required: 'true'
|
|
387
391
|
post_install_message:
|
|
388
392
|
rdoc_options: []
|
|
@@ -399,7 +403,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
399
403
|
- !ruby/object:Gem::Version
|
|
400
404
|
version: '0'
|
|
401
405
|
requirements: []
|
|
402
|
-
rubygems_version: 3.
|
|
406
|
+
rubygems_version: 3.4.1
|
|
403
407
|
signing_key:
|
|
404
408
|
specification_version: 4
|
|
405
409
|
summary: All about Japanese battle heroine "Pretty Cure (Precure)".
|