rubicure 1.2.6 → 1.3.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cc36e50580389b8c11bd671d6ebde58547294d55af346199949224daa989e8fd
4
- data.tar.gz: 644adca5e717f7d75bc88a07c0956ca7c8f5533ade0e68387719254867b99f14
3
+ metadata.gz: 4b535dadc86c791e8e1b6cc0a49d74a0f5038b952719c77a9ce0e5794cb275d4
4
+ data.tar.gz: fcdcf15055c33f48c339b93bddae49bfe02404d40ce9aff0a4286e8497877ba9
5
5
  SHA512:
6
- metadata.gz: 00ade1b4208a4b0dc1f16b248ecc8c21d9caf6adccf1b8c4b1a9269ee60e8e27b58302b8e9be80f97ac640342c21a9f309a88f02e7f64af0083b326e2a844797
7
- data.tar.gz: 906d25c593a3817f079b4d0316bd5def3ace806272ae58a85f7d0d9c365d2fc903ad7207aa7c176362382f1e6040471ea96ac4b6b7748ad4e02d7697f3c2fa33
6
+ metadata.gz: da8b11c1f8570a8cc14b47d184d5b45653f29753c0dbd71943e50d8eb6131808e031542491ef6451afdbafa716aab7fb11b806994a1bcd059f7bff8747471ed9
7
+ data.tar.gz: 02f4f4933621cb14bd7d3421638b3db223b85b3b258379a84a6f2f5fad0fa3009d3ae7d18f312e0e8d9c3adde20637188beebe04c7d73ba6897e7378c9581385
@@ -2,76 +2,45 @@ name: test
2
2
 
3
3
  on:
4
4
  push:
5
+ branches:
6
+ - master
7
+ pull_request:
8
+ types:
9
+ - opened
10
+ - synchronize
11
+ - reopened
5
12
  schedule:
6
13
  - cron: "0 10 * * 5" # JST 19:00 (Fri)
7
14
 
8
15
  env:
9
16
  CI: "true"
17
+ RUBYOPT: -EUTF-8
10
18
 
11
19
  jobs:
12
20
  test:
13
- runs-on: ${{ matrix.runner }}
21
+ runs-on: ubuntu-latest
22
+
23
+ container: ${{ matrix.ruby }}
14
24
 
15
25
  strategy:
16
26
  fail-fast: false
17
27
 
18
28
  matrix:
19
29
  ruby:
20
- - 2.2.2
21
- - 2.3.0
22
- - 2.4.0
23
- - 2.5.0
24
- - 2.6.0
25
- - 2.7.0
26
- - 2.8.0-dev
30
+ - ruby:2.2
31
+ - ruby:2.3
32
+ - ruby:2.4
33
+ - ruby:2.5
34
+ - ruby:2.6
35
+ - ruby:2.7
36
+ - rubylang/ruby:master-nightly-bionic
27
37
  include:
28
- - ruby: 2.2.2
29
- runner: ubuntu-16.04
30
- - ruby: 2.3.0
31
- runner: ubuntu-16.04
32
- - ruby: 2.4.0
33
- runner: ubuntu-latest
34
- - ruby: 2.5.0
35
- runner: ubuntu-latest
36
- - ruby: 2.6.0
37
- runner: ubuntu-latest
38
- - ruby: 2.7.0
39
- runner: ubuntu-latest
40
- - ruby: 2.8.0-dev
41
- runner: ubuntu-latest
38
+ - ruby: rubylang/ruby:master-nightly-bionic
39
+ allow_failures: "true"
42
40
 
43
41
  steps:
44
42
  - uses: actions/checkout@v2
45
43
 
46
- - name: Set up rbenv
47
- uses: masa-iwasaki/setup-rbenv@1.1.0
48
-
49
- - name: Cache RBENV_ROOT
50
- uses: actions/cache@v1
51
- id: cache_rbenv
52
- with:
53
- path: ~/.rbenv/versions
54
- key: v1-rbenv-${{ runner.os }}-${{ matrix.ruby }}
55
- if: "!endsWith(matrix.ruby, '-dev')"
56
-
57
- - name: Reinstall libssl-dev
58
- run: |
59
- set -xe
60
- sudo apt-get remove -y libssl-dev
61
- sudo apt-get install -y libssl-dev=1.0.2g-1ubuntu4.15
62
- if: matrix.runner == 'ubuntu-16.04'
63
-
64
- - name: Install Ruby
65
- run: |
66
- set -xe
67
- eval "$(rbenv init -)"
68
- rbenv install -s $RBENV_VERSION
69
-
70
- gem install bundler --no-document -v 1.17.3 || true
71
- env:
72
- RBENV_VERSION: ${{ matrix.ruby }}
73
- continue-on-error: ${{ endsWith(matrix.ruby, '-dev') }}
74
-
75
44
  - name: Cache vendor/bundle
76
45
  uses: actions/cache@v1
77
46
  id: cache_gem
@@ -80,56 +49,51 @@ jobs:
80
49
  key: v1-gem-${{ runner.os }}-${{ matrix.ruby }}-${{ github.sha }}
81
50
  restore-keys: |
82
51
  v1-gem-${{ runner.os }}-${{ matrix.ruby }}-
83
- continue-on-error: ${{ endsWith(matrix.ruby, '-dev') }}
52
+ continue-on-error: ${{ matrix.allow_failures == 'true' }}
84
53
 
85
54
  - name: bundle update
86
55
  run: |
87
56
  set -xe
88
- eval "$(rbenv init -)"
89
57
  bundle config path vendor/bundle
90
58
  bundle update --jobs $(nproc) --retry 3
91
- env:
92
- RBENV_VERSION: ${{ matrix.ruby }}
93
- continue-on-error: ${{ endsWith(matrix.ruby, '-dev') }}
59
+ continue-on-error: ${{ matrix.allow_failures == 'true' }}
94
60
 
95
61
  - name: Setup Code Climate Test Reporter
96
62
  uses: aktions/codeclimate-test-reporter@v1
97
63
  with:
98
64
  codeclimate-test-reporter-id: ${{ secrets.CC_TEST_REPORTER_ID }}
99
65
  command: before-build
100
- continue-on-error: ${{ endsWith(matrix.ruby, '-dev') }}
66
+ if: matrix.ruby >= 'ruby:2.4'
67
+ continue-on-error: true
101
68
 
102
- - name: Run test
103
- run: |
104
- set -xe
105
- eval "$(rbenv init -)"
106
- bundle exec rspec
107
- bundle exec ruby examples/all.rb
108
- env:
109
- RBENV_VERSION: ${{ matrix.ruby }}
110
- continue-on-error: ${{ endsWith(matrix.ruby, '-dev') }}
69
+ - run: bundle exec rspec
70
+ timeout-minutes: 1
71
+ continue-on-error: ${{ matrix.allow_failures == 'true' }}
72
+
73
+ - run: bundle exec ruby examples/all.rb
74
+ timeout-minutes: 1
75
+ continue-on-error: ${{ matrix.allow_failures == 'true' }}
111
76
 
112
77
  - name: Teardown Code Climate Test Reporter
113
78
  uses: aktions/codeclimate-test-reporter@v1
114
79
  with:
115
80
  codeclimate-test-reporter-id: ${{ secrets.CC_TEST_REPORTER_ID }}
116
81
  command: after-build
117
- if: always()
118
- continue-on-error: ${{ endsWith(matrix.ruby, '-dev') }}
82
+ if: matrix.ruby >= 'ruby:2.4' && always()
83
+ continue-on-error: true
119
84
 
120
- - name: Run lint
121
- run: |
122
- set -xe
123
- eval "$(rbenv init -)"
124
- bundle exec rubocop
125
- bundle exec rubydoctest README.md
126
- env:
127
- RBENV_VERSION: ${{ matrix.ruby }}
128
- continue-on-error: ${{ endsWith(matrix.ruby, '-dev') }}
85
+ - run: bundle exec rubocop
86
+ timeout-minutes: 1
87
+ continue-on-error: ${{ matrix.allow_failures == 'true' }}
88
+
89
+ - run: bundle exec rubydoctest README.md
90
+ timeout-minutes: 1
91
+ continue-on-error: ${{ matrix.allow_failures == 'true' }}
129
92
 
130
93
  - name: Slack Notification (not success)
131
- uses: homoluctus/slatify@v2.0.0
94
+ uses: homoluctus/slatify@master
132
95
  if: "! success()"
96
+ continue-on-error: true
133
97
  with:
134
98
  job_name: ${{ format('*build* ({0})', matrix.ruby) }}
135
99
  type: ${{ job.status }}
@@ -145,8 +109,9 @@ jobs:
145
109
 
146
110
  steps:
147
111
  - name: Slack Notification (success)
148
- uses: homoluctus/slatify@v2.0.0
112
+ uses: homoluctus/slatify@master
149
113
  if: always()
114
+ continue-on-error: true
150
115
  with:
151
116
  job_name: '*build*'
152
117
  type: ${{ job.status }}
@@ -1,5 +1,37 @@
1
1
  ## master
2
- [full changelog](http://github.com/sue445/rubicure/compare/v1.2.6...master)
2
+ [full changelog](http://github.com/sue445/rubicure/compare/v1.3.4...master)
3
+
4
+ ## v1.3.4
5
+ [full changelog](http://github.com/sue445/rubicure/compare/v1.3.3...v1.3.4)
6
+
7
+ * Add Cure earth's birthday
8
+ * https://github.com/sue445/rubicure/pull/239
9
+
10
+ ## v1.3.3
11
+ [full changelog](http://github.com/sue445/rubicure/compare/v1.3.2...v1.3.3)
12
+
13
+ * Add cure earth :earth_asia:
14
+ * https://github.com/sue445/rubicure/pull/238
15
+
16
+ ## v1.3.2
17
+ [full changelog](http://github.com/sue445/rubicure/compare/v1.3.1...v1.3.2)
18
+
19
+ * Append message to healingood precure's transform message
20
+ * https://github.com/sue445/rubicure/pull/237
21
+
22
+ ## v1.3.1
23
+ [full changelog](http://github.com/sue445/rubicure/compare/v1.3.0...v1.3.1)
24
+
25
+ * Add birthday of healingood:heart:precure
26
+ * https://github.com/sue445/rubicure/pull/232
27
+
28
+ ## v1.3.0
29
+ [full changelog](http://github.com/sue445/rubicure/compare/v1.2.6...v1.3.0)
30
+
31
+ * Add Healingood:heart:Precure
32
+ * https://github.com/sue445/rubicure/pull/229
33
+ * Remove enemy's message
34
+ * https://github.com/sue445/rubicure/pull/230
3
35
 
4
36
  ## v1.2.6
5
37
  [full changelog](http://github.com/sue445/rubicure/compare/v1.2.5...v1.2.6)
data/Gemfile CHANGED
@@ -14,3 +14,11 @@ if Gem::Version.create(RUBY_VERSION) < Gem::Version.create("2.5.0")
14
14
  # activesupport v6.0.0+ requires Ruby 2.5.0+
15
15
  gem "activesupport", "< 6.0.0"
16
16
  end
17
+
18
+ if Gem::Version.create(RUBY_VERSION) < Gem::Version.create("2.4.0")
19
+ # byebug v11.0.0+ requires Ruby 2.3.0+ and byebug v11.1.0+ requires Ruby 2.4.0+
20
+ gem "byebug", "< 11.0.0"
21
+
22
+ # simplecov-html 0.11.0+ requires Ruby 2.4.0
23
+ gem "simplecov-html", "< 0.11.0"
24
+ end
data/README.md CHANGED
@@ -119,10 +119,7 @@ and [more aliases!](config/series.yml)
119
119
 
120
120
  ```ruby
121
121
  >> Precure.now
122
- => {:series_name=>"star_twinkle", :title=>"スター☆トゥインクルプリキュア", :started_date=>Sun, 03 Feb 2019, :ended_date=>Sun, 26 Jan 2020, :girls=>["cure_star", "cure_milky", "cure_soleil", "cure_selene", "cure_cosmo"]}
123
-
124
- >> Precure.current
125
- => {:series_name=>"star_twinkle", :title=>"スター☆トゥインクルプリキュア", :started_date=>Sun, 03 Feb 2019, :ended_date=>Sun, 26 Jan 2020, :girls=>["cure_star", "cure_milky", "cure_soleil", "cure_selene", "cure_cosmo"]}
122
+ => {:series_name=>"healingood", :title=>"ヒーリングっど♥プリキュア", :started_date=>Sun, 02 Feb 2020, :girls=>["cure_grace", "cure_fontaine", "cure_sparkle", "cure_earth"]}
126
123
 
127
124
  # -2013/1/27 : smile precure
128
125
  # 2013/2/5 - : dokidoki precure
@@ -599,19 +596,19 @@ Go!プリンセスプリキュア
599
596
  魔法つかいプリキュア!
600
597
  キラキラ☆プリキュアアラモード
601
598
  HUGっと!プリキュア
602
- => [:unmarked, :max_heart, :splash_star, :yes, :yes_gogo, :fresh, :heart_catch, :suite, :smile, :dokidoki, :happiness_charge, :go_princess, :maho_girls, :a_la_mode, :hugtto, :star_twinkle]
599
+ => [:unmarked, :max_heart, :splash_star, :yes, :yes_gogo, :fresh, :heart_catch, :suite, :smile, :dokidoki, :happiness_charge, :go_princess, :maho_girls, :a_la_mode, :hugtto, :star_twinkle, :healingood]
603
600
 
604
601
  >> Precure.inject([]){|girl_count_of_series, series| girl_count_of_series << series.girls.count; girl_count_of_series }
605
- => [2, 3, 2, 5, 6, 4, 4, 4, 5, 5, 4, 4, 3, 6, 5, 5]
602
+ => [2, 3, 2, 5, 6, 4, 4, 4, 5, 5, 4, 4, 3, 6, 5, 5, 4]
606
603
 
607
604
  >> Precure.map(&:title)
608
- => ["ふたりはプリキュア", "ふたりはプリキュア Max Heart", "ふたりはプリキュア Splash☆Star", "Yes! プリキュア5", "Yes! プリキュア5 Go Go!", "フレッシュプリキュア!", "ハートキャッチプリキュア!", "スイートプリキュア♪", "スマイルプリキュア!", "ドキドキ!プリキュア", "ハピネスチャージプリキュア!", "Go!プリンセスプリキュア", "魔法つかいプリキュア!", "キラキラ☆プリキュアアラモード", "HUGっと!プリキュア", "スター☆トゥインクルプリキュア"]
605
+ => ["ふたりはプリキュア", "ふたりはプリキュア Max Heart", "ふたりはプリキュア Splash☆Star", "Yes! プリキュア5", "Yes! プリキュア5 Go Go!", "フレッシュプリキュア!", "ハートキャッチプリキュア!", "スイートプリキュア♪", "スマイルプリキュア!", "ドキドキ!プリキュア", "ハピネスチャージプリキュア!", "Go!プリンセスプリキュア", "魔法つかいプリキュア!", "キラキラ☆プリキュアアラモード", "HUGっと!プリキュア", "スター☆トゥインクルプリキュア", "ヒーリングっど♥プリキュア"]
609
606
 
610
607
  >> Precure.happiness_charge.map(&:precure_name)
611
608
  => ["キュアラブリー", "キュアプリンセス", "キュアハニー", "キュアフォーチュン"]
612
609
 
613
610
  >> Precure.map{|series| series.map(&:precure_name) }
614
- => [["キュアブラック", "キュアホワイト"], ["キュアブラック", "キュアホワイト", "シャイニールミナス"], ["キュアブルーム", "キュアイーグレット"], ["キュアドリーム", "キュアルージュ", "キュアレモネード", "キュアミント", "キュアアクア"], ["キュアドリーム", "キュアルージュ", "キュアレモネード", "キュアミント", "キュアアクア", "ミルキィローズ"], ["キュアピーチ", "キュアベリー", "キュアパイン", "キュアパッション"], ["キュアブロッサム", "キュアマリン", "キュアサンシャイン", "キュアムーンライト"], ["キュアメロディ", "キュアリズム", "キュアビート", "キュアミューズ"], ["キュアハッピー", "キュアサニー", "キュアピース", "キュアマーチ", "キュアビューティ"], ["キュアハート", "キュアダイヤモンド", "キュアロゼッタ", "キュアソード", "キュアエース"], ["キュアラブリー", "キュアプリンセス", "キュアハニー", "キュアフォーチュン"], ["キュアフローラ", "キュアマーメイド", "キュアトゥインクル", "キュアスカーレット"], ["キュアミラクル", "キュアマジカル", "キュアフェリーチェ"], ["キュアホイップ", "キュアカスタード", "キュアジェラート", "キュアマカロン", "キュアショコラ", "キュアパルフェ"], ["キュアエール", "キュアアンジュ", "キュアエトワール", "キュアマシェリ", "キュアアムール"], ["キュアスター", "キュアミルキー", "キュアソレイユ", "キュアセレーネ", "キュアコスモ"]]
611
+ => [["キュアブラック", "キュアホワイト"], ["キュアブラック", "キュアホワイト", "シャイニールミナス"], ["キュアブルーム", "キュアイーグレット"], ["キュアドリーム", "キュアルージュ", "キュアレモネード", "キュアミント", "キュアアクア"], ["キュアドリーム", "キュアルージュ", "キュアレモネード", "キュアミント", "キュアアクア", "ミルキィローズ"], ["キュアピーチ", "キュアベリー", "キュアパイン", "キュアパッション"], ["キュアブロッサム", "キュアマリン", "キュアサンシャイン", "キュアムーンライト"], ["キュアメロディ", "キュアリズム", "キュアビート", "キュアミューズ"], ["キュアハッピー", "キュアサニー", "キュアピース", "キュアマーチ", "キュアビューティ"], ["キュアハート", "キュアダイヤモンド", "キュアロゼッタ", "キュアソード", "キュアエース"], ["キュアラブリー", "キュアプリンセス", "キュアハニー", "キュアフォーチュン"], ["キュアフローラ", "キュアマーメイド", "キュアトゥインクル", "キュアスカーレット"], ["キュアミラクル", "キュアマジカル", "キュアフェリーチェ"], ["キュアホイップ", "キュアカスタード", "キュアジェラート", "キュアマカロン", "キュアショコラ", "キュアパルフェ"], ["キュアエール", "キュアアンジュ", "キュアエトワール", "キュアマシェリ", "キュアアムール"], ["キュアスター", "キュアミルキー", "キュアソレイユ", "キュアセレーネ", "キュアコスモ"], ["キュアグレース", "キュアフォンテーヌ", "キュアスパークル", "キュアアース"]]
615
612
  ```
616
613
 
617
614
  ### Not operator
@@ -679,13 +676,13 @@ Cure.cosmo.name
679
676
  => [:black, :blue, :green, :pink, :purple, :rainbow, :red, :white, :yellow]
680
677
 
681
678
  >> Precure.all_girls.select(&:pink?).map(&:precure_name)
682
- => ["キュアブルーム", "キュアドリーム", "キュアピーチ", "キュアブロッサム", "キュアメロディ", "キュアハッピー", "キュアハート", "キュアラブリー", "キュアフローラ", "キュアミラクル", "キュアホイップ", "キュアエール", "キュアスター"]
679
+ => ["キュアブルーム", "キュアドリーム", "キュアピーチ", "キュアブロッサム", "キュアメロディ", "キュアハッピー", "キュアハート", "キュアラブリー", "キュアフローラ", "キュアミラクル", "キュアホイップ", "キュアエール", "キュアスター", "キュアグレース"]
683
680
 
684
681
  >> Precure.all_girls.select(&:yellow?).map(&:precure_name)
685
- => ["シャイニールミナス", "キュアレモネード", "キュアパイン", "キュアサンシャイン", "キュアミューズ", "キュアピース", "キュアロゼッタ", "キュアハニー", "キュアトゥインクル", "キュアカスタード", "キュアエトワール", "キュアソレイユ"]
682
+ => ["シャイニールミナス", "キュアレモネード", "キュアパイン", "キュアサンシャイン", "キュアミューズ", "キュアピース", "キュアロゼッタ", "キュアハニー", "キュアトゥインクル", "キュアカスタード", "キュアエトワール", "キュアソレイユ", "キュアスパークル"]
686
683
 
687
684
  >> Precure.all_girls.group_by{ |girl| girl.color }.map{ |color, girls| [color, girls.count] }.sort_by{ |color, girl_count| [girl_count, color] }.reverse
688
- => [["pink", 13], ["yellow", 12], ["blue", 10], ["purple", 8], ["red", 7], ["white", 4], ["green", 4], ["rainbow", 2], ["black", 1]]
685
+ => [["pink", 14], ["yellow", 13], ["blue", 11], ["purple", 9], ["red", 7], ["white", 4], ["green", 4], ["rainbow", 2], ["black", 1]]
689
686
  ```
690
687
 
691
688
  ### birthday methods
@@ -711,12 +708,12 @@ Cure.cosmo.name
711
708
  => true
712
709
 
713
710
  >> Precure.all_girls.select(&:have_birthday?).map(&:human_name)
714
- => ["美墨なぎさ", "雪城ほのか", "九条ひかり", "日向咲", "美翔舞", "相田マナ", "菱川六花", "四葉ありす", "剣崎真琴", "春野はるか", "海藤みなみ", "天ノ川きらら", "紅城トワ", "朝日奈みらい", "十六夜リコ", "宇佐美いちか", "有栖川ひまり", "立神あおい", "琴爪ゆかり", "剣城あきら", "キラ星シエル", "野乃はな", "薬師寺さあや", "輝木ほまれ", "愛崎えみる", "ルールー・アムール", "星奈ひかる", "羽衣ララ", "天宮えれな", "香久矢まどか", "ユニ"]
711
+ => ["美墨なぎさ", "雪城ほのか", "九条ひかり", "日向咲", "美翔舞", "相田マナ", "菱川六花", "四葉ありす", "剣崎真琴", "春野はるか", "海藤みなみ", "天ノ川きらら", "紅城トワ", "朝日奈みらい", "十六夜リコ", "宇佐美いちか", "有栖川ひまり", "立神あおい", "琴爪ゆかり", "剣城あきら", "キラ星シエル", "野乃はな", "薬師寺さあや", "輝木ほまれ", "愛崎えみる", "ルールー・アムール", "星奈ひかる", "羽衣ララ", "天宮えれな", "香久矢まどか", "ユニ", "花寺のどか", "沢泉ちゆ", "平光ひなた", "風鈴アスミ"]
715
712
  >> Precure.all_girls.select(&:have_birthday?).sort_by { |girl| Date.parse(girl.birthday) }.map{ |girl| [girl.birthday, girl.human_name] }
716
- => [["1/7", "宇佐美いちか"], ["1/20", "野乃はな"], ["4/4", "雪城ほのか"], ["4/8", "輝木ほまれ"], ["4/10", "春野はるか"], ["4/12", "星奈ひかる"], ["4/16", "有栖川ひまり"], ["5/28", "四葉ありす"], ["6/10", "薬師寺さあや"], ["6/11", "琴爪ゆかり"], ["6/12", "朝日奈みらい"], ["7/7", "羽衣ララ"], ["7/15", "愛崎えみる"], ["7/20", "海藤みなみ"], ["7/30", "キラ星シエル"], ["8/4", "相田マナ"], ["8/7", "日向咲"], ["8/27", "立神あおい"], ["9/8", "天宮えれな"], ["9/9", "九条ひかり"], ["9/12", "天ノ川きらら"], ["9/17", "菱川六花"], ["9/23", "ルールー・アムール"], ["9/24", "剣城あきら"], ["10/10", "美墨なぎさ"], ["10/11", "ユニ"], ["11/4", "剣崎真琴"], ["11/12", "十六夜リコ"], ["11/20", "美翔舞"], ["11/23", "香久矢まどか"], ["12/15", "紅城トワ"]]
713
+ => [["1/7", "宇佐美いちか"], ["1/20", "野乃はな"], ["3/9", "花寺のどか"], ["4/4", "雪城ほのか"], ["4/8", "輝木ほまれ"], ["4/10", "春野はるか"], ["4/12", "星奈ひかる"], ["4/16", "有栖川ひまり"], ["5/28", "四葉ありす"], ["6/10", "薬師寺さあや"], ["6/11", "琴爪ゆかり"], ["6/12", "朝日奈みらい"], ["7/7", "羽衣ララ"], ["7/15", "愛崎えみる"], ["7/20", "海藤みなみ"], ["7/30", "キラ星シエル"], ["8/4", "相田マナ"], ["8/7", "日向咲"], ["8/16", "風鈴アスミ"], ["8/21", "沢泉ちゆ"], ["8/27", "立神あおい"], ["9/8", "天宮えれな"], ["9/9", "九条ひかり"], ["9/12", "天ノ川きらら"], ["9/17", "菱川六花"], ["9/23", "ルールー・アムール"], ["9/24", "剣城あきら"], ["10/4", "平光ひなた"], ["10/10", "美墨なぎさ"], ["10/11", "ユニ"], ["11/4", "剣崎真琴"], ["11/12", "十六夜リコ"], ["11/20", "美翔舞"], ["11/23", "香久矢まどか"], ["12/15", "紅城トワ"]]
717
714
 
718
715
  >> Precure.all_girls.select(&:have_birthday?).map(&:human_name).count
719
- => 31
716
+ => 35
720
717
  ```
721
718
 
722
719
  * `has_birthday?` is alias to `have_birthday?`
@@ -0,0 +1,123 @@
1
+ cure_grace: &cure_grace
2
+ girl_name: cure_grace
3
+ human_name: 花寺のどか
4
+ precure_name: キュアグレース
5
+ cast_name: 悠木碧
6
+ color: pink
7
+ created_date: 2020-02-02 # episode 1
8
+ birthday: 3/9
9
+ transform_message: |-
10
+ スタンバイ!
11
+ プリキュアオペレーション!
12
+ エレメントレベル上昇ラビ!
13
+ キュアタッチ!
14
+ キュア!
15
+ キュア!
16
+ 重なる二つの花!キュアグレース!
17
+ ラビ!
18
+ 地球をお手当!ヒーリングっど♥プリキュア!
19
+ # extra_names:
20
+ attack_messages:
21
+ - |-
22
+ エレメントチャージ!
23
+ キュア!キュア!キュア!
24
+ ヒーリングゲージ上昇!
25
+ プリキュア!ヒーリングフラワー!
26
+ お大事に
27
+ transform_calls:
28
+ - precure_operation
29
+ grace:
30
+ <<: *cure_grace
31
+
32
+ cure_fontaine: &cure_fontaine
33
+ girl_name: cure_fontaine
34
+ human_name: 沢泉ちゆ
35
+ precure_name: キュアフォンテーヌ
36
+ cast_name: 依田菜津
37
+ color: blue
38
+ created_date: 2020-02-16 # episode 3
39
+ birthday: 8/21
40
+ transform_message: |-
41
+ スタート!
42
+ プリキュアオペレーション!
43
+ エレメントレベル上昇ペ!
44
+ キュアタッチ!
45
+ キュ!
46
+ キュ!
47
+ 交わる二つの流れ、キュアフォンテーヌ!
48
+ ぺ!
49
+ 地球をお手当!ヒーリングっど♥プリキュア!
50
+ # extra_names:
51
+ attack_messages:
52
+ - |-
53
+ エレメントチャージ!
54
+ キュ!キュ!キュ!
55
+ ヒーリングゲージ上昇!
56
+ プリキュア!ヒーリングストリーム!
57
+ お大事に
58
+ transform_calls:
59
+ - precure_operation
60
+ fontaine:
61
+ <<: *cure_fontaine
62
+
63
+ cure_sparkle: &cure_sparkle
64
+ girl_name: cure_sparkle
65
+ human_name: 平光ひなた
66
+ precure_name: キュアスパークル
67
+ cast_name: 河野ひより
68
+ color: yellow
69
+ created_date: 2020-02-23 # episode 4
70
+ birthday: 10/4
71
+ transform_message: |-
72
+ スタート!
73
+ プリキュアオペレーション!
74
+ エレメントレベル上昇ニャ!
75
+ キュアタッチ!
76
+ キュン!
77
+ キュン!
78
+ 溶け合う二つの光、キュアスパークル!
79
+ ニャ!
80
+ 地球をお手当!ヒーリングっど♥プリキュア!
81
+ # extra_names:
82
+ attack_messages:
83
+ - |-
84
+ エレメントチャージ!
85
+ キュン!キュン!キュン!
86
+ ヒーリングゲージ上昇!
87
+ プリキュア!ヒーリングフラッシュ!
88
+ お大事に
89
+ transform_calls:
90
+ - precure_operation
91
+ sparkle:
92
+ <<: *cure_sparkle
93
+
94
+ cure_earth: &cure_earth
95
+ girl_name: cure_earth
96
+ human_name: 風鈴アスミ
97
+ precure_name: キュアアース
98
+ cast_name: 三森すずこ
99
+ color: purple
100
+ created_date: 2020-08-09 # episode 19
101
+ birthday: 8/16
102
+ transform_message: |-
103
+ スタート!
104
+ プリキュアオペレーション!
105
+ エレメントレベル上昇ラテ!
106
+ キュアタッチ!
107
+ キュン!
108
+ キュン!
109
+ 時を経てつながる二つの風、キュアアース!
110
+ ワン!
111
+ 地球をお手当!ヒーリングっど♥プリキュア!
112
+ # extra_names:
113
+ attack_messages:
114
+ - |-
115
+ アースウィンディハープ!
116
+ エレメントチャージ!
117
+ 舞い上がれ、癒やしの風!
118
+ プリキュア・ヒーリングハリケーン!
119
+ お大事に
120
+ transform_calls:
121
+ - precure_operation
122
+ earth:
123
+ <<: *cure_earth
@@ -217,3 +217,16 @@ star_twinkle: &star_twinkle
217
217
  - cure_cosmo
218
218
  star_twinkle_precure:
219
219
  <<: *star_twinkle
220
+ #######################################################
221
+ healingood: &healingood
222
+ series_name: healingood
223
+ title: ヒーリングっど♥プリキュア
224
+ started_date: 2020-02-02
225
+ # ended_date: 2021-01-
226
+ girls:
227
+ - cure_grace
228
+ - cure_fontaine
229
+ - cure_sparkle
230
+ - cure_earth
231
+ healingood_precure:
232
+ <<: *healingood
@@ -1,3 +1,3 @@
1
1
  module Rubicure
2
- VERSION = "1.2.6".freeze
2
+ VERSION = "1.3.4".freeze
3
3
  end
@@ -41,7 +41,6 @@ Gem::Specification.new do |spec|
41
41
  spec.add_development_dependency "coveralls"
42
42
  spec.add_development_dependency "delorean"
43
43
  spec.add_development_dependency "onkcop", "0.53.0.0"
44
- spec.add_development_dependency "pry-byebug"
45
44
  spec.add_development_dependency "rake"
46
45
  spec.add_development_dependency "rspec", ">= 3.8.0"
47
46
  spec.add_development_dependency "rspec-collection_matchers"
@@ -86,7 +86,7 @@ describe Rubicure::Core do
86
86
  context "Without arg" do
87
87
  subject { instance.all_girls }
88
88
 
89
- let(:precure_count) { 61 }
89
+ let(:precure_count) { 65 }
90
90
 
91
91
  its(:count) { should == precure_count }
92
92
  it { should include Cure.echo }
@@ -17,6 +17,7 @@ describe Rubicure::Series do
17
17
  :a_la_mode,
18
18
  :hugtto,
19
19
  :star_twinkle,
20
+ :healingood,
20
21
  ]
21
22
  end
22
23
 
@@ -35,7 +35,6 @@ require "rspec/its"
35
35
  require "rspec/collection_matchers"
36
36
  require "delorean"
37
37
  require "tempfile"
38
- require "pry"
39
38
 
40
39
  # Requires supporting ruby files with custom matchers and macros, etc,
41
40
  # in spec/support/ and its subdirectories.
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: 1.2.6
4
+ version: 1.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - sue445
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-01-19 00:00:00.000000000 Z
11
+ date: 2020-08-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -108,20 +108,6 @@ dependencies:
108
108
  - - '='
109
109
  - !ruby/object:Gem::Version
110
110
  version: 0.53.0.0
111
- - !ruby/object:Gem::Dependency
112
- name: pry-byebug
113
- requirement: !ruby/object:Gem::Requirement
114
- requirements:
115
- - - ">="
116
- - !ruby/object:Gem::Version
117
- version: '0'
118
- type: :development
119
- prerelease: false
120
- version_requirements: !ruby/object:Gem::Requirement
121
- requirements:
122
- - - ">="
123
- - !ruby/object:Gem::Version
124
- version: '0'
125
111
  - !ruby/object:Gem::Dependency
126
112
  name: rake
127
113
  requirement: !ruby/object:Gem::Requirement
@@ -310,6 +296,7 @@ files:
310
296
  - config/girls/014_a_la_mode.yml
311
297
  - config/girls/015_hugtto.yml
312
298
  - config/girls/016_star_twinkle.yml
299
+ - config/girls/017_healingood.yml
313
300
  - config/girls/movie.yml
314
301
  - config/movies.yml
315
302
  - config/series.yml
@@ -367,7 +354,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
367
354
  - !ruby/object:Gem::Version
368
355
  version: '0'
369
356
  requirements: []
370
- rubygems_version: 3.1.2
357
+ rubygems_version: 3.0.6
371
358
  signing_key:
372
359
  specification_version: 4
373
360
  summary: All about Japanese battle heroine "Pretty Cure (Precure)".