rapporteur 3.8.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/dependabot.yml +4 -1
- data/.github/workflows/release-please.yml +40 -0
- data/.github/workflows/tests.yml +17 -24
- data/.release-please-manifest.json +3 -0
- data/.tool-versions +1 -0
- data/Appraisals +21 -9
- data/CHANGELOG.md +18 -6
- data/Gemfile +1 -0
- data/README.md +10 -12
- data/gemfiles/rails7.1.gemfile +10 -0
- data/gemfiles/{rails6.0.gemfile → rails7.gemfile} +1 -1
- data/gemfiles/{rails6.1.gemfile → rails8.0.gemfile} +1 -1
- data/gemfiles/{rails7.0.gemfile → rails8.1.gemfile} +1 -1
- data/gemfiles/rails_latest.gemfile +1 -1
- data/gemfiles/sinatra2.x.gemfile +1 -0
- data/gemfiles/sinatra3.x.gemfile +10 -0
- data/gemfiles/sinatra4.x.gemfile +10 -0
- data/gemfiles/{rails5.2.gemfile → sinatra_latest.gemfile} +3 -2
- data/lib/rapporteur/version.rb +1 -1
- data/rapporteur.gemspec +3 -4
- data/release-please-config.json +18 -0
- metadata +18 -34
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
|
data/.github/dependabot.yml
CHANGED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
---
|
|
2
|
+
jobs:
|
|
3
|
+
release-please:
|
|
4
|
+
outputs:
|
|
5
|
+
release_created: "${{ steps.release.outputs.release_created }}"
|
|
6
|
+
tag_name: "${{ steps.release.outputs.tag_name }}"
|
|
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"
|
|
12
|
+
runs-on: "ubuntu-latest"
|
|
13
|
+
steps:
|
|
14
|
+
- id: "release"
|
|
15
|
+
uses: "googleapis/release-please-action@v5"
|
|
16
|
+
|
|
17
|
+
release:
|
|
18
|
+
if: "${{ needs.release-please.outputs.release_created }}"
|
|
19
|
+
name: "Release"
|
|
20
|
+
needs:
|
|
21
|
+
- "release-please"
|
|
22
|
+
permissions:
|
|
23
|
+
id-token: "write"
|
|
24
|
+
contents: "write"
|
|
25
|
+
runs-on: "ubuntu-latest"
|
|
26
|
+
steps:
|
|
27
|
+
- uses: "actions/checkout@v7"
|
|
28
|
+
with:
|
|
29
|
+
fetch-tags: true
|
|
30
|
+
- uses: "ruby/setup-ruby@v1"
|
|
31
|
+
with:
|
|
32
|
+
bundler-cache: true
|
|
33
|
+
- uses: "rubygems/release-gem@v1"
|
|
34
|
+
|
|
35
|
+
name: "Release"
|
|
36
|
+
|
|
37
|
+
"on":
|
|
38
|
+
push:
|
|
39
|
+
branches:
|
|
40
|
+
- "main"
|
data/.github/workflows/tests.yml
CHANGED
|
@@ -1,31 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
jobs:
|
|
3
|
-
release_github:
|
|
4
|
-
if: "github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')"
|
|
5
|
-
name: "Deploy to GitHub Packages"
|
|
6
|
-
needs: "tests"
|
|
7
|
-
runs-on: "ubuntu-latest"
|
|
8
|
-
steps:
|
|
9
|
-
- uses: "actions/checkout@v2"
|
|
10
|
-
- uses: "ruby/setup-ruby@v1"
|
|
11
|
-
with:
|
|
12
|
-
bundler-cache: true
|
|
13
|
-
ruby-version: "2.7"
|
|
14
|
-
- name: "Publish to GitHub"
|
|
15
|
-
uses: "jstastny/publish-gem-to-github@v1.3"
|
|
16
|
-
with:
|
|
17
|
-
owner: "envylabs"
|
|
18
|
-
token: "${{ secrets.GITHUB_TOKEN }}"
|
|
19
3
|
tests:
|
|
20
4
|
env:
|
|
21
5
|
BUNDLE_GEMFILE: "${{matrix.gemfile}}"
|
|
6
|
+
name: "Tests"
|
|
22
7
|
runs-on: "ubuntu-latest"
|
|
23
8
|
steps:
|
|
24
|
-
- uses: "actions/checkout@
|
|
9
|
+
- uses: "actions/checkout@v7"
|
|
25
10
|
- uses: "ruby/setup-ruby@v1"
|
|
26
11
|
with:
|
|
27
12
|
bundler-cache: true
|
|
28
|
-
ruby-version: "2.7"
|
|
29
13
|
- name: "Run Tests"
|
|
30
14
|
run: "bundle exec rake spec"
|
|
31
15
|
- name: "Check Ruby Style"
|
|
@@ -35,11 +19,20 @@ jobs:
|
|
|
35
19
|
matrix:
|
|
36
20
|
gemfile:
|
|
37
21
|
- "Gemfile"
|
|
38
|
-
- "gemfiles/rails5.2.gemfile"
|
|
39
|
-
- "gemfiles/rails6.0.gemfile"
|
|
40
|
-
- "gemfiles/rails6.1.gemfile"
|
|
41
|
-
- "gemfiles/rails7.0.gemfile"
|
|
42
22
|
- "gemfiles/rails_latest.gemfile"
|
|
23
|
+
- "gemfiles/rails7.1.gemfile"
|
|
24
|
+
- "gemfiles/rails7.gemfile"
|
|
25
|
+
- "gemfiles/rails8.0.gemfile"
|
|
26
|
+
- "gemfiles/rails8.1.gemfile"
|
|
27
|
+
- "gemfiles/sinatra_latest.gemfile"
|
|
43
28
|
- "gemfiles/sinatra2.x.gemfile"
|
|
44
|
-
|
|
45
|
-
|
|
29
|
+
- "gemfiles/sinatra3.x.gemfile"
|
|
30
|
+
- "gemfiles/sinatra4.x.gemfile"
|
|
31
|
+
name: "Tests"
|
|
32
|
+
"on":
|
|
33
|
+
pull_request:
|
|
34
|
+
branches:
|
|
35
|
+
- "main"
|
|
36
|
+
push:
|
|
37
|
+
branches:
|
|
38
|
+
- "main"
|
data/.tool-versions
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ruby 3.4.2
|
data/Appraisals
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
appraise '
|
|
4
|
-
gem 'rails', '~>
|
|
5
|
-
gem '
|
|
3
|
+
appraise 'rails7.1' do
|
|
4
|
+
gem 'rails', '~> 7.1.0'
|
|
5
|
+
gem 'rspec-rails', '~> 7.0'
|
|
6
6
|
end
|
|
7
7
|
|
|
8
|
-
appraise '
|
|
9
|
-
gem 'rails', '~>
|
|
8
|
+
appraise 'rails7' do
|
|
9
|
+
gem 'rails', '~> 7.1'
|
|
10
10
|
end
|
|
11
11
|
|
|
12
|
-
appraise '
|
|
13
|
-
gem 'rails', '~>
|
|
12
|
+
appraise 'rails8.1' do
|
|
13
|
+
gem 'rails', '~> 8.1'
|
|
14
14
|
end
|
|
15
15
|
|
|
16
|
-
appraise '
|
|
17
|
-
gem 'rails', '~>
|
|
16
|
+
appraise 'rails8.0' do
|
|
17
|
+
gem 'rails', '~> 8.0.0'
|
|
18
18
|
end
|
|
19
19
|
|
|
20
20
|
appraise 'rails-latest' do
|
|
@@ -24,3 +24,15 @@ end
|
|
|
24
24
|
appraise 'sinatra2.x' do
|
|
25
25
|
gem 'sinatra', '~> 2.0'
|
|
26
26
|
end
|
|
27
|
+
|
|
28
|
+
appraise 'sinatra3.x' do
|
|
29
|
+
gem 'sinatra', '~> 3.0'
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
appraise 'sinatra4.x' do
|
|
33
|
+
gem 'sinatra', '~> 4.0'
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
appraise 'sinatra-latest' do
|
|
37
|
+
gem 'sinatra'
|
|
38
|
+
end
|
data/CHANGELOG.md
CHANGED
|
@@ -1,13 +1,25 @@
|
|
|
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))
|
|
12
|
+
|
|
13
|
+
## [3.9.0](https://github.com/envylabs/rapporteur/compare/v3.8.0...v3.9.0) (2025-04-19)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
* set minimum Ruby version to 3.2 ([58ce959](https://github.com/envylabs/rapporteur/commit/58ce959804714e0a2e51e5610e4816c7b7d7eb9f))
|
|
7
19
|
|
|
8
20
|
## [HEAD][] / unreleased
|
|
9
21
|
|
|
10
|
-
*
|
|
22
|
+
* Remove testing of Rails 5.2 as it is no longer officially maintained.
|
|
11
23
|
|
|
12
24
|
## [3.8.0][] / 2022-01-23
|
|
13
25
|
|
|
@@ -208,4 +220,4 @@
|
|
|
208
220
|
[3.7.1]: https://github.com/envylabs/rapporteur/compare/v3.7.0...v3.7.1
|
|
209
221
|
[3.7.2]: https://github.com/envylabs/rapporteur/compare/v3.7.1...v3.7.2
|
|
210
222
|
[3.8.0]: https://github.com/envylabs/rapporteur/compare/v3.7.2...v3.8.0
|
|
211
|
-
[HEAD]: https://github.com/envylabs/rapporteur/compare/v3.8.0...
|
|
223
|
+
[HEAD]: https://github.com/envylabs/rapporteur/compare/v3.8.0...main
|
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
|
|
@@ -101,11 +99,11 @@ endpoints.
|
|
|
101
99
|
So, here is an example usage in Sinatra:
|
|
102
100
|
|
|
103
101
|
```ruby
|
|
104
|
-
require
|
|
105
|
-
require
|
|
102
|
+
require 'rapporteur'
|
|
103
|
+
require 'sinatra/base'
|
|
106
104
|
|
|
107
105
|
class MyApp < Sinatra::Base
|
|
108
|
-
get
|
|
106
|
+
get '/status.json' do
|
|
109
107
|
content_type :json
|
|
110
108
|
status(result.errors.empty? ? 200 : 500)
|
|
111
109
|
body Rapporteur.run.as_json.to_json
|
|
@@ -160,7 +158,7 @@ happy with it, add an error to the given `checker` instance:
|
|
|
160
158
|
|
|
161
159
|
# Define a simple check as a block:
|
|
162
160
|
Rapporteur.add_check do |checker|
|
|
163
|
-
checker.add_message(:paid,
|
|
161
|
+
checker.add_message(:paid, 'too much')
|
|
164
162
|
end
|
|
165
163
|
|
|
166
164
|
# Make and use a reusable Proc or lambda:
|
|
@@ -199,14 +197,14 @@ Rails application:
|
|
|
199
197
|
|
|
200
198
|
```ruby
|
|
201
199
|
# config/initializers/rapporteur.rb
|
|
202
|
-
Rapporteur::Revision.current =
|
|
200
|
+
Rapporteur::Revision.current = 'revision123'
|
|
203
201
|
```
|
|
204
202
|
|
|
205
203
|
```ruby
|
|
206
204
|
# config/environments/production.rb
|
|
207
205
|
MyApplication.configure do
|
|
208
206
|
config.to_prepare do
|
|
209
|
-
Rapporteur::Revision.current =
|
|
207
|
+
Rapporteur::Revision.current = 'revision123'
|
|
210
208
|
end
|
|
211
209
|
end
|
|
212
210
|
```
|
|
@@ -216,13 +214,13 @@ executed and memoized. Useful examples of this are:
|
|
|
216
214
|
|
|
217
215
|
```ruby
|
|
218
216
|
# Read a Capistrano REVISION file
|
|
219
|
-
Rapporteur::Revision.current = Rails.root.join(
|
|
217
|
+
Rapporteur::Revision.current = Rails.root.join('REVISION').read.strip
|
|
220
218
|
|
|
221
219
|
# Force a particular directory and use Git
|
|
222
220
|
Rapporteur::Revision.current = `cd "#{Rails.root}" && git rev-parse HEAD`.strip
|
|
223
221
|
|
|
224
222
|
# Use an ENV variable (Heroku Bamboo Stack)
|
|
225
|
-
Rapporteur::Revision.current = ENV[
|
|
223
|
+
Rapporteur::Revision.current = ENV['REVISION']
|
|
226
224
|
|
|
227
225
|
# Do some crazy calculation
|
|
228
226
|
Rapporteur::Revision.current = lambda { MyRevisionCalculator.execute! }
|
data/gemfiles/sinatra2.x.gemfile
CHANGED
|
@@ -3,7 +3,8 @@
|
|
|
3
3
|
source "https://rubygems.org"
|
|
4
4
|
|
|
5
5
|
gem "activerecord-jdbcsqlite3-adapter", platforms: :jruby
|
|
6
|
-
gem "
|
|
7
|
-
gem "
|
|
6
|
+
gem "rails", ">= 7.1", "< 8.2"
|
|
7
|
+
gem "sqlite3", platforms: :ruby
|
|
8
|
+
gem "sinatra"
|
|
8
9
|
|
|
9
10
|
gemspec path: "../"
|
data/lib/rapporteur/version.rb
CHANGED
data/rapporteur.gemspec
CHANGED
|
@@ -11,10 +11,10 @@ Gem::Specification.new do |spec|
|
|
|
11
11
|
spec.summary = 'An engine that provides common status polling endpoint.'
|
|
12
12
|
spec.homepage = 'https://github.com/envylabs/rapporteur'
|
|
13
13
|
spec.license = 'MIT'
|
|
14
|
-
spec.required_ruby_version = '>= 2
|
|
14
|
+
spec.required_ruby_version = '>= 3.2'
|
|
15
15
|
|
|
16
16
|
spec.metadata['source_code_uri'] = 'https://github.com/envylabs/rapporteur'
|
|
17
|
-
spec.metadata['changelog_uri'] = 'https://github.com/envylabs/rapporteur/blob/
|
|
17
|
+
spec.metadata['changelog_uri'] = 'https://github.com/envylabs/rapporteur/blob/main/CHANGELOG.md'
|
|
18
18
|
|
|
19
19
|
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
|
20
20
|
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
@@ -27,10 +27,9 @@ Gem::Specification.new do |spec|
|
|
|
27
27
|
|
|
28
28
|
spec.add_development_dependency 'appraisal', '~> 2.1'
|
|
29
29
|
spec.add_development_dependency 'combustion', '~> 1.0'
|
|
30
|
-
spec.add_development_dependency 'rails', '>= 3.1', '< 7.1'
|
|
31
30
|
spec.add_development_dependency 'rake', '~> 13.0'
|
|
32
31
|
spec.add_development_dependency 'rspec-collection_matchers', '~> 1.0'
|
|
33
|
-
spec.add_development_dependency 'rspec-rails', '~>
|
|
32
|
+
spec.add_development_dependency 'rspec-rails', '~> 8.0'
|
|
34
33
|
spec.add_development_dependency 'rubocop', '~> 1.0'
|
|
35
34
|
spec.add_development_dependency 'rubocop-rails_config', '~> 1.0'
|
|
36
35
|
end
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"packages": {
|
|
3
|
+
".": {
|
|
4
|
+
"bump-minor-pre-major": true,
|
|
5
|
+
"bump-patch-for-minor-pre-major": false,
|
|
6
|
+
"changelog-path": "CHANGELOG.md",
|
|
7
|
+
"component": "",
|
|
8
|
+
"include-component-in-tag": false,
|
|
9
|
+
"draft": false,
|
|
10
|
+
"monorepo-tags": false,
|
|
11
|
+
"package-name": "rapporteur",
|
|
12
|
+
"prerelease": false,
|
|
13
|
+
"release-type": "ruby",
|
|
14
|
+
"version-file": "lib/rapporteur/version.rb"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
|
|
18
|
+
}
|
metadata
CHANGED
|
@@ -1,14 +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
|
-
autorequire:
|
|
9
8
|
bindir: exe
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 2026-08-16 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: i18n
|
|
@@ -58,26 +57,6 @@ dependencies:
|
|
|
58
57
|
- - "~>"
|
|
59
58
|
- !ruby/object:Gem::Version
|
|
60
59
|
version: '1.0'
|
|
61
|
-
- !ruby/object:Gem::Dependency
|
|
62
|
-
name: rails
|
|
63
|
-
requirement: !ruby/object:Gem::Requirement
|
|
64
|
-
requirements:
|
|
65
|
-
- - ">="
|
|
66
|
-
- !ruby/object:Gem::Version
|
|
67
|
-
version: '3.1'
|
|
68
|
-
- - "<"
|
|
69
|
-
- !ruby/object:Gem::Version
|
|
70
|
-
version: '7.1'
|
|
71
|
-
type: :development
|
|
72
|
-
prerelease: false
|
|
73
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
74
|
-
requirements:
|
|
75
|
-
- - ">="
|
|
76
|
-
- !ruby/object:Gem::Version
|
|
77
|
-
version: '3.1'
|
|
78
|
-
- - "<"
|
|
79
|
-
- !ruby/object:Gem::Version
|
|
80
|
-
version: '7.1'
|
|
81
60
|
- !ruby/object:Gem::Dependency
|
|
82
61
|
name: rake
|
|
83
62
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -112,14 +91,14 @@ dependencies:
|
|
|
112
91
|
requirements:
|
|
113
92
|
- - "~>"
|
|
114
93
|
- !ruby/object:Gem::Version
|
|
115
|
-
version: '
|
|
94
|
+
version: '8.0'
|
|
116
95
|
type: :development
|
|
117
96
|
prerelease: false
|
|
118
97
|
version_requirements: !ruby/object:Gem::Requirement
|
|
119
98
|
requirements:
|
|
120
99
|
- - "~>"
|
|
121
100
|
- !ruby/object:Gem::Version
|
|
122
|
-
version: '
|
|
101
|
+
version: '8.0'
|
|
123
102
|
- !ruby/object:Gem::Dependency
|
|
124
103
|
name: rubocop
|
|
125
104
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -156,10 +135,13 @@ extensions: []
|
|
|
156
135
|
extra_rdoc_files: []
|
|
157
136
|
files:
|
|
158
137
|
- ".github/dependabot.yml"
|
|
138
|
+
- ".github/workflows/release-please.yml"
|
|
159
139
|
- ".github/workflows/tests.yml"
|
|
160
140
|
- ".gitignore"
|
|
141
|
+
- ".release-please-manifest.json"
|
|
161
142
|
- ".rspec"
|
|
162
143
|
- ".rubocop.yml"
|
|
144
|
+
- ".tool-versions"
|
|
163
145
|
- ".yamllint"
|
|
164
146
|
- Appraisals
|
|
165
147
|
- CHANGELOG.md
|
|
@@ -174,12 +156,15 @@ files:
|
|
|
174
156
|
- config.ru
|
|
175
157
|
- config/locales/en.yml
|
|
176
158
|
- config/routes.rb
|
|
177
|
-
- gemfiles/
|
|
178
|
-
- gemfiles/
|
|
179
|
-
- gemfiles/
|
|
180
|
-
- gemfiles/
|
|
159
|
+
- gemfiles/rails7.1.gemfile
|
|
160
|
+
- gemfiles/rails7.gemfile
|
|
161
|
+
- gemfiles/rails8.0.gemfile
|
|
162
|
+
- gemfiles/rails8.1.gemfile
|
|
181
163
|
- gemfiles/rails_latest.gemfile
|
|
182
164
|
- gemfiles/sinatra2.x.gemfile
|
|
165
|
+
- gemfiles/sinatra3.x.gemfile
|
|
166
|
+
- gemfiles/sinatra4.x.gemfile
|
|
167
|
+
- gemfiles/sinatra_latest.gemfile
|
|
183
168
|
- lib/rapporteur.rb
|
|
184
169
|
- lib/rapporteur/check_list.rb
|
|
185
170
|
- lib/rapporteur/checker.rb
|
|
@@ -193,13 +178,13 @@ files:
|
|
|
193
178
|
- lib/rapporteur/rspec3.rb
|
|
194
179
|
- lib/rapporteur/version.rb
|
|
195
180
|
- rapporteur.gemspec
|
|
181
|
+
- release-please-config.json
|
|
196
182
|
homepage: https://github.com/envylabs/rapporteur
|
|
197
183
|
licenses:
|
|
198
184
|
- MIT
|
|
199
185
|
metadata:
|
|
200
186
|
source_code_uri: https://github.com/envylabs/rapporteur
|
|
201
|
-
changelog_uri: https://github.com/envylabs/rapporteur/blob/
|
|
202
|
-
post_install_message:
|
|
187
|
+
changelog_uri: https://github.com/envylabs/rapporteur/blob/main/CHANGELOG.md
|
|
203
188
|
rdoc_options: []
|
|
204
189
|
require_paths:
|
|
205
190
|
- lib
|
|
@@ -207,15 +192,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
207
192
|
requirements:
|
|
208
193
|
- - ">="
|
|
209
194
|
- !ruby/object:Gem::Version
|
|
210
|
-
version: 2
|
|
195
|
+
version: '3.2'
|
|
211
196
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
212
197
|
requirements:
|
|
213
198
|
- - ">="
|
|
214
199
|
- !ruby/object:Gem::Version
|
|
215
200
|
version: '0'
|
|
216
201
|
requirements: []
|
|
217
|
-
rubygems_version: 3.
|
|
218
|
-
signing_key:
|
|
202
|
+
rubygems_version: 3.6.2
|
|
219
203
|
specification_version: 4
|
|
220
204
|
summary: An engine that provides common status polling endpoint.
|
|
221
205
|
test_files: []
|