rubicure 3.2.4 → 3.2.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/pages.yml +2 -2
- data/.github/workflows/test.yml +19 -0
- data/.rubocop.yml +9 -0
- data/CHANGELOG.md +13 -1
- data/README.md +4 -3
- data/config/series.yml +1 -1
- data/gemfiles/activesupport_5_0.gemfile +5 -0
- data/gemfiles/activesupport_5_1.gemfile +5 -0
- data/gemfiles/activesupport_5_2.gemfile +5 -0
- data/gemfiles/activesupport_6_0.gemfile +5 -0
- data/gemfiles/activesupport_6_1.gemfile +5 -0
- data/gemfiles/activesupport_7_0.gemfile +5 -0
- data/gemfiles/activesupport_7_1.gemfile +5 -0
- data/lib/rubicure/version.rb +1 -1
- data/lib/rubicure.rb +3 -0
- data/spec/spec_helper.rb +3 -0
- metadata +9 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 02a703aa1c976f1bea03672c5434573ca5317abea3f6c6952c99e6e8f518925a
|
4
|
+
data.tar.gz: 8a041af81e852cc812c830d469523ed633cec29e1cf17786956f4b11488d3073
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7b48982ff9869e3e6d9cb69705d637231e09c41eb53a9655285b9156883530c06e1b8050f51d1e3eeb84316a69bfb83277039794c1c9cc117f27ed1cf963f680
|
7
|
+
data.tar.gz: b29762732d9d7b5e43cd6fec5756ec069cabd60e5929b0fd73064c64a3febee2dea0a4a0ce5b23651dd0f846ac8c90d7a7067a40970471257cdd4e24cf273254
|
data/.github/workflows/pages.yml
CHANGED
@@ -40,9 +40,9 @@ jobs:
|
|
40
40
|
- run: bundle exec yard
|
41
41
|
|
42
42
|
- name: Setup Pages
|
43
|
-
uses: actions/configure-pages@
|
43
|
+
uses: actions/configure-pages@v4
|
44
44
|
- name: Upload artifact
|
45
|
-
uses: actions/upload-pages-artifact@
|
45
|
+
uses: actions/upload-pages-artifact@v3
|
46
46
|
with:
|
47
47
|
# Upload entire repository
|
48
48
|
path: './doc'
|
data/.github/workflows/test.yml
CHANGED
@@ -29,6 +29,24 @@ jobs:
|
|
29
29
|
- "3.0"
|
30
30
|
- "3.1"
|
31
31
|
- "3.2"
|
32
|
+
- "3.3"
|
33
|
+
gemfile:
|
34
|
+
- activesupport_5_0
|
35
|
+
- activesupport_5_1
|
36
|
+
- activesupport_5_2
|
37
|
+
- activesupport_6_0
|
38
|
+
- activesupport_6_1
|
39
|
+
- activesupport_7_0
|
40
|
+
- activesupport_7_1
|
41
|
+
exclude:
|
42
|
+
# activesupport 7.0+ requires Ruby 2.7+
|
43
|
+
- ruby: "2.6"
|
44
|
+
gemfile: activesupport_7_0
|
45
|
+
- ruby: "2.6"
|
46
|
+
gemfile: activesupport_7_1
|
47
|
+
|
48
|
+
env:
|
49
|
+
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
|
32
50
|
|
33
51
|
steps:
|
34
52
|
- uses: actions/checkout@v4
|
@@ -37,6 +55,7 @@ jobs:
|
|
37
55
|
with:
|
38
56
|
ruby-version: ${{ matrix.ruby }}
|
39
57
|
bundler-cache: true
|
58
|
+
cache-version: 1
|
40
59
|
|
41
60
|
- name: bundle update
|
42
61
|
run: |
|
data/.rubocop.yml
CHANGED
@@ -12,6 +12,15 @@ AllCops:
|
|
12
12
|
TargetRubyVersion: 2.6
|
13
13
|
NewCops: enable
|
14
14
|
|
15
|
+
Exclude:
|
16
|
+
- 'gemfiles/vendor/**/*'
|
17
|
+
|
18
|
+
# c.f. https://github.com/rubocop/rubocop/blob/v1.56.4/config/default.yml#L65-L69
|
19
|
+
- 'node_modules/**/*'
|
20
|
+
- 'tmp/**/*'
|
21
|
+
- 'vendor/**/*'
|
22
|
+
- '.git/**/*'
|
23
|
+
|
15
24
|
Layout/HashAlignment:
|
16
25
|
EnforcedHashRocketStyle: table
|
17
26
|
EnforcedColonStyle: table
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
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.6...master)
|
3
|
+
|
4
|
+
## v3.2.6
|
5
|
+
[full changelog](http://github.com/sue445/rubicure/compare/v3.2.5...v3.2.6)
|
6
|
+
|
7
|
+
* Add `ended_date` of Hirogaru Sky Precure
|
8
|
+
* https://github.com/sue445/rubicure/pull/301
|
9
|
+
|
10
|
+
## v3.2.5
|
11
|
+
[full changelog](http://github.com/sue445/rubicure/compare/v3.2.4...v3.2.5)
|
12
|
+
|
13
|
+
* Support activesupport 7.1
|
14
|
+
* https://github.com/sue445/rubicure/pull/295
|
3
15
|
|
4
16
|
## v3.2.4
|
5
17
|
[full changelog](http://github.com/sue445/rubicure/compare/v3.2.3...v3.2.4)
|
data/README.md
CHANGED
@@ -118,7 +118,7 @@ and [more aliases!](config/series.yml)
|
|
118
118
|
|
119
119
|
```ruby
|
120
120
|
>> Precure.now
|
121
|
-
=> {:series_name=>"hirogaru_sky", :title=>"ひろがるスカイ!プリキュア", :started_date=>#<Date: 2023-02-05 ((2459981j,0s,0n),+0s,-Infj)>, :girls=>["cure_sky", "cure_prism", "cure_wing", "cure_butterfly", "cure_majesty"]}
|
121
|
+
=> {:series_name=>"hirogaru_sky", :title=>"ひろがるスカイ!プリキュア", :started_date=>#<Date: 2023-02-05 ((2459981j,0s,0n),+0s,-Infj)>, :ended_date=>#<Date: 2024-01-28 ((2460338j,0s,0n),+0s,-Infj)>, :girls=>["cure_sky", "cure_prism", "cure_wing", "cure_butterfly", "cure_majesty"]}
|
122
122
|
|
123
123
|
# -2013/1/27 : smile precure
|
124
124
|
# 2013/2/5 - : dokidoki precure
|
@@ -814,5 +814,6 @@ http://sue445.github.io/rubicure/
|
|
814
814
|
1. Fork it
|
815
815
|
2. Create your feature branch (`git checkout -b my-new-feature`)
|
816
816
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
817
|
-
4.
|
818
|
-
5.
|
817
|
+
4. Run test (`bundle exec rake test`)
|
818
|
+
5. Push to the branch (`git push origin my-new-feature`)
|
819
|
+
6. Create new Pull Request
|
data/config/series.yml
CHANGED
data/lib/rubicure/version.rb
CHANGED
data/lib/rubicure.rb
CHANGED
data/spec/spec_helper.rb
CHANGED
@@ -35,6 +35,9 @@ require "rspec/its"
|
|
35
35
|
require "rspec/collection_matchers"
|
36
36
|
require "delorean"
|
37
37
|
require "tempfile"
|
38
|
+
|
39
|
+
# NOTE: requires minimum dependencies
|
40
|
+
require "active_support/core_ext/string/filters"
|
38
41
|
require "active_support/core_ext/time/zones"
|
39
42
|
|
40
43
|
# Requires supporting ruby files with custom matchers and macros, etc,
|
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.6
|
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: 2024-01-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -347,6 +347,13 @@ files:
|
|
347
347
|
- config/girls/movie.yml
|
348
348
|
- config/movies.yml
|
349
349
|
- config/series.yml
|
350
|
+
- gemfiles/activesupport_5_0.gemfile
|
351
|
+
- gemfiles/activesupport_5_1.gemfile
|
352
|
+
- gemfiles/activesupport_5_2.gemfile
|
353
|
+
- gemfiles/activesupport_6_0.gemfile
|
354
|
+
- gemfiles/activesupport_6_1.gemfile
|
355
|
+
- gemfiles/activesupport_7_0.gemfile
|
356
|
+
- gemfiles/activesupport_7_1.gemfile
|
350
357
|
- lib/rubicure.rb
|
351
358
|
- lib/rubicure/concerns/gengou.rb
|
352
359
|
- lib/rubicure/concerns/util.rb
|