rapporteur 3.9.0 → 3.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/release-please.yml +15 -25
- data/.github/workflows/tests.yml +3 -1
- data/.release-please-manifest.json +1 -1
- data/Appraisals +9 -0
- data/CHANGELOG.md +9 -4
- data/Gemfile +1 -1
- data/README.md +2 -4
- data/gemfiles/rails7.1.gemfile +1 -0
- data/gemfiles/rails8.1.gemfile +9 -0
- data/gemfiles/sinatra2.x.gemfile +1 -1
- data/gemfiles/sinatra3.x.gemfile +1 -1
- data/gemfiles/sinatra4.x.gemfile +1 -1
- data/gemfiles/sinatra_latest.gemfile +10 -0
- data/lib/rapporteur/version.rb +1 -1
- data/rapporteur.gemspec +1 -1
- metadata +6 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c9d577777d0edc0d09b169d374c36bbf75cf80f47ceb168ebc97e225f3c834d5
|
|
4
|
+
data.tar.gz: 18ad179cae2fdeaefc6fb6b58446510777e0e272c2e292add05e4a29ac90ec3e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6c2d0007b350a5c0bca8b9e889287ea3ba131bef672d4ed535c4ea3f4dc38f7035fc679b989549976f09d0b31a2d75f55e6caf91ddbe6fac7960ba23e45e1f93
|
|
7
|
+
data.tar.gz: 1c6e096c96bae6245d84b0b9021f3701c61c29d7b5cc9a49d73c1a16b6c5ddb1a72911f9220e2cb929cb2c84b27b6e246097d64fe23c9876d821a31adfa2f698
|
|
@@ -1,50 +1,40 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
2
|
jobs:
|
|
4
3
|
release-please:
|
|
5
4
|
outputs:
|
|
6
5
|
release_created: "${{ steps.release.outputs.release_created }}"
|
|
7
6
|
tag_name: "${{ steps.release.outputs.tag_name }}"
|
|
8
7
|
version_number: "${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}.${{ steps.release.outputs.patch }}"
|
|
8
|
+
permissions:
|
|
9
|
+
contents: "write"
|
|
10
|
+
issues: "write"
|
|
11
|
+
pull-requests: "write"
|
|
9
12
|
runs-on: "ubuntu-latest"
|
|
10
13
|
steps:
|
|
11
14
|
- id: "release"
|
|
12
|
-
uses: "googleapis/release-please-action@
|
|
15
|
+
uses: "googleapis/release-please-action@v5"
|
|
13
16
|
|
|
14
|
-
|
|
17
|
+
release:
|
|
15
18
|
if: "${{ needs.release-please.outputs.release_created }}"
|
|
19
|
+
name: "Release"
|
|
16
20
|
needs:
|
|
17
21
|
- "release-please"
|
|
22
|
+
permissions:
|
|
23
|
+
id-token: "write"
|
|
24
|
+
contents: "write"
|
|
18
25
|
runs-on: "ubuntu-latest"
|
|
19
26
|
steps:
|
|
20
|
-
- uses: "actions/checkout@
|
|
27
|
+
- uses: "actions/checkout@v7"
|
|
28
|
+
with:
|
|
29
|
+
fetch-tags: true
|
|
21
30
|
- uses: "ruby/setup-ruby@v1"
|
|
22
31
|
with:
|
|
23
32
|
bundler-cache: true
|
|
24
|
-
-
|
|
25
|
-
RUBYGEMS_API_KEY: "${{ secrets.RUBYGEMS_API_KEY }}"
|
|
26
|
-
name: "Setup Access to rubygems.org Registry"
|
|
27
|
-
- name: "Build Rubygem"
|
|
28
|
-
run: "gem build rapporteur.gemspec"
|
|
29
|
-
- env:
|
|
30
|
-
BINARY_NAME: "rapporteur-${{ needs.release-please.outputs.version_number }}.gem"
|
|
31
|
-
RUBYGEMS_API_KEY: "${{ secrets.RUBYGEMS_API_KEY }}"
|
|
32
|
-
name: "Push Rubygem"
|
|
33
|
-
run: 'GEM_HOST_API_KEY="$RUBYGEMS_API_KEY" gem push "$BINARY_NAME"'
|
|
34
|
-
- env:
|
|
35
|
-
BINARY_NAME: "rapporteur-${{ needs.release-please.outputs.version_number }}.gem"
|
|
36
|
-
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
|
37
|
-
name: "Upload Release Artifact"
|
|
38
|
-
run: 'gh release upload ${{ needs.release-please.outputs.tag_name }} "$BINARY_NAME"'
|
|
33
|
+
- uses: "rubygems/release-gem@v1"
|
|
39
34
|
|
|
40
|
-
name: "Release
|
|
35
|
+
name: "Release"
|
|
41
36
|
|
|
42
37
|
"on":
|
|
43
38
|
push:
|
|
44
39
|
branches:
|
|
45
40
|
- "main"
|
|
46
|
-
|
|
47
|
-
permissions:
|
|
48
|
-
contents: "write"
|
|
49
|
-
issues: "write"
|
|
50
|
-
pull-requests: "write"
|
data/.github/workflows/tests.yml
CHANGED
|
@@ -6,7 +6,7 @@ jobs:
|
|
|
6
6
|
name: "Tests"
|
|
7
7
|
runs-on: "ubuntu-latest"
|
|
8
8
|
steps:
|
|
9
|
-
- uses: "actions/checkout@
|
|
9
|
+
- uses: "actions/checkout@v7"
|
|
10
10
|
- uses: "ruby/setup-ruby@v1"
|
|
11
11
|
with:
|
|
12
12
|
bundler-cache: true
|
|
@@ -23,6 +23,8 @@ jobs:
|
|
|
23
23
|
- "gemfiles/rails7.1.gemfile"
|
|
24
24
|
- "gemfiles/rails7.gemfile"
|
|
25
25
|
- "gemfiles/rails8.0.gemfile"
|
|
26
|
+
- "gemfiles/rails8.1.gemfile"
|
|
27
|
+
- "gemfiles/sinatra_latest.gemfile"
|
|
26
28
|
- "gemfiles/sinatra2.x.gemfile"
|
|
27
29
|
- "gemfiles/sinatra3.x.gemfile"
|
|
28
30
|
- "gemfiles/sinatra4.x.gemfile"
|
data/Appraisals
CHANGED
|
@@ -2,12 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
appraise 'rails7.1' do
|
|
4
4
|
gem 'rails', '~> 7.1.0'
|
|
5
|
+
gem 'rspec-rails', '~> 7.0'
|
|
5
6
|
end
|
|
6
7
|
|
|
7
8
|
appraise 'rails7' do
|
|
8
9
|
gem 'rails', '~> 7.1'
|
|
9
10
|
end
|
|
10
11
|
|
|
12
|
+
appraise 'rails8.1' do
|
|
13
|
+
gem 'rails', '~> 8.1'
|
|
14
|
+
end
|
|
15
|
+
|
|
11
16
|
appraise 'rails8.0' do
|
|
12
17
|
gem 'rails', '~> 8.0.0'
|
|
13
18
|
end
|
|
@@ -27,3 +32,7 @@ end
|
|
|
27
32
|
appraise 'sinatra4.x' do
|
|
28
33
|
gem 'sinatra', '~> 4.0'
|
|
29
34
|
end
|
|
35
|
+
|
|
36
|
+
appraise 'sinatra-latest' do
|
|
37
|
+
gem 'sinatra'
|
|
38
|
+
end
|
data/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
# Rapporteur changelog
|
|
2
2
|
|
|
3
|
-
[](https://badge.fury.io/rb/rapporteur)
|
|
4
|
+
[](https://github.com/envylabs/rapporteur/actions/workflows/tests.yml)
|
|
5
|
+
|
|
6
|
+
## [3.10.0](https://github.com/envylabs/rapporteur/compare/v3.9.0...v3.10.0) (2026-08-16)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* test and allow for rails 8.1.x ([8f9209f](https://github.com/envylabs/rapporteur/commit/8f9209fe38816c00d4f5061fa090f90f74894b6a))
|
|
7
12
|
|
|
8
13
|
## [3.9.0](https://github.com/envylabs/rapporteur/compare/v3.8.0...v3.9.0) (2025-04-19)
|
|
9
14
|
|
data/Gemfile
CHANGED
data/README.md
CHANGED
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
# Rapporteur (rap-or-TUHR)
|
|
2
2
|
|
|
3
|
-
[](https://codeclimate.com/github/envylabs/rapporteur/maintainability)
|
|
6
|
-
[](http://inch-ci.org/github/envylabs/rapporteur)
|
|
3
|
+
[](https://badge.fury.io/rb/rapporteur)
|
|
4
|
+
[](https://github.com/envylabs/rapporteur/actions/workflows/tests.yml)
|
|
7
5
|
|
|
8
6
|
|
|
9
7
|
This gem provides a singular, status-checking endpoint to your application. The
|
data/gemfiles/rails7.1.gemfile
CHANGED
data/gemfiles/sinatra2.x.gemfile
CHANGED
data/gemfiles/sinatra3.x.gemfile
CHANGED
data/gemfiles/sinatra4.x.gemfile
CHANGED
data/lib/rapporteur/version.rb
CHANGED
data/rapporteur.gemspec
CHANGED
|
@@ -29,7 +29,7 @@ Gem::Specification.new do |spec|
|
|
|
29
29
|
spec.add_development_dependency 'combustion', '~> 1.0'
|
|
30
30
|
spec.add_development_dependency 'rake', '~> 13.0'
|
|
31
31
|
spec.add_development_dependency 'rspec-collection_matchers', '~> 1.0'
|
|
32
|
-
spec.add_development_dependency 'rspec-rails', '~>
|
|
32
|
+
spec.add_development_dependency 'rspec-rails', '~> 8.0'
|
|
33
33
|
spec.add_development_dependency 'rubocop', '~> 1.0'
|
|
34
34
|
spec.add_development_dependency 'rubocop-rails_config', '~> 1.0'
|
|
35
35
|
end
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rapporteur
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.
|
|
4
|
+
version: 3.10.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Envy Labs
|
|
8
8
|
bindir: exe
|
|
9
9
|
cert_chain: []
|
|
10
|
-
date:
|
|
10
|
+
date: 2026-08-16 00:00:00.000000000 Z
|
|
11
11
|
dependencies:
|
|
12
12
|
- !ruby/object:Gem::Dependency
|
|
13
13
|
name: i18n
|
|
@@ -91,14 +91,14 @@ dependencies:
|
|
|
91
91
|
requirements:
|
|
92
92
|
- - "~>"
|
|
93
93
|
- !ruby/object:Gem::Version
|
|
94
|
-
version: '
|
|
94
|
+
version: '8.0'
|
|
95
95
|
type: :development
|
|
96
96
|
prerelease: false
|
|
97
97
|
version_requirements: !ruby/object:Gem::Requirement
|
|
98
98
|
requirements:
|
|
99
99
|
- - "~>"
|
|
100
100
|
- !ruby/object:Gem::Version
|
|
101
|
-
version: '
|
|
101
|
+
version: '8.0'
|
|
102
102
|
- !ruby/object:Gem::Dependency
|
|
103
103
|
name: rubocop
|
|
104
104
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -159,10 +159,12 @@ files:
|
|
|
159
159
|
- gemfiles/rails7.1.gemfile
|
|
160
160
|
- gemfiles/rails7.gemfile
|
|
161
161
|
- gemfiles/rails8.0.gemfile
|
|
162
|
+
- gemfiles/rails8.1.gemfile
|
|
162
163
|
- gemfiles/rails_latest.gemfile
|
|
163
164
|
- gemfiles/sinatra2.x.gemfile
|
|
164
165
|
- gemfiles/sinatra3.x.gemfile
|
|
165
166
|
- gemfiles/sinatra4.x.gemfile
|
|
167
|
+
- gemfiles/sinatra_latest.gemfile
|
|
166
168
|
- lib/rapporteur.rb
|
|
167
169
|
- lib/rapporteur/check_list.rb
|
|
168
170
|
- lib/rapporteur/checker.rb
|