rapporteur 3.7.2 → 3.9.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 +50 -0
- data/.github/workflows/tests.yml +15 -23
- data/.gitignore +1 -0
- data/.release-please-manifest.json +3 -0
- data/.tool-versions +1 -0
- data/Appraisals +14 -7
- data/CHANGELOG.md +15 -3
- data/Gemfile +1 -0
- data/README.md +9 -9
- data/gemfiles/{rails6.0.gemfile → rails7.1.gemfile} +1 -1
- data/gemfiles/{rails6.1.gemfile → rails7.gemfile} +1 -1
- data/gemfiles/{rails5.2.gemfile → rails8.0.gemfile} +2 -2
- 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/lib/rapporteur/version.rb +1 -1
- data/rapporteur.gemspec +3 -5
- data/release-please-config.json +18 -0
- metadata +16 -48
- data/Gemfile.lock +0 -221
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c65ff4a79fed3206ece219a4fe88c3fb95b45debba73ac9b9738af460d3feb50
|
4
|
+
data.tar.gz: 15a6cb1de102ad7d4506a41eddd99b52585d3bc914d50e918318ffa0792b01de
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 50f8432189ddf9dc03c3d2351bdeeeedbc86949d49cea282c174e243bd360751ad21385e5d2fe9980074aa6304f15e840357853f1fa6aa825c63bbbd0db31a3f
|
7
|
+
data.tar.gz: 1b1b8d7c2e14ea1ebad8325a7e0c577aa4c53ac2835acf9f1e0715617ba884b7026aa0f9216470b385a7533ecf1593b30c129b0f4dddc98eb10a67d7b945c0da
|
data/.github/dependabot.yml
CHANGED
@@ -0,0 +1,50 @@
|
|
1
|
+
---
|
2
|
+
|
3
|
+
jobs:
|
4
|
+
release-please:
|
5
|
+
outputs:
|
6
|
+
release_created: "${{ steps.release.outputs.release_created }}"
|
7
|
+
tag_name: "${{ steps.release.outputs.tag_name }}"
|
8
|
+
version_number: "${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}.${{ steps.release.outputs.patch }}"
|
9
|
+
runs-on: "ubuntu-latest"
|
10
|
+
steps:
|
11
|
+
- id: "release"
|
12
|
+
uses: "googleapis/release-please-action@v4"
|
13
|
+
|
14
|
+
releases:
|
15
|
+
if: "${{ needs.release-please.outputs.release_created }}"
|
16
|
+
needs:
|
17
|
+
- "release-please"
|
18
|
+
runs-on: "ubuntu-latest"
|
19
|
+
steps:
|
20
|
+
- uses: "actions/checkout@v4"
|
21
|
+
- uses: "ruby/setup-ruby@v1"
|
22
|
+
with:
|
23
|
+
bundler-cache: true
|
24
|
+
- env:
|
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"'
|
39
|
+
|
40
|
+
name: "Release Please"
|
41
|
+
|
42
|
+
"on":
|
43
|
+
push:
|
44
|
+
branches:
|
45
|
+
- "main"
|
46
|
+
|
47
|
+
permissions:
|
48
|
+
contents: "write"
|
49
|
+
issues: "write"
|
50
|
+
pull-requests: "write"
|
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@v4"
|
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,10 +19,18 @@ 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
22
|
- "gemfiles/rails_latest.gemfile"
|
23
|
+
- "gemfiles/rails7.1.gemfile"
|
24
|
+
- "gemfiles/rails7.gemfile"
|
25
|
+
- "gemfiles/rails8.0.gemfile"
|
42
26
|
- "gemfiles/sinatra2.x.gemfile"
|
43
|
-
|
44
|
-
|
27
|
+
- "gemfiles/sinatra3.x.gemfile"
|
28
|
+
- "gemfiles/sinatra4.x.gemfile"
|
29
|
+
name: "Tests"
|
30
|
+
"on":
|
31
|
+
pull_request:
|
32
|
+
branches:
|
33
|
+
- "main"
|
34
|
+
push:
|
35
|
+
branches:
|
36
|
+
- "main"
|
data/.gitignore
CHANGED
data/.tool-versions
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
ruby 3.4.2
|
data/Appraisals
CHANGED
@@ -1,16 +1,15 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
appraise '
|
4
|
-
gem 'rails', '~>
|
5
|
-
gem 'sqlite3', '< 1.4', platforms: :ruby
|
3
|
+
appraise 'rails7.1' do
|
4
|
+
gem 'rails', '~> 7.1.0'
|
6
5
|
end
|
7
6
|
|
8
|
-
appraise '
|
9
|
-
gem 'rails', '~>
|
7
|
+
appraise 'rails7' do
|
8
|
+
gem 'rails', '~> 7.1'
|
10
9
|
end
|
11
10
|
|
12
|
-
appraise '
|
13
|
-
gem 'rails', '~>
|
11
|
+
appraise 'rails8.0' do
|
12
|
+
gem 'rails', '~> 8.0.0'
|
14
13
|
end
|
15
14
|
|
16
15
|
appraise 'rails-latest' do
|
@@ -20,3 +19,11 @@ end
|
|
20
19
|
appraise 'sinatra2.x' do
|
21
20
|
gem 'sinatra', '~> 2.0'
|
22
21
|
end
|
22
|
+
|
23
|
+
appraise 'sinatra3.x' do
|
24
|
+
gem 'sinatra', '~> 3.0'
|
25
|
+
end
|
26
|
+
|
27
|
+
appraise 'sinatra4.x' do
|
28
|
+
gem 'sinatra', '~> 4.0'
|
29
|
+
end
|
data/CHANGELOG.md
CHANGED
@@ -3,11 +3,22 @@
|
|
3
3
|
[](http://rubygems.org/gems/rapporteur)
|
4
4
|
[](https://github.com/envylabs/rapporteur/actions/workflows/tests.yml)
|
5
5
|
[](https://codeclimate.com/github/envylabs/rapporteur/maintainability)
|
6
|
-
[](http://inch-ci.org/github/envylabs/rapporteur)
|
7
|
+
|
8
|
+
## [3.9.0](https://github.com/envylabs/rapporteur/compare/v3.8.0...v3.9.0) (2025-04-19)
|
9
|
+
|
10
|
+
|
11
|
+
### Features
|
12
|
+
|
13
|
+
* set minimum Ruby version to 3.2 ([58ce959](https://github.com/envylabs/rapporteur/commit/58ce959804714e0a2e51e5610e4816c7b7d7eb9f))
|
7
14
|
|
8
15
|
## [HEAD][] / unreleased
|
9
16
|
|
10
|
-
*
|
17
|
+
* Remove testing of Rails 5.2 as it is no longer officially maintained.
|
18
|
+
|
19
|
+
## [3.8.0][] / 2022-01-23
|
20
|
+
|
21
|
+
* Add support for Rails 7.0.
|
11
22
|
|
12
23
|
## [3.7.2][] / 2021-06-22
|
13
24
|
|
@@ -203,4 +214,5 @@
|
|
203
214
|
[3.7.0]: https://github.com/envylabs/rapporteur/compare/v3.6.4...v3.7.0
|
204
215
|
[3.7.1]: https://github.com/envylabs/rapporteur/compare/v3.7.0...v3.7.1
|
205
216
|
[3.7.2]: https://github.com/envylabs/rapporteur/compare/v3.7.1...v3.7.2
|
206
|
-
[
|
217
|
+
[3.8.0]: https://github.com/envylabs/rapporteur/compare/v3.7.2...v3.8.0
|
218
|
+
[HEAD]: https://github.com/envylabs/rapporteur/compare/v3.8.0...main
|
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
[](http://rubygems.org/gems/rapporteur)
|
4
4
|
[](https://github.com/envylabs/rapporteur/actions/workflows/tests.yml)
|
5
5
|
[](https://codeclimate.com/github/envylabs/rapporteur/maintainability)
|
6
|
-
[](http://inch-ci.org/github/envylabs/rapporteur)
|
7
7
|
|
8
8
|
|
9
9
|
This gem provides a singular, status-checking endpoint to your application. The
|
@@ -101,11 +101,11 @@ endpoints.
|
|
101
101
|
So, here is an example usage in Sinatra:
|
102
102
|
|
103
103
|
```ruby
|
104
|
-
require
|
105
|
-
require
|
104
|
+
require 'rapporteur'
|
105
|
+
require 'sinatra/base'
|
106
106
|
|
107
107
|
class MyApp < Sinatra::Base
|
108
|
-
get
|
108
|
+
get '/status.json' do
|
109
109
|
content_type :json
|
110
110
|
status(result.errors.empty? ? 200 : 500)
|
111
111
|
body Rapporteur.run.as_json.to_json
|
@@ -160,7 +160,7 @@ happy with it, add an error to the given `checker` instance:
|
|
160
160
|
|
161
161
|
# Define a simple check as a block:
|
162
162
|
Rapporteur.add_check do |checker|
|
163
|
-
checker.add_message(:paid,
|
163
|
+
checker.add_message(:paid, 'too much')
|
164
164
|
end
|
165
165
|
|
166
166
|
# Make and use a reusable Proc or lambda:
|
@@ -199,14 +199,14 @@ Rails application:
|
|
199
199
|
|
200
200
|
```ruby
|
201
201
|
# config/initializers/rapporteur.rb
|
202
|
-
Rapporteur::Revision.current =
|
202
|
+
Rapporteur::Revision.current = 'revision123'
|
203
203
|
```
|
204
204
|
|
205
205
|
```ruby
|
206
206
|
# config/environments/production.rb
|
207
207
|
MyApplication.configure do
|
208
208
|
config.to_prepare do
|
209
|
-
Rapporteur::Revision.current =
|
209
|
+
Rapporteur::Revision.current = 'revision123'
|
210
210
|
end
|
211
211
|
end
|
212
212
|
```
|
@@ -216,13 +216,13 @@ executed and memoized. Useful examples of this are:
|
|
216
216
|
|
217
217
|
```ruby
|
218
218
|
# Read a Capistrano REVISION file
|
219
|
-
Rapporteur::Revision.current = Rails.root.join(
|
219
|
+
Rapporteur::Revision.current = Rails.root.join('REVISION').read.strip
|
220
220
|
|
221
221
|
# Force a particular directory and use Git
|
222
222
|
Rapporteur::Revision.current = `cd "#{Rails.root}" && git rev-parse HEAD`.strip
|
223
223
|
|
224
224
|
# Use an ENV variable (Heroku Bamboo Stack)
|
225
|
-
Rapporteur::Revision.current = ENV[
|
225
|
+
Rapporteur::Revision.current = ENV['REVISION']
|
226
226
|
|
227
227
|
# Do some crazy calculation
|
228
228
|
Rapporteur::Revision.current = lambda { MyRevisionCalculator.execute! }
|
data/gemfiles/sinatra2.x.gemfile
CHANGED
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)/}) }
|
@@ -26,12 +26,10 @@ Gem::Specification.new do |spec|
|
|
26
26
|
spec.add_dependency 'i18n', '>= 0.6', '< 2'
|
27
27
|
|
28
28
|
spec.add_development_dependency 'appraisal', '~> 2.1'
|
29
|
-
spec.add_development_dependency 'bundler', '~> 2.0'
|
30
29
|
spec.add_development_dependency 'combustion', '~> 1.0'
|
31
|
-
spec.add_development_dependency 'rails', '>= 3.1', '< 7'
|
32
30
|
spec.add_development_dependency 'rake', '~> 13.0'
|
33
31
|
spec.add_development_dependency 'rspec-collection_matchers', '~> 1.0'
|
34
|
-
spec.add_development_dependency 'rspec-rails', '~>
|
32
|
+
spec.add_development_dependency 'rspec-rails', '~> 7.0'
|
35
33
|
spec.add_development_dependency 'rubocop', '~> 1.0'
|
36
34
|
spec.add_development_dependency 'rubocop-rails_config', '~> 1.0'
|
37
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.9.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: 2025-04-19 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: i18n
|
@@ -44,20 +43,6 @@ dependencies:
|
|
44
43
|
- - "~>"
|
45
44
|
- !ruby/object:Gem::Version
|
46
45
|
version: '2.1'
|
47
|
-
- !ruby/object:Gem::Dependency
|
48
|
-
name: bundler
|
49
|
-
requirement: !ruby/object:Gem::Requirement
|
50
|
-
requirements:
|
51
|
-
- - "~>"
|
52
|
-
- !ruby/object:Gem::Version
|
53
|
-
version: '2.0'
|
54
|
-
type: :development
|
55
|
-
prerelease: false
|
56
|
-
version_requirements: !ruby/object:Gem::Requirement
|
57
|
-
requirements:
|
58
|
-
- - "~>"
|
59
|
-
- !ruby/object:Gem::Version
|
60
|
-
version: '2.0'
|
61
46
|
- !ruby/object:Gem::Dependency
|
62
47
|
name: combustion
|
63
48
|
requirement: !ruby/object:Gem::Requirement
|
@@ -72,26 +57,6 @@ dependencies:
|
|
72
57
|
- - "~>"
|
73
58
|
- !ruby/object:Gem::Version
|
74
59
|
version: '1.0'
|
75
|
-
- !ruby/object:Gem::Dependency
|
76
|
-
name: rails
|
77
|
-
requirement: !ruby/object:Gem::Requirement
|
78
|
-
requirements:
|
79
|
-
- - ">="
|
80
|
-
- !ruby/object:Gem::Version
|
81
|
-
version: '3.1'
|
82
|
-
- - "<"
|
83
|
-
- !ruby/object:Gem::Version
|
84
|
-
version: '7'
|
85
|
-
type: :development
|
86
|
-
prerelease: false
|
87
|
-
version_requirements: !ruby/object:Gem::Requirement
|
88
|
-
requirements:
|
89
|
-
- - ">="
|
90
|
-
- !ruby/object:Gem::Version
|
91
|
-
version: '3.1'
|
92
|
-
- - "<"
|
93
|
-
- !ruby/object:Gem::Version
|
94
|
-
version: '7'
|
95
60
|
- !ruby/object:Gem::Dependency
|
96
61
|
name: rake
|
97
62
|
requirement: !ruby/object:Gem::Requirement
|
@@ -126,14 +91,14 @@ dependencies:
|
|
126
91
|
requirements:
|
127
92
|
- - "~>"
|
128
93
|
- !ruby/object:Gem::Version
|
129
|
-
version: '
|
94
|
+
version: '7.0'
|
130
95
|
type: :development
|
131
96
|
prerelease: false
|
132
97
|
version_requirements: !ruby/object:Gem::Requirement
|
133
98
|
requirements:
|
134
99
|
- - "~>"
|
135
100
|
- !ruby/object:Gem::Version
|
136
|
-
version: '
|
101
|
+
version: '7.0'
|
137
102
|
- !ruby/object:Gem::Dependency
|
138
103
|
name: rubocop
|
139
104
|
requirement: !ruby/object:Gem::Requirement
|
@@ -170,15 +135,17 @@ extensions: []
|
|
170
135
|
extra_rdoc_files: []
|
171
136
|
files:
|
172
137
|
- ".github/dependabot.yml"
|
138
|
+
- ".github/workflows/release-please.yml"
|
173
139
|
- ".github/workflows/tests.yml"
|
174
140
|
- ".gitignore"
|
141
|
+
- ".release-please-manifest.json"
|
175
142
|
- ".rspec"
|
176
143
|
- ".rubocop.yml"
|
144
|
+
- ".tool-versions"
|
177
145
|
- ".yamllint"
|
178
146
|
- Appraisals
|
179
147
|
- CHANGELOG.md
|
180
148
|
- Gemfile
|
181
|
-
- Gemfile.lock
|
182
149
|
- LICENSE.txt
|
183
150
|
- README.md
|
184
151
|
- Rakefile
|
@@ -189,11 +156,13 @@ files:
|
|
189
156
|
- config.ru
|
190
157
|
- config/locales/en.yml
|
191
158
|
- config/routes.rb
|
192
|
-
- gemfiles/
|
193
|
-
- gemfiles/
|
194
|
-
- gemfiles/
|
159
|
+
- gemfiles/rails7.1.gemfile
|
160
|
+
- gemfiles/rails7.gemfile
|
161
|
+
- gemfiles/rails8.0.gemfile
|
195
162
|
- gemfiles/rails_latest.gemfile
|
196
163
|
- gemfiles/sinatra2.x.gemfile
|
164
|
+
- gemfiles/sinatra3.x.gemfile
|
165
|
+
- gemfiles/sinatra4.x.gemfile
|
197
166
|
- lib/rapporteur.rb
|
198
167
|
- lib/rapporteur/check_list.rb
|
199
168
|
- lib/rapporteur/checker.rb
|
@@ -207,13 +176,13 @@ files:
|
|
207
176
|
- lib/rapporteur/rspec3.rb
|
208
177
|
- lib/rapporteur/version.rb
|
209
178
|
- rapporteur.gemspec
|
179
|
+
- release-please-config.json
|
210
180
|
homepage: https://github.com/envylabs/rapporteur
|
211
181
|
licenses:
|
212
182
|
- MIT
|
213
183
|
metadata:
|
214
184
|
source_code_uri: https://github.com/envylabs/rapporteur
|
215
|
-
changelog_uri: https://github.com/envylabs/rapporteur/blob/
|
216
|
-
post_install_message:
|
185
|
+
changelog_uri: https://github.com/envylabs/rapporteur/blob/main/CHANGELOG.md
|
217
186
|
rdoc_options: []
|
218
187
|
require_paths:
|
219
188
|
- lib
|
@@ -221,15 +190,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
221
190
|
requirements:
|
222
191
|
- - ">="
|
223
192
|
- !ruby/object:Gem::Version
|
224
|
-
version: 2
|
193
|
+
version: '3.2'
|
225
194
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
226
195
|
requirements:
|
227
196
|
- - ">="
|
228
197
|
- !ruby/object:Gem::Version
|
229
198
|
version: '0'
|
230
199
|
requirements: []
|
231
|
-
rubygems_version: 3.2
|
232
|
-
signing_key:
|
200
|
+
rubygems_version: 3.6.2
|
233
201
|
specification_version: 4
|
234
202
|
summary: An engine that provides common status polling endpoint.
|
235
203
|
test_files: []
|
data/Gemfile.lock
DELETED
@@ -1,221 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
rapporteur (3.7.2)
|
5
|
-
i18n (>= 0.6, < 2)
|
6
|
-
|
7
|
-
GEM
|
8
|
-
remote: https://rubygems.org/
|
9
|
-
specs:
|
10
|
-
actioncable (6.1.3.2)
|
11
|
-
actionpack (= 6.1.3.2)
|
12
|
-
activesupport (= 6.1.3.2)
|
13
|
-
nio4r (~> 2.0)
|
14
|
-
websocket-driver (>= 0.6.1)
|
15
|
-
actionmailbox (6.1.3.2)
|
16
|
-
actionpack (= 6.1.3.2)
|
17
|
-
activejob (= 6.1.3.2)
|
18
|
-
activerecord (= 6.1.3.2)
|
19
|
-
activestorage (= 6.1.3.2)
|
20
|
-
activesupport (= 6.1.3.2)
|
21
|
-
mail (>= 2.7.1)
|
22
|
-
actionmailer (6.1.3.2)
|
23
|
-
actionpack (= 6.1.3.2)
|
24
|
-
actionview (= 6.1.3.2)
|
25
|
-
activejob (= 6.1.3.2)
|
26
|
-
activesupport (= 6.1.3.2)
|
27
|
-
mail (~> 2.5, >= 2.5.4)
|
28
|
-
rails-dom-testing (~> 2.0)
|
29
|
-
actionpack (6.1.3.2)
|
30
|
-
actionview (= 6.1.3.2)
|
31
|
-
activesupport (= 6.1.3.2)
|
32
|
-
rack (~> 2.0, >= 2.0.9)
|
33
|
-
rack-test (>= 0.6.3)
|
34
|
-
rails-dom-testing (~> 2.0)
|
35
|
-
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
36
|
-
actiontext (6.1.3.2)
|
37
|
-
actionpack (= 6.1.3.2)
|
38
|
-
activerecord (= 6.1.3.2)
|
39
|
-
activestorage (= 6.1.3.2)
|
40
|
-
activesupport (= 6.1.3.2)
|
41
|
-
nokogiri (>= 1.8.5)
|
42
|
-
actionview (6.1.3.2)
|
43
|
-
activesupport (= 6.1.3.2)
|
44
|
-
builder (~> 3.1)
|
45
|
-
erubi (~> 1.4)
|
46
|
-
rails-dom-testing (~> 2.0)
|
47
|
-
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
48
|
-
activejob (6.1.3.2)
|
49
|
-
activesupport (= 6.1.3.2)
|
50
|
-
globalid (>= 0.3.6)
|
51
|
-
activemodel (6.1.3.2)
|
52
|
-
activesupport (= 6.1.3.2)
|
53
|
-
activerecord (6.1.3.2)
|
54
|
-
activemodel (= 6.1.3.2)
|
55
|
-
activesupport (= 6.1.3.2)
|
56
|
-
activestorage (6.1.3.2)
|
57
|
-
actionpack (= 6.1.3.2)
|
58
|
-
activejob (= 6.1.3.2)
|
59
|
-
activerecord (= 6.1.3.2)
|
60
|
-
activesupport (= 6.1.3.2)
|
61
|
-
marcel (~> 1.0.0)
|
62
|
-
mini_mime (~> 1.0.2)
|
63
|
-
activesupport (6.1.3.2)
|
64
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
65
|
-
i18n (>= 1.6, < 2)
|
66
|
-
minitest (>= 5.1)
|
67
|
-
tzinfo (~> 2.0)
|
68
|
-
zeitwerk (~> 2.3)
|
69
|
-
appraisal (2.4.0)
|
70
|
-
bundler
|
71
|
-
rake
|
72
|
-
thor (>= 0.14.0)
|
73
|
-
ast (2.4.2)
|
74
|
-
builder (3.2.4)
|
75
|
-
combustion (1.3.1)
|
76
|
-
activesupport (>= 3.0.0)
|
77
|
-
railties (>= 3.0.0)
|
78
|
-
thor (>= 0.14.6)
|
79
|
-
concurrent-ruby (1.1.9)
|
80
|
-
crass (1.0.6)
|
81
|
-
diff-lcs (1.4.4)
|
82
|
-
erubi (1.10.0)
|
83
|
-
globalid (0.4.2)
|
84
|
-
activesupport (>= 4.2.0)
|
85
|
-
i18n (1.8.10)
|
86
|
-
concurrent-ruby (~> 1.0)
|
87
|
-
loofah (2.10.0)
|
88
|
-
crass (~> 1.0.2)
|
89
|
-
nokogiri (>= 1.5.9)
|
90
|
-
mail (2.7.1)
|
91
|
-
mini_mime (>= 0.1.1)
|
92
|
-
marcel (1.0.1)
|
93
|
-
method_source (1.0.0)
|
94
|
-
mini_mime (1.0.3)
|
95
|
-
mini_portile2 (2.5.3)
|
96
|
-
minitest (5.14.4)
|
97
|
-
nio4r (2.5.7)
|
98
|
-
nokogiri (1.11.7)
|
99
|
-
mini_portile2 (~> 2.5.0)
|
100
|
-
racc (~> 1.4)
|
101
|
-
parallel (1.20.1)
|
102
|
-
parser (3.0.1.1)
|
103
|
-
ast (~> 2.4.1)
|
104
|
-
racc (1.5.2)
|
105
|
-
rack (2.2.3)
|
106
|
-
rack-test (1.1.0)
|
107
|
-
rack (>= 1.0, < 3)
|
108
|
-
rails (6.1.3.2)
|
109
|
-
actioncable (= 6.1.3.2)
|
110
|
-
actionmailbox (= 6.1.3.2)
|
111
|
-
actionmailer (= 6.1.3.2)
|
112
|
-
actionpack (= 6.1.3.2)
|
113
|
-
actiontext (= 6.1.3.2)
|
114
|
-
actionview (= 6.1.3.2)
|
115
|
-
activejob (= 6.1.3.2)
|
116
|
-
activemodel (= 6.1.3.2)
|
117
|
-
activerecord (= 6.1.3.2)
|
118
|
-
activestorage (= 6.1.3.2)
|
119
|
-
activesupport (= 6.1.3.2)
|
120
|
-
bundler (>= 1.15.0)
|
121
|
-
railties (= 6.1.3.2)
|
122
|
-
sprockets-rails (>= 2.0.0)
|
123
|
-
rails-dom-testing (2.0.3)
|
124
|
-
activesupport (>= 4.2.0)
|
125
|
-
nokogiri (>= 1.6)
|
126
|
-
rails-html-sanitizer (1.3.0)
|
127
|
-
loofah (~> 2.3)
|
128
|
-
railties (6.1.3.2)
|
129
|
-
actionpack (= 6.1.3.2)
|
130
|
-
activesupport (= 6.1.3.2)
|
131
|
-
method_source
|
132
|
-
rake (>= 0.8.7)
|
133
|
-
thor (~> 1.0)
|
134
|
-
rainbow (3.0.0)
|
135
|
-
rake (13.0.3)
|
136
|
-
regexp_parser (2.1.1)
|
137
|
-
rexml (3.2.5)
|
138
|
-
rspec-collection_matchers (1.2.0)
|
139
|
-
rspec-expectations (>= 2.99.0.beta1)
|
140
|
-
rspec-core (3.10.1)
|
141
|
-
rspec-support (~> 3.10.0)
|
142
|
-
rspec-expectations (3.10.1)
|
143
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
144
|
-
rspec-support (~> 3.10.0)
|
145
|
-
rspec-mocks (3.10.2)
|
146
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
147
|
-
rspec-support (~> 3.10.0)
|
148
|
-
rspec-rails (5.0.1)
|
149
|
-
actionpack (>= 5.2)
|
150
|
-
activesupport (>= 5.2)
|
151
|
-
railties (>= 5.2)
|
152
|
-
rspec-core (~> 3.10)
|
153
|
-
rspec-expectations (~> 3.10)
|
154
|
-
rspec-mocks (~> 3.10)
|
155
|
-
rspec-support (~> 3.10)
|
156
|
-
rspec-support (3.10.2)
|
157
|
-
rubocop (1.17.0)
|
158
|
-
parallel (~> 1.10)
|
159
|
-
parser (>= 3.0.0.0)
|
160
|
-
rainbow (>= 2.2.2, < 4.0)
|
161
|
-
regexp_parser (>= 1.8, < 3.0)
|
162
|
-
rexml
|
163
|
-
rubocop-ast (>= 1.7.0, < 2.0)
|
164
|
-
ruby-progressbar (~> 1.7)
|
165
|
-
unicode-display_width (>= 1.4.0, < 3.0)
|
166
|
-
rubocop-ast (1.7.0)
|
167
|
-
parser (>= 3.0.1.1)
|
168
|
-
rubocop-packaging (0.5.1)
|
169
|
-
rubocop (>= 0.89, < 2.0)
|
170
|
-
rubocop-performance (1.11.3)
|
171
|
-
rubocop (>= 1.7.0, < 2.0)
|
172
|
-
rubocop-ast (>= 0.4.0)
|
173
|
-
rubocop-rails (2.11.0)
|
174
|
-
activesupport (>= 4.2.0)
|
175
|
-
rack (>= 1.1)
|
176
|
-
rubocop (>= 1.7.0, < 2.0)
|
177
|
-
rubocop-rails_config (1.5.4)
|
178
|
-
railties (>= 5.0)
|
179
|
-
rubocop (>= 1.13)
|
180
|
-
rubocop-ast (>= 1.0.1)
|
181
|
-
rubocop-packaging (~> 0.5)
|
182
|
-
rubocop-performance (~> 1.11)
|
183
|
-
rubocop-rails (~> 2.0)
|
184
|
-
ruby-progressbar (1.11.0)
|
185
|
-
sprockets (4.0.2)
|
186
|
-
concurrent-ruby (~> 1.0)
|
187
|
-
rack (> 1, < 3)
|
188
|
-
sprockets-rails (3.2.2)
|
189
|
-
actionpack (>= 4.0)
|
190
|
-
activesupport (>= 4.0)
|
191
|
-
sprockets (>= 3.0.0)
|
192
|
-
sqlite3 (1.4.2)
|
193
|
-
thor (1.1.0)
|
194
|
-
tzinfo (2.0.4)
|
195
|
-
concurrent-ruby (~> 1.0)
|
196
|
-
unicode-display_width (2.0.0)
|
197
|
-
websocket-driver (0.7.5)
|
198
|
-
websocket-extensions (>= 0.1.0)
|
199
|
-
websocket-extensions (0.1.5)
|
200
|
-
zeitwerk (2.4.2)
|
201
|
-
|
202
|
-
PLATFORMS
|
203
|
-
java
|
204
|
-
ruby
|
205
|
-
|
206
|
-
DEPENDENCIES
|
207
|
-
activerecord-jdbcsqlite3-adapter
|
208
|
-
appraisal (~> 2.1)
|
209
|
-
bundler (~> 2.0)
|
210
|
-
combustion (~> 1.0)
|
211
|
-
rails (>= 3.1, < 7)
|
212
|
-
rake (~> 13.0)
|
213
|
-
rapporteur!
|
214
|
-
rspec-collection_matchers (~> 1.0)
|
215
|
-
rspec-rails (~> 5.0)
|
216
|
-
rubocop (~> 1.0)
|
217
|
-
rubocop-rails_config (~> 1.0)
|
218
|
-
sqlite3
|
219
|
-
|
220
|
-
BUNDLED WITH
|
221
|
-
2.2.20
|