rubicure 4.1.4 → 4.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 +2 -0
- data/.github/workflows/pages.yml +2 -2
- data/.github/workflows/release_gem.yml +41 -0
- data/.github/workflows/test.yml +8 -1
- data/CHANGELOG.md +7 -1
- data/gemfiles/activesupport_8_1.gemfile +7 -0
- data/lib/rubicure/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bd7220ed5a34402b372617f55bff059f51f3edfa34fb3aa36a8007d7e8f28c80
|
|
4
|
+
data.tar.gz: 4781ad535e2a6284fe5dab0cbb1067054fc0649d058d0df639c4163240971424
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3fba50f28297dbe5e547db575dacf5920486fd28fd4cc69aa4a15e7892f98c98e8439bd269aec17db24474c5aa7bbe9082d36a1747ee1f3a224e8f620c61ff3c
|
|
7
|
+
data.tar.gz: ea0270098cda49ae58beea4a90739652495a34ebfebee280877907e05b500a641ba5e7fbaf6651137d5b31a4c38741bf23bfb0ccf13ea4412a173a1ac282b352
|
data/.github/dependabot.yml
CHANGED
data/.github/workflows/pages.yml
CHANGED
|
@@ -30,7 +30,7 @@ jobs:
|
|
|
30
30
|
runs-on: ubuntu-latest
|
|
31
31
|
steps:
|
|
32
32
|
- name: Checkout
|
|
33
|
-
uses: actions/checkout@
|
|
33
|
+
uses: actions/checkout@v5
|
|
34
34
|
|
|
35
35
|
- uses: ruby/setup-ruby@v1
|
|
36
36
|
with:
|
|
@@ -42,7 +42,7 @@ jobs:
|
|
|
42
42
|
- name: Setup Pages
|
|
43
43
|
uses: actions/configure-pages@v5
|
|
44
44
|
- name: Upload artifact
|
|
45
|
-
uses: actions/upload-pages-artifact@
|
|
45
|
+
uses: actions/upload-pages-artifact@v4
|
|
46
46
|
with:
|
|
47
47
|
# Upload entire repository
|
|
48
48
|
path: './doc'
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
name: Publish gem to rubygems.org
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_dispatch:
|
|
5
|
+
|
|
6
|
+
jobs:
|
|
7
|
+
release:
|
|
8
|
+
if: github.repository == 'sue445/rubicure'
|
|
9
|
+
runs-on: ubuntu-latest
|
|
10
|
+
|
|
11
|
+
environment:
|
|
12
|
+
name: rubygems.org
|
|
13
|
+
url: https://rubygems.org/gems/rubicure
|
|
14
|
+
|
|
15
|
+
permissions:
|
|
16
|
+
contents: write
|
|
17
|
+
id-token: write
|
|
18
|
+
|
|
19
|
+
steps:
|
|
20
|
+
- name: Harden Runner
|
|
21
|
+
uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0
|
|
22
|
+
with:
|
|
23
|
+
egress-policy: audit
|
|
24
|
+
|
|
25
|
+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
26
|
+
|
|
27
|
+
- name: Set up Ruby
|
|
28
|
+
uses: ruby/setup-ruby@eaecf785f6a34567a6d97f686bbb7bccc1ac1e5c # v1.237.0
|
|
29
|
+
with:
|
|
30
|
+
bundler-cache: true
|
|
31
|
+
ruby-version: ruby
|
|
32
|
+
|
|
33
|
+
- name: Publish to RubyGems
|
|
34
|
+
uses: rubygems/release-gem@a25424ba2ba8b387abc8ef40807c2c85b96cbe32 # v1.1.1
|
|
35
|
+
|
|
36
|
+
- name: Create GitHub release
|
|
37
|
+
run: |
|
|
38
|
+
tag_name="$(git describe --tags --abbrev=0)"
|
|
39
|
+
gh release create "${tag_name}" --verify-tag --generate-notes
|
|
40
|
+
env:
|
|
41
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
data/.github/workflows/test.yml
CHANGED
|
@@ -40,6 +40,7 @@ jobs:
|
|
|
40
40
|
- activesupport_7_1
|
|
41
41
|
- activesupport_7_2
|
|
42
42
|
- activesupport_8_0
|
|
43
|
+
- activesupport_8_1
|
|
43
44
|
exclude:
|
|
44
45
|
# activesupport 7.2+ requires Ruby 3.1+
|
|
45
46
|
- ruby: "2.7"
|
|
@@ -54,12 +55,18 @@ jobs:
|
|
|
54
55
|
gemfile: activesupport_8_0
|
|
55
56
|
- ruby: "3.1"
|
|
56
57
|
gemfile: activesupport_8_0
|
|
58
|
+
- ruby: "2.7"
|
|
59
|
+
gemfile: activesupport_8_1
|
|
60
|
+
- ruby: "3.0"
|
|
61
|
+
gemfile: activesupport_8_1
|
|
62
|
+
- ruby: "3.1"
|
|
63
|
+
gemfile: activesupport_8_1
|
|
57
64
|
|
|
58
65
|
env:
|
|
59
66
|
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
|
|
60
67
|
|
|
61
68
|
steps:
|
|
62
|
-
- uses: actions/checkout@
|
|
69
|
+
- uses: actions/checkout@v5
|
|
63
70
|
|
|
64
71
|
- uses: ruby/setup-ruby@v1
|
|
65
72
|
with:
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
## master
|
|
2
|
-
[full changelog](http://github.com/sue445/rubicure/compare/v4.1.
|
|
2
|
+
[full changelog](http://github.com/sue445/rubicure/compare/v4.1.5...master)
|
|
3
|
+
|
|
4
|
+
## [v4.1.5](https://github.com/sue445/rubicure/releases/tag/v4.1.5)
|
|
5
|
+
[full changelog](http://github.com/sue445/rubicure/compare/v4.1.4...v4.1.5)
|
|
6
|
+
|
|
7
|
+
* Release gem from GitHub Actions
|
|
8
|
+
* https://github.com/sue445/rubicure/pull/337
|
|
3
9
|
|
|
4
10
|
## [v4.1.4](https://github.com/sue445/rubicure/releases/tag/v4.1.4)
|
|
5
11
|
[full changelog](http://github.com/sue445/rubicure/compare/v4.1.3...v4.1.4)
|
data/lib/rubicure/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rubicure
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.1.
|
|
4
|
+
version: 4.1.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- sue445
|
|
@@ -313,6 +313,7 @@ files:
|
|
|
313
313
|
- ".coveralls.yml"
|
|
314
314
|
- ".github/dependabot.yml"
|
|
315
315
|
- ".github/workflows/pages.yml"
|
|
316
|
+
- ".github/workflows/release_gem.yml"
|
|
316
317
|
- ".github/workflows/test.yml"
|
|
317
318
|
- ".gitignore"
|
|
318
319
|
- ".rspec"
|
|
@@ -357,6 +358,7 @@ files:
|
|
|
357
358
|
- gemfiles/activesupport_7_1.gemfile
|
|
358
359
|
- gemfiles/activesupport_7_2.gemfile
|
|
359
360
|
- gemfiles/activesupport_8_0.gemfile
|
|
361
|
+
- gemfiles/activesupport_8_1.gemfile
|
|
360
362
|
- gemfiles/common.gemfile
|
|
361
363
|
- lib/rubicure.rb
|
|
362
364
|
- lib/rubicure/concerns/gengou.rb
|
|
@@ -414,7 +416,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
414
416
|
- !ruby/object:Gem::Version
|
|
415
417
|
version: '0'
|
|
416
418
|
requirements: []
|
|
417
|
-
rubygems_version: 3.6.
|
|
419
|
+
rubygems_version: 3.6.7
|
|
418
420
|
specification_version: 4
|
|
419
421
|
summary: All about Japanese battle heroine "Pretty Cure (Precure)".
|
|
420
422
|
test_files: []
|