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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2f26b37b0f0e763f0b36112214a300eab9a76b40349901982b0b37d6b1a0ee75
4
- data.tar.gz: cdcc3c4ecbf02f9b2f18db4b254eafe26638f65bb0abfa7afb8e97216117cd4f
3
+ metadata.gz: bd7220ed5a34402b372617f55bff059f51f3edfa34fb3aa36a8007d7e8f28c80
4
+ data.tar.gz: 4781ad535e2a6284fe5dab0cbb1067054fc0649d058d0df639c4163240971424
5
5
  SHA512:
6
- metadata.gz: 2ff5a2675cbfad5ec70e7fd565ba64057b16858c9dcbacc14ae6a5463b059a39f18da6a487455789f0df445702b88921e7d92e234f65d73d87f227003ccef0bb
7
- data.tar.gz: 07ee20c3f7106530338396712a8ee0396c8361752b1bd038ee0debba87cc86c4b8c2a7bcabf5a5661f646318239d7f20a36d8299754ffbdc84ffbcbc6cd1a159
6
+ metadata.gz: 3fba50f28297dbe5e547db575dacf5920486fd28fd4cc69aa4a15e7892f98c98e8439bd269aec17db24474c5aa7bbe9082d36a1747ee1f3a224e8f620c61ff3c
7
+ data.tar.gz: ea0270098cda49ae58beea4a90739652495a34ebfebee280877907e05b500a641ba5e7fbaf6651137d5b31a4c38741bf23bfb0ccf13ea4412a173a1ac282b352
@@ -6,5 +6,7 @@ updates:
6
6
  directory: /
7
7
  schedule:
8
8
  interval: weekly
9
+ cooldown:
10
+ default-days: 7
9
11
  assignees:
10
12
  - sue445
@@ -30,7 +30,7 @@ jobs:
30
30
  runs-on: ubuntu-latest
31
31
  steps:
32
32
  - name: Checkout
33
- uses: actions/checkout@v4
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@v3
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 }}
@@ -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@v4
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.4...master)
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)
@@ -0,0 +1,7 @@
1
+ source "https://rubygems.org"
2
+
3
+ gem "activesupport", "~> 8.1.0.rc1"
4
+
5
+ eval_gemfile "#{__dir__}/common.gemfile"
6
+
7
+ gemspec path: "../"
@@ -1,3 +1,3 @@
1
1
  module Rubicure
2
- VERSION = "4.1.4".freeze
2
+ VERSION = "4.1.5".freeze
3
3
  end
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
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.9
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: []