committee-rails 0.9.0 → 0.10.0
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/workflows/push_gem.yml +32 -0
- data/.github/workflows/test.yml +7 -1
- data/lib/committee/rails/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8b1faf77c6575e0ccd6d8b905fe5405629dc6d3590e9c2448f7e84cafd81f381
|
|
4
|
+
data.tar.gz: ac70563ba66d80fa26ad599c5c5fc0f66e7ee37a36c204e8b94309f3c0841dee
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0ea0ec7a41d5bc71ebfb2517348514da1c852a8d56a3a0b246ecfe9c9f18358364287482ae8b2352cf2f1d031641b7c88cce62d1ada50a97cf51f14e5af71c8e
|
|
7
|
+
data.tar.gz: 032ecbea1d832e8276c6c56a094e3bce6515a02b1601c12d47d95f7f46cf30d4afc094742e1184d7c08302133c0fc16a1690e6c9dc37284496b2198e7dabedad
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
name: Release new version to RubyGems.org
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_dispatch:
|
|
5
|
+
|
|
6
|
+
jobs:
|
|
7
|
+
push:
|
|
8
|
+
name: Push gem to RubyGems.org
|
|
9
|
+
runs-on: ubuntu-latest
|
|
10
|
+
|
|
11
|
+
permissions:
|
|
12
|
+
id-token: write
|
|
13
|
+
contents: write
|
|
14
|
+
|
|
15
|
+
steps:
|
|
16
|
+
- uses: actions/checkout@v6
|
|
17
|
+
with:
|
|
18
|
+
persist-credentials: false
|
|
19
|
+
- name: Set up Ruby
|
|
20
|
+
uses: ruby/setup-ruby@v1
|
|
21
|
+
with:
|
|
22
|
+
bundler-cache: true
|
|
23
|
+
ruby-version: ruby
|
|
24
|
+
|
|
25
|
+
- uses: rubygems/release-gem@v1
|
|
26
|
+
|
|
27
|
+
- name: Create GitHub release
|
|
28
|
+
run: |
|
|
29
|
+
tag_name="$(git describe --tags --abbrev=0)"
|
|
30
|
+
gh release create "${tag_name}" --verify-tag --generate-notes
|
|
31
|
+
env:
|
|
32
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
data/.github/workflows/test.yml
CHANGED
|
@@ -58,11 +58,17 @@ jobs:
|
|
|
58
58
|
gemfile: 'rails_8_1'
|
|
59
59
|
- ruby: '3.4'
|
|
60
60
|
gemfile: 'rails_8_1'
|
|
61
|
+
- ruby: '4.0'
|
|
62
|
+
gemfile: 'rails_7_2'
|
|
63
|
+
- ruby: '4.0'
|
|
64
|
+
gemfile: 'rails_8_0'
|
|
65
|
+
- ruby: '4.0'
|
|
66
|
+
gemfile: 'rails_8_1'
|
|
61
67
|
env:
|
|
62
68
|
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
|
|
63
69
|
|
|
64
70
|
steps:
|
|
65
|
-
- uses: actions/checkout@
|
|
71
|
+
- uses: actions/checkout@v6
|
|
66
72
|
- uses: ruby/setup-ruby@v1
|
|
67
73
|
with:
|
|
68
74
|
ruby-version: ${{ matrix.ruby }}
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: committee-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.10.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- willnet
|
|
@@ -73,6 +73,7 @@ extensions: []
|
|
|
73
73
|
extra_rdoc_files: []
|
|
74
74
|
files:
|
|
75
75
|
- ".github/dependabot.yml"
|
|
76
|
+
- ".github/workflows/push_gem.yml"
|
|
76
77
|
- ".github/workflows/test.yml"
|
|
77
78
|
- ".gitignore"
|
|
78
79
|
- CODE_OF_CONDUCT.md
|
|
@@ -112,7 +113,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
112
113
|
- !ruby/object:Gem::Version
|
|
113
114
|
version: '0'
|
|
114
115
|
requirements: []
|
|
115
|
-
rubygems_version:
|
|
116
|
+
rubygems_version: 4.0.3
|
|
116
117
|
specification_version: 4
|
|
117
118
|
summary: Committee for rails
|
|
118
119
|
test_files: []
|