rapporteur 3.7.2 → 3.8.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9656e4f781edf1a61a1ac9ce4e3cd6a28e2acda42131f2d3cc00805c419a7b17
4
- data.tar.gz: 34c052ddec4abdca563d6e8c6ef0ec44649a2c373b9eb14cf497c5e47cde5242
3
+ metadata.gz: 301e4ba77ac3d1998b12556c448f25ff37d502cabcad0ee1e2308a6562944f9f
4
+ data.tar.gz: 44aa95c219f21ce8774b97946d947c4928bd2ca1f902db18858d6c192cb9024b
5
5
  SHA512:
6
- metadata.gz: 06d0410edcd10d46ea95b763b63bf45c819ddcb51cce32b3b3c181d837063c399ecc5421c30e39cb8eec31d6d8fcf5fca494c363296e23d12432b1f23afc9a97
7
- data.tar.gz: aa84ce236ab0a7177dde501a8063970e12c5bf76b0f82b109f827eea9b9e66a891175e4918ef6e942a3ad9657d2f9376f46776a7068755bf854e91d464850d77
6
+ metadata.gz: dd44ec6f8bd73b8afde11e280df55da200203522060cff91bb24cb435774976334c50832c97e4c2496e7ff8fcf97bf2dc041912200b0971b64d9b8c83aa07d95
7
+ data.tar.gz: c9eb183ba7323154d1b50200f176d90915811c98c43da40912734fcb5bbd694b0b4ebe0de13464e28b2b5d6d9719df175f975d3fa15dd1c989c2429c568067f3
@@ -38,6 +38,7 @@ jobs:
38
38
  - "gemfiles/rails5.2.gemfile"
39
39
  - "gemfiles/rails6.0.gemfile"
40
40
  - "gemfiles/rails6.1.gemfile"
41
+ - "gemfiles/rails7.0.gemfile"
41
42
  - "gemfiles/rails_latest.gemfile"
42
43
  - "gemfiles/sinatra2.x.gemfile"
43
44
  name: "Test and Release"
data/.gitignore CHANGED
@@ -1,5 +1,6 @@
1
1
  /.bundle/
2
2
  /.yardoc
3
+ /Gemfile.lock
3
4
  /gemfiles/*.lock
4
5
  /gemfiles/.bundle/
5
6
  /_yardoc/
data/Appraisals CHANGED
@@ -13,6 +13,10 @@ appraise 'rails6.1' do
13
13
  gem 'rails', '~> 6.1.0'
14
14
  end
15
15
 
16
+ appraise 'rails7.0' do
17
+ gem 'rails', '~> 7.0.0'
18
+ end
19
+
16
20
  appraise 'rails-latest' do
17
21
  gem 'rails'
18
22
  end
data/CHANGELOG.md CHANGED
@@ -9,6 +9,10 @@
9
9
 
10
10
  * No significant changes.
11
11
 
12
+ ## [3.8.0][] / 2022-01-23
13
+
14
+ * Add support for Rails 7.0.
15
+
12
16
  ## [3.7.2][] / 2021-06-22
13
17
 
14
18
  * Test support for Rails 6.1.
@@ -203,4 +207,5 @@
203
207
  [3.7.0]: https://github.com/envylabs/rapporteur/compare/v3.6.4...v3.7.0
204
208
  [3.7.1]: https://github.com/envylabs/rapporteur/compare/v3.7.0...v3.7.1
205
209
  [3.7.2]: https://github.com/envylabs/rapporteur/compare/v3.7.1...v3.7.2
206
- [HEAD]: https://github.com/envylabs/rapporteur/compare/v3.7.2...master
210
+ [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...master
@@ -0,0 +1,9 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "activerecord-jdbcsqlite3-adapter", platforms: :jruby
6
+ gem "sqlite3", platforms: :ruby
7
+ gem "rails", "~> 7.0.0"
8
+
9
+ gemspec path: "../"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Rapporteur
4
- VERSION = '3.7.2'
4
+ VERSION = '3.8.0'
5
5
  end
data/rapporteur.gemspec CHANGED
@@ -26,9 +26,8 @@ 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'
30
+ spec.add_development_dependency 'rails', '>= 3.1', '< 7.1'
32
31
  spec.add_development_dependency 'rake', '~> 13.0'
33
32
  spec.add_development_dependency 'rspec-collection_matchers', '~> 1.0'
34
33
  spec.add_development_dependency 'rspec-rails', '~> 5.0'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rapporteur
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.7.2
4
+ version: 3.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Envy Labs
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-06-22 00:00:00.000000000 Z
11
+ date: 2022-01-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: i18n
@@ -44,20 +44,6 @@ dependencies:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
46
  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
47
  - !ruby/object:Gem::Dependency
62
48
  name: combustion
63
49
  requirement: !ruby/object:Gem::Requirement
@@ -81,7 +67,7 @@ dependencies:
81
67
  version: '3.1'
82
68
  - - "<"
83
69
  - !ruby/object:Gem::Version
84
- version: '7'
70
+ version: '7.1'
85
71
  type: :development
86
72
  prerelease: false
87
73
  version_requirements: !ruby/object:Gem::Requirement
@@ -91,7 +77,7 @@ dependencies:
91
77
  version: '3.1'
92
78
  - - "<"
93
79
  - !ruby/object:Gem::Version
94
- version: '7'
80
+ version: '7.1'
95
81
  - !ruby/object:Gem::Dependency
96
82
  name: rake
97
83
  requirement: !ruby/object:Gem::Requirement
@@ -178,7 +164,6 @@ files:
178
164
  - Appraisals
179
165
  - CHANGELOG.md
180
166
  - Gemfile
181
- - Gemfile.lock
182
167
  - LICENSE.txt
183
168
  - README.md
184
169
  - Rakefile
@@ -192,6 +177,7 @@ files:
192
177
  - gemfiles/rails5.2.gemfile
193
178
  - gemfiles/rails6.0.gemfile
194
179
  - gemfiles/rails6.1.gemfile
180
+ - gemfiles/rails7.0.gemfile
195
181
  - gemfiles/rails_latest.gemfile
196
182
  - gemfiles/sinatra2.x.gemfile
197
183
  - lib/rapporteur.rb
@@ -228,7 +214,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
228
214
  - !ruby/object:Gem::Version
229
215
  version: '0'
230
216
  requirements: []
231
- rubygems_version: 3.2.20
217
+ rubygems_version: 3.1.6
232
218
  signing_key:
233
219
  specification_version: 4
234
220
  summary: An engine that provides common status polling endpoint.
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