Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add CureMiracle and CureMagical's Pink Diamond Style ♦️ #326

Merged
merged 2 commits into from
Jan 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:

- run: bundle exec rake rubydoctest
timeout-minutes: 1
if: matrix.ruby >= '3.4'
if: matrix.ruby >= '3.4' && matrix.gemfile >= 'activesupport_7_1'

- name: Slack Notification (not success)
uses: act10ns/slack@v2
Expand Down
31 changes: 31 additions & 0 deletions config/girls/013_maho_girls.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,21 @@ cure_miracle: &cure_miracle
トパーズ!金色の希望よ私達の手に!
フルフルリンクル!
プリキュア・トパーズ・エスペランサ!
pink_diamond:
girl_name: cure_miracle_pink_diamond
precure_name: キュアミラクル(ピンクダイヤスタイル)
color: pink
created_date: 2025-01-11 # episode 1
transform_message: |-
キュアップ・ラパパ! ピンクダイヤ!
ミラクル・マジカル・ジュエリーレ!
ふたりの奇跡!キュアミラクル!
魔法つかいプリキュア!!
attack_messages:
- |-
ピンクダイヤ!永遠の輝きを私達の手に!
フルフルリンクル!
プリキュア・ダイヤモンド・エターナル!

cure_magical: &cure_magical
girl_name: cure_magical
Expand Down Expand Up @@ -151,6 +166,22 @@ cure_magical: &cure_magical
トパーズ!金色の希望よ私達の手に!
フルフルリンクル!
プリキュア・トパーズ・エスペランサ!
pink_diamond:
girl_name: cure_magical_pinkdiamond
precure_name: キュアマジカル(ピンクダイヤスタイル)
color: purple
created_date: 2025-01-11 # episode 1
transform_message: |-
キュアップ・ラパパ! ピンクダイヤ!
ミラクル・マジカル・ジュエリーレ!
ふたりの魔法!キュアマジカル!
魔法つかいプリキュア!!
attack_messages:
- |-
ピンクダイヤ!永遠の輝きを私達の手に!
フルフルリンクル!
プリキュア・ダイヤモンド・エターナル!

cure_felice: &cure_felice
girl_name: cure_felice
human_name: 花海ことは
Expand Down
3 changes: 3 additions & 0 deletions examples/all.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# FIXME: NameError: uninitialized constant ActiveSupport::LoggerThreadSafeLevel::Logger when activesupport < 7.1
require "logger"

require "rubicure"

Precure.each_with_series do |series|
Expand Down
4 changes: 4 additions & 0 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@
end

$LOAD_PATH.unshift File.expand_path("../lib", __dir__)

# FIXME: NameError: uninitialized constant ActiveSupport::LoggerThreadSafeLevel::Logger when activesupport < 7.1
require "logger"

require "rubicure"
require "rspec"
require "rspec-parameterized"
Expand Down
Loading