committee-rails 0.8.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 +49 -11
- data/gemfiles/rails_6_0.gemfile +10 -0
- data/gemfiles/rails_6_1.gemfile +10 -0
- data/gemfiles/rails_7_0.gemfile +9 -0
- data/gemfiles/rails_7_1.gemfile +9 -0
- data/gemfiles/rails_7_2.gemfile +9 -0
- data/gemfiles/rails_8_0.gemfile +9 -0
- data/gemfiles/rails_8_1.gemfile +9 -0
- data/lib/committee/rails/version.rb +1 -1
- metadata +11 -6
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
|
@@ -17,19 +17,58 @@ jobs:
|
|
|
17
17
|
strategy:
|
|
18
18
|
fail-fast: false
|
|
19
19
|
matrix:
|
|
20
|
-
ruby:
|
|
21
|
-
- '2.7'
|
|
22
|
-
- '3.0'
|
|
23
|
-
- '3.1'
|
|
24
|
-
- '3.2'
|
|
25
|
-
- '3.3'
|
|
26
|
-
- 'head'
|
|
27
20
|
include:
|
|
28
|
-
- ruby: '
|
|
29
|
-
|
|
21
|
+
- ruby: '2.7'
|
|
22
|
+
gemfile: 'rails_6_0'
|
|
23
|
+
- ruby: '2.7'
|
|
24
|
+
gemfile: 'rails_6_1'
|
|
25
|
+
- ruby: '3.0'
|
|
26
|
+
gemfile: 'rails_6_1'
|
|
27
|
+
- ruby: '3.0'
|
|
28
|
+
gemfile: 'rails_7_0'
|
|
29
|
+
- ruby: '3.1'
|
|
30
|
+
gemfile: 'rails_7_0'
|
|
31
|
+
- ruby: '3.2'
|
|
32
|
+
gemfile: 'rails_7_0'
|
|
33
|
+
- ruby: '3.3'
|
|
34
|
+
gemfile: 'rails_7_0'
|
|
35
|
+
- ruby: '2.7'
|
|
36
|
+
gemfile: 'rails_7_1'
|
|
37
|
+
- ruby: '3.0'
|
|
38
|
+
gemfile: 'rails_7_1'
|
|
39
|
+
- ruby: '3.1'
|
|
40
|
+
gemfile: 'rails_7_1'
|
|
41
|
+
- ruby: '3.2'
|
|
42
|
+
gemfile: 'rails_7_1'
|
|
43
|
+
- ruby: '3.2'
|
|
44
|
+
gemfile: 'rails_7_2'
|
|
45
|
+
- ruby: '3.3'
|
|
46
|
+
gemfile: 'rails_7_2'
|
|
47
|
+
- ruby: '3.4'
|
|
48
|
+
gemfile: 'rails_7_2'
|
|
49
|
+
- ruby: '3.2'
|
|
50
|
+
gemfile: 'rails_8_0'
|
|
51
|
+
- ruby: '3.3'
|
|
52
|
+
gemfile: 'rails_8_0'
|
|
53
|
+
- ruby: '3.4'
|
|
54
|
+
gemfile: 'rails_8_0'
|
|
55
|
+
- ruby: '3.2'
|
|
56
|
+
gemfile: 'rails_8_1'
|
|
57
|
+
- ruby: '3.3'
|
|
58
|
+
gemfile: 'rails_8_1'
|
|
59
|
+
- ruby: '3.4'
|
|
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'
|
|
67
|
+
env:
|
|
68
|
+
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
|
|
30
69
|
|
|
31
70
|
steps:
|
|
32
|
-
- uses: actions/checkout@
|
|
71
|
+
- uses: actions/checkout@v6
|
|
33
72
|
- uses: ruby/setup-ruby@v1
|
|
34
73
|
with:
|
|
35
74
|
ruby-version: ${{ matrix.ruby }}
|
|
@@ -39,4 +78,3 @@ jobs:
|
|
|
39
78
|
run: |
|
|
40
79
|
set -xe
|
|
41
80
|
bundle exec rake
|
|
42
|
-
continue-on-error: ${{ matrix.allow_failures == 'true' }}
|
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
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
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: exe
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: committee
|
|
@@ -74,6 +73,7 @@ extensions: []
|
|
|
74
73
|
extra_rdoc_files: []
|
|
75
74
|
files:
|
|
76
75
|
- ".github/dependabot.yml"
|
|
76
|
+
- ".github/workflows/push_gem.yml"
|
|
77
77
|
- ".github/workflows/test.yml"
|
|
78
78
|
- ".gitignore"
|
|
79
79
|
- CODE_OF_CONDUCT.md
|
|
@@ -84,6 +84,13 @@ files:
|
|
|
84
84
|
- bin/console
|
|
85
85
|
- bin/setup
|
|
86
86
|
- committee-rails.gemspec
|
|
87
|
+
- gemfiles/rails_6_0.gemfile
|
|
88
|
+
- gemfiles/rails_6_1.gemfile
|
|
89
|
+
- gemfiles/rails_7_0.gemfile
|
|
90
|
+
- gemfiles/rails_7_1.gemfile
|
|
91
|
+
- gemfiles/rails_7_2.gemfile
|
|
92
|
+
- gemfiles/rails_8_0.gemfile
|
|
93
|
+
- gemfiles/rails_8_1.gemfile
|
|
87
94
|
- lib/committee/rails.rb
|
|
88
95
|
- lib/committee/rails/request_object.rb
|
|
89
96
|
- lib/committee/rails/test/methods.rb
|
|
@@ -92,7 +99,6 @@ homepage: https://github.com/willnet/committee-rails
|
|
|
92
99
|
licenses:
|
|
93
100
|
- MIT
|
|
94
101
|
metadata: {}
|
|
95
|
-
post_install_message:
|
|
96
102
|
rdoc_options: []
|
|
97
103
|
require_paths:
|
|
98
104
|
- lib
|
|
@@ -107,8 +113,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
107
113
|
- !ruby/object:Gem::Version
|
|
108
114
|
version: '0'
|
|
109
115
|
requirements: []
|
|
110
|
-
rubygems_version:
|
|
111
|
-
signing_key:
|
|
116
|
+
rubygems_version: 4.0.3
|
|
112
117
|
specification_version: 4
|
|
113
118
|
summary: Committee for rails
|
|
114
119
|
test_files: []
|