rapporteur 3.7.1 → 3.7.2

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: 13df72850687b6ffa72963ce159ff997d179474286830ad88310b2b07814d6dd
4
- data.tar.gz: ae411b54da99569ee45f64ae7bf2dc93fa3c8a7e9a2716d3f164bec0eb9f60b3
3
+ metadata.gz: 9656e4f781edf1a61a1ac9ce4e3cd6a28e2acda42131f2d3cc00805c419a7b17
4
+ data.tar.gz: 34c052ddec4abdca563d6e8c6ef0ec44649a2c373b9eb14cf497c5e47cde5242
5
5
  SHA512:
6
- metadata.gz: 72f94494414402a9ef91a9951d8d9b7107e0123c0fcb65acfa72ad053ad1f5fce83f2d3874a7853e4d106ca38b91a2c9b90d05eea1372c364e2fdcdbeff29585
7
- data.tar.gz: bb4e61342c23fa507f7900aeefd9be487c2257979ea48a31d556ebe299b32df2c9e87e3c623e9e0fd72de9b843e4d9e457c7093f7352f0ed58d8efe72389fbb1
6
+ metadata.gz: 06d0410edcd10d46ea95b763b63bf45c819ddcb51cce32b3b3c181d837063c399ecc5421c30e39cb8eec31d6d8fcf5fca494c363296e23d12432b1f23afc9a97
7
+ data.tar.gz: aa84ce236ab0a7177dde501a8063970e12c5bf76b0f82b109f827eea9b9e66a891175e4918ef6e942a3ad9657d2f9376f46776a7068755bf854e91d464850d77
@@ -0,0 +1,13 @@
1
+ ---
2
+ updates:
3
+ - allow:
4
+ - dependency-type: "direct"
5
+ - dependency-type: "indirect"
6
+ directory: "/"
7
+ open-pull-requests-limit: 10
8
+ package-ecosystem: "bundler"
9
+ schedule:
10
+ interval: "daily"
11
+ time: "10:00"
12
+ versioning-strategy: "increase-if-necessary"
13
+ version: 2
@@ -0,0 +1,44 @@
1
+ ---
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
+ tests:
20
+ env:
21
+ BUNDLE_GEMFILE: "${{matrix.gemfile}}"
22
+ runs-on: "ubuntu-latest"
23
+ steps:
24
+ - uses: "actions/checkout@v2"
25
+ - uses: "ruby/setup-ruby@v1"
26
+ with:
27
+ bundler-cache: true
28
+ ruby-version: "2.7"
29
+ - name: "Run Tests"
30
+ run: "bundle exec rake spec"
31
+ - name: "Check Ruby Style"
32
+ run: "bundle exec rubocop -c ./.rubocop.yml -fq"
33
+ strategy:
34
+ fail-fast: false
35
+ matrix:
36
+ gemfile:
37
+ - "Gemfile"
38
+ - "gemfiles/rails5.2.gemfile"
39
+ - "gemfiles/rails6.0.gemfile"
40
+ - "gemfiles/rails6.1.gemfile"
41
+ - "gemfiles/rails_latest.gemfile"
42
+ - "gemfiles/sinatra2.x.gemfile"
43
+ name: "Test and Release"
44
+ "on": ["push"]
data/.gitignore CHANGED
@@ -12,5 +12,4 @@
12
12
  # rspec failure tracking
13
13
  .rspec_status
14
14
 
15
- /.ruby-version
16
15
  *.sqlite
data/Appraisals CHANGED
@@ -9,6 +9,10 @@ appraise 'rails6.0' do
9
9
  gem 'rails', '~> 6.0.0'
10
10
  end
11
11
 
12
+ appraise 'rails6.1' do
13
+ gem 'rails', '~> 6.1.0'
14
+ end
15
+
12
16
  appraise 'rails-latest' do
13
17
  gem 'rails'
14
18
  end
data/CHANGELOG.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # Rapporteur changelog
2
2
 
3
3
  [![Gem Version](http://img.shields.io/gem/v/rapporteur.svg?style=flat)](http://rubygems.org/gems/rapporteur)
4
- [![Build Status](http://img.shields.io/travis/envylabs/rapporteur/master.svg?style=flat)](https://travis-ci.org/envylabs/rapporteur)
4
+ [![Test and Release](https://github.com/envylabs/rapporteur/actions/workflows/tests.yml/badge.svg)](https://github.com/envylabs/rapporteur/actions/workflows/tests.yml)
5
5
  [![Maintainability](https://api.codeclimate.com/v1/badges/8c498efff627b93db4b9/maintainability)](https://codeclimate.com/github/envylabs/rapporteur/maintainability)
6
6
  [![Inline docs](http://inch-ci.org/github/envylabs/rapporteur.svg?branch=master)](http://inch-ci.org/github/envylabs/rapporteur)
7
7
 
@@ -9,6 +9,10 @@
9
9
 
10
10
  * No significant changes.
11
11
 
12
+ ## [3.7.2][] / 2021-06-22
13
+
14
+ * Test support for Rails 6.1.
15
+
12
16
  ## [3.7.1][] / 2020-09-25
13
17
 
14
18
  * Fix a Ruby 2.7 keyword argument deprecation warning in MessageList.
@@ -198,4 +202,5 @@
198
202
  [3.6.4]: https://github.com/envylabs/rapporteur/compare/v3.6.3...v3.6.4
199
203
  [3.7.0]: https://github.com/envylabs/rapporteur/compare/v3.6.4...v3.7.0
200
204
  [3.7.1]: https://github.com/envylabs/rapporteur/compare/v3.7.0...v3.7.1
201
- [HEAD]: https://github.com/envylabs/rapporteur/compare/v3.7.1...master
205
+ [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
data/Gemfile.lock CHANGED
@@ -1,187 +1,187 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rapporteur (3.7.1)
4
+ rapporteur (3.7.2)
5
5
  i18n (>= 0.6, < 2)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- actioncable (6.0.3.3)
11
- actionpack (= 6.0.3.3)
10
+ actioncable (6.1.3.2)
11
+ actionpack (= 6.1.3.2)
12
+ activesupport (= 6.1.3.2)
12
13
  nio4r (~> 2.0)
13
14
  websocket-driver (>= 0.6.1)
14
- actionmailbox (6.0.3.3)
15
- actionpack (= 6.0.3.3)
16
- activejob (= 6.0.3.3)
17
- activerecord (= 6.0.3.3)
18
- activestorage (= 6.0.3.3)
19
- activesupport (= 6.0.3.3)
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)
20
21
  mail (>= 2.7.1)
21
- actionmailer (6.0.3.3)
22
- actionpack (= 6.0.3.3)
23
- actionview (= 6.0.3.3)
24
- activejob (= 6.0.3.3)
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)
25
27
  mail (~> 2.5, >= 2.5.4)
26
28
  rails-dom-testing (~> 2.0)
27
- actionpack (6.0.3.3)
28
- actionview (= 6.0.3.3)
29
- activesupport (= 6.0.3.3)
30
- rack (~> 2.0, >= 2.0.8)
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)
31
33
  rack-test (>= 0.6.3)
32
34
  rails-dom-testing (~> 2.0)
33
35
  rails-html-sanitizer (~> 1.0, >= 1.2.0)
34
- actiontext (6.0.3.3)
35
- actionpack (= 6.0.3.3)
36
- activerecord (= 6.0.3.3)
37
- activestorage (= 6.0.3.3)
38
- activesupport (= 6.0.3.3)
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)
39
41
  nokogiri (>= 1.8.5)
40
- actionview (6.0.3.3)
41
- activesupport (= 6.0.3.3)
42
+ actionview (6.1.3.2)
43
+ activesupport (= 6.1.3.2)
42
44
  builder (~> 3.1)
43
45
  erubi (~> 1.4)
44
46
  rails-dom-testing (~> 2.0)
45
47
  rails-html-sanitizer (~> 1.1, >= 1.2.0)
46
- activejob (6.0.3.3)
47
- activesupport (= 6.0.3.3)
48
+ activejob (6.1.3.2)
49
+ activesupport (= 6.1.3.2)
48
50
  globalid (>= 0.3.6)
49
- activemodel (6.0.3.3)
50
- activesupport (= 6.0.3.3)
51
- activerecord (6.0.3.3)
52
- activemodel (= 6.0.3.3)
53
- activesupport (= 6.0.3.3)
54
- activerecord-jdbc-adapter (60.2-java)
55
- activerecord (~> 6.0.0)
56
- activerecord-jdbcsqlite3-adapter (60.2-java)
57
- activerecord-jdbc-adapter (= 60.2)
58
- jdbc-sqlite3 (~> 3.8, < 3.30)
59
- activestorage (6.0.3.3)
60
- actionpack (= 6.0.3.3)
61
- activejob (= 6.0.3.3)
62
- activerecord (= 6.0.3.3)
63
- marcel (~> 0.3.1)
64
- activesupport (6.0.3.3)
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)
65
64
  concurrent-ruby (~> 1.0, >= 1.0.2)
66
- i18n (>= 0.7, < 2)
67
- minitest (~> 5.1)
68
- tzinfo (~> 1.1)
69
- zeitwerk (~> 2.2, >= 2.2.2)
70
- appraisal (2.3.0)
65
+ i18n (>= 1.6, < 2)
66
+ minitest (>= 5.1)
67
+ tzinfo (~> 2.0)
68
+ zeitwerk (~> 2.3)
69
+ appraisal (2.4.0)
71
70
  bundler
72
71
  rake
73
72
  thor (>= 0.14.0)
74
- ast (2.4.1)
73
+ ast (2.4.2)
75
74
  builder (3.2.4)
76
- combustion (1.3.0)
75
+ combustion (1.3.1)
77
76
  activesupport (>= 3.0.0)
78
77
  railties (>= 3.0.0)
79
78
  thor (>= 0.14.6)
80
- concurrent-ruby (1.1.7)
79
+ concurrent-ruby (1.1.9)
81
80
  crass (1.0.6)
82
81
  diff-lcs (1.4.4)
83
- erubi (1.9.0)
82
+ erubi (1.10.0)
84
83
  globalid (0.4.2)
85
84
  activesupport (>= 4.2.0)
86
- i18n (1.8.5)
85
+ i18n (1.8.10)
87
86
  concurrent-ruby (~> 1.0)
88
- jdbc-sqlite3 (3.28.0)
89
- loofah (2.7.0)
87
+ loofah (2.10.0)
90
88
  crass (~> 1.0.2)
91
89
  nokogiri (>= 1.5.9)
92
90
  mail (2.7.1)
93
91
  mini_mime (>= 0.1.1)
94
- marcel (0.3.3)
95
- mimemagic (~> 0.3.2)
92
+ marcel (1.0.1)
96
93
  method_source (1.0.0)
97
- mimemagic (0.3.5)
98
- mini_mime (1.0.2)
99
- mini_portile2 (2.4.0)
100
- minitest (5.14.2)
101
- nio4r (2.5.4)
102
- nio4r (2.5.4-java)
103
- nokogiri (1.10.10)
104
- mini_portile2 (~> 2.4.0)
105
- nokogiri (1.10.10-java)
106
- parallel (1.19.2)
107
- parser (2.7.1.5)
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)
108
103
  ast (~> 2.4.1)
104
+ racc (1.5.2)
109
105
  rack (2.2.3)
110
106
  rack-test (1.1.0)
111
107
  rack (>= 1.0, < 3)
112
- rails (6.0.3.3)
113
- actioncable (= 6.0.3.3)
114
- actionmailbox (= 6.0.3.3)
115
- actionmailer (= 6.0.3.3)
116
- actionpack (= 6.0.3.3)
117
- actiontext (= 6.0.3.3)
118
- actionview (= 6.0.3.3)
119
- activejob (= 6.0.3.3)
120
- activemodel (= 6.0.3.3)
121
- activerecord (= 6.0.3.3)
122
- activestorage (= 6.0.3.3)
123
- activesupport (= 6.0.3.3)
124
- bundler (>= 1.3.0)
125
- railties (= 6.0.3.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)
126
122
  sprockets-rails (>= 2.0.0)
127
123
  rails-dom-testing (2.0.3)
128
124
  activesupport (>= 4.2.0)
129
125
  nokogiri (>= 1.6)
130
126
  rails-html-sanitizer (1.3.0)
131
127
  loofah (~> 2.3)
132
- railties (6.0.3.3)
133
- actionpack (= 6.0.3.3)
134
- activesupport (= 6.0.3.3)
128
+ railties (6.1.3.2)
129
+ actionpack (= 6.1.3.2)
130
+ activesupport (= 6.1.3.2)
135
131
  method_source
136
132
  rake (>= 0.8.7)
137
- thor (>= 0.20.3, < 2.0)
133
+ thor (~> 1.0)
138
134
  rainbow (3.0.0)
139
- rake (13.0.1)
140
- regexp_parser (1.8.0)
141
- rexml (3.2.4)
135
+ rake (13.0.3)
136
+ regexp_parser (2.1.1)
137
+ rexml (3.2.5)
142
138
  rspec-collection_matchers (1.2.0)
143
139
  rspec-expectations (>= 2.99.0.beta1)
144
- rspec-core (3.9.2)
145
- rspec-support (~> 3.9.3)
146
- rspec-expectations (3.9.2)
140
+ rspec-core (3.10.1)
141
+ rspec-support (~> 3.10.0)
142
+ rspec-expectations (3.10.1)
147
143
  diff-lcs (>= 1.2.0, < 2.0)
148
- rspec-support (~> 3.9.0)
149
- rspec-mocks (3.9.1)
144
+ rspec-support (~> 3.10.0)
145
+ rspec-mocks (3.10.2)
150
146
  diff-lcs (>= 1.2.0, < 2.0)
151
- rspec-support (~> 3.9.0)
152
- rspec-rails (4.0.1)
153
- actionpack (>= 4.2)
154
- activesupport (>= 4.2)
155
- railties (>= 4.2)
156
- rspec-core (~> 3.9)
157
- rspec-expectations (~> 3.9)
158
- rspec-mocks (~> 3.9)
159
- rspec-support (~> 3.9)
160
- rspec-support (3.9.3)
161
- rubocop (0.92.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)
162
158
  parallel (~> 1.10)
163
- parser (>= 2.7.1.5)
159
+ parser (>= 3.0.0.0)
164
160
  rainbow (>= 2.2.2, < 4.0)
165
- regexp_parser (>= 1.7)
161
+ regexp_parser (>= 1.8, < 3.0)
166
162
  rexml
167
- rubocop-ast (>= 0.5.0)
163
+ rubocop-ast (>= 1.7.0, < 2.0)
168
164
  ruby-progressbar (~> 1.7)
169
- unicode-display_width (>= 1.4.0, < 2.0)
170
- rubocop-ast (0.5.0)
171
- parser (>= 2.7.1.5)
172
- rubocop-performance (1.8.1)
173
- rubocop (>= 0.87.0)
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)
174
172
  rubocop-ast (>= 0.4.0)
175
- rubocop-rails (2.8.1)
173
+ rubocop-rails (2.11.0)
176
174
  activesupport (>= 4.2.0)
177
175
  rack (>= 1.1)
178
- rubocop (>= 0.87.0)
179
- rubocop-rails_config (0.12.6)
176
+ rubocop (>= 1.7.0, < 2.0)
177
+ rubocop-rails_config (1.5.4)
180
178
  railties (>= 5.0)
181
- rubocop (~> 0.82)
182
- rubocop-performance (~> 1.3)
179
+ rubocop (>= 1.13)
180
+ rubocop-ast (>= 1.0.1)
181
+ rubocop-packaging (~> 0.5)
182
+ rubocop-performance (~> 1.11)
183
183
  rubocop-rails (~> 2.0)
184
- ruby-progressbar (1.10.1)
184
+ ruby-progressbar (1.11.0)
185
185
  sprockets (4.0.2)
186
186
  concurrent-ruby (~> 1.0)
187
187
  rack (> 1, < 3)
@@ -190,18 +190,14 @@ GEM
190
190
  activesupport (>= 4.0)
191
191
  sprockets (>= 3.0.0)
192
192
  sqlite3 (1.4.2)
193
- thor (1.0.1)
194
- thread_safe (0.3.6)
195
- thread_safe (0.3.6-java)
196
- tzinfo (1.2.7)
197
- thread_safe (~> 0.1)
198
- unicode-display_width (1.7.0)
199
- websocket-driver (0.7.3)
200
- websocket-extensions (>= 0.1.0)
201
- websocket-driver (0.7.3-java)
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)
202
198
  websocket-extensions (>= 0.1.0)
203
199
  websocket-extensions (0.1.5)
204
- zeitwerk (2.4.0)
200
+ zeitwerk (2.4.2)
205
201
 
206
202
  PLATFORMS
207
203
  java
@@ -216,10 +212,10 @@ DEPENDENCIES
216
212
  rake (~> 13.0)
217
213
  rapporteur!
218
214
  rspec-collection_matchers (~> 1.0)
219
- rspec-rails (~> 4.0)
220
- rubocop (~> 0.92.0)
221
- rubocop-rails_config (~> 0.12.0)
215
+ rspec-rails (~> 5.0)
216
+ rubocop (~> 1.0)
217
+ rubocop-rails_config (~> 1.0)
222
218
  sqlite3
223
219
 
224
220
  BUNDLED WITH
225
- 2.1.4
221
+ 2.2.20
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # Rapporteur (rap-or-TUHR)
2
2
 
3
3
  [![Gem Version](http://img.shields.io/gem/v/rapporteur.svg?style=flat)](http://rubygems.org/gems/rapporteur)
4
- [![Build Status](http://img.shields.io/travis/envylabs/rapporteur/master.svg?style=flat)](https://travis-ci.org/envylabs/rapporteur)
4
+ [![Test and Release](https://github.com/envylabs/rapporteur/actions/workflows/tests.yml/badge.svg)](https://github.com/envylabs/rapporteur/actions/workflows/tests.yml)
5
5
  [![Maintainability](https://api.codeclimate.com/v1/badges/8c498efff627b93db4b9/maintainability)](https://codeclimate.com/github/envylabs/rapporteur/maintainability)
6
6
  [![Inline docs](http://inch-ci.org/github/envylabs/rapporteur.svg?branch=master)](http://inch-ci.org/github/envylabs/rapporteur)
7
7
 
@@ -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", "~> 6.1.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.1'
4
+ VERSION = '3.7.2'
5
5
  end
data/rapporteur.gemspec CHANGED
@@ -11,7 +11,7 @@ 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 = Gem::Requirement.new('>= 2.3.0')
14
+ spec.required_ruby_version = '>= 2.4.0'
15
15
 
16
16
  spec.metadata['source_code_uri'] = 'https://github.com/envylabs/rapporteur'
17
17
  spec.metadata['changelog_uri'] = 'https://github.com/envylabs/rapporteur/blob/master/CHANGELOG.md'
@@ -31,7 +31,7 @@ Gem::Specification.new do |spec|
31
31
  spec.add_development_dependency 'rails', '>= 3.1', '< 7'
32
32
  spec.add_development_dependency 'rake', '~> 13.0'
33
33
  spec.add_development_dependency 'rspec-collection_matchers', '~> 1.0'
34
- spec.add_development_dependency 'rspec-rails', '~> 4.0'
35
- spec.add_development_dependency 'rubocop', '~> 0.92.0'
36
- spec.add_development_dependency 'rubocop-rails_config', '~> 0.12.0'
34
+ spec.add_development_dependency 'rspec-rails', '~> 5.0'
35
+ spec.add_development_dependency 'rubocop', '~> 1.0'
36
+ spec.add_development_dependency 'rubocop-rails_config', '~> 1.0'
37
37
  end
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.1
4
+ version: 3.7.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Envy Labs
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-09-25 00:00:00.000000000 Z
11
+ date: 2021-06-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: i18n
@@ -126,42 +126,42 @@ dependencies:
126
126
  requirements:
127
127
  - - "~>"
128
128
  - !ruby/object:Gem::Version
129
- version: '4.0'
129
+ version: '5.0'
130
130
  type: :development
131
131
  prerelease: false
132
132
  version_requirements: !ruby/object:Gem::Requirement
133
133
  requirements:
134
134
  - - "~>"
135
135
  - !ruby/object:Gem::Version
136
- version: '4.0'
136
+ version: '5.0'
137
137
  - !ruby/object:Gem::Dependency
138
138
  name: rubocop
139
139
  requirement: !ruby/object:Gem::Requirement
140
140
  requirements:
141
141
  - - "~>"
142
142
  - !ruby/object:Gem::Version
143
- version: 0.92.0
143
+ version: '1.0'
144
144
  type: :development
145
145
  prerelease: false
146
146
  version_requirements: !ruby/object:Gem::Requirement
147
147
  requirements:
148
148
  - - "~>"
149
149
  - !ruby/object:Gem::Version
150
- version: 0.92.0
150
+ version: '1.0'
151
151
  - !ruby/object:Gem::Dependency
152
152
  name: rubocop-rails_config
153
153
  requirement: !ruby/object:Gem::Requirement
154
154
  requirements:
155
155
  - - "~>"
156
156
  - !ruby/object:Gem::Version
157
- version: 0.12.0
157
+ version: '1.0'
158
158
  type: :development
159
159
  prerelease: false
160
160
  version_requirements: !ruby/object:Gem::Requirement
161
161
  requirements:
162
162
  - - "~>"
163
163
  - !ruby/object:Gem::Version
164
- version: 0.12.0
164
+ version: '1.0'
165
165
  description: An engine that provides common status polling endpoint.
166
166
  email:
167
167
  - ''
@@ -169,10 +169,11 @@ executables: []
169
169
  extensions: []
170
170
  extra_rdoc_files: []
171
171
  files:
172
+ - ".github/dependabot.yml"
173
+ - ".github/workflows/tests.yml"
172
174
  - ".gitignore"
173
175
  - ".rspec"
174
176
  - ".rubocop.yml"
175
- - ".travis.yml"
176
177
  - ".yamllint"
177
178
  - Appraisals
178
179
  - CHANGELOG.md
@@ -190,6 +191,7 @@ files:
190
191
  - config/routes.rb
191
192
  - gemfiles/rails5.2.gemfile
192
193
  - gemfiles/rails6.0.gemfile
194
+ - gemfiles/rails6.1.gemfile
193
195
  - gemfiles/rails_latest.gemfile
194
196
  - gemfiles/sinatra2.x.gemfile
195
197
  - lib/rapporteur.rb
@@ -219,14 +221,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
219
221
  requirements:
220
222
  - - ">="
221
223
  - !ruby/object:Gem::Version
222
- version: 2.3.0
224
+ version: 2.4.0
223
225
  required_rubygems_version: !ruby/object:Gem::Requirement
224
226
  requirements:
225
227
  - - ">="
226
228
  - !ruby/object:Gem::Version
227
229
  version: '0'
228
230
  requirements: []
229
- rubygems_version: 3.1.4
231
+ rubygems_version: 3.2.20
230
232
  signing_key:
231
233
  specification_version: 4
232
234
  summary: An engine that provides common status polling endpoint.
data/.travis.yml DELETED
@@ -1,54 +0,0 @@
1
- ---
2
-
3
- before_install:
4
- - "gem install bundler -v 2.1.3"
5
- branches:
6
- only:
7
- - "master"
8
- - '/^v\d+\.\d+\.\d+/'
9
- cache:
10
- bundler: true
11
- dist: "bionic"
12
- install:
13
- - "bundle install --jobs=3 --retry=3 --path=${BUNDLE_PATH:-vendor/bundle}"
14
- jobs:
15
- fail_fast: true
16
- include:
17
- - rvm: "2.7.1"
18
- stage: "Test"
19
-
20
- - gemfile: "gemfiles/rails_latest.gemfile"
21
- rvm: "2.7.1"
22
- stage: "Latest Rails Release"
23
- - gemfile: "gemfiles/rails_latest.gemfile"
24
- rvm: "2.6.6"
25
- - gemfile: "gemfiles/rails_latest.gemfile"
26
- rvm: "2.5.8"
27
-
28
- - gemfile: "gemfiles/rails6.0.gemfile"
29
- rvm: "2.7.1"
30
- stage: "Additinal Rails Tests"
31
- - gemfile: "gemfiles/rails6.0.gemfile"
32
- rvm: "2.6.6"
33
- - gemfile: "gemfiles/rails6.0.gemfile"
34
- rvm: "2.5.8"
35
- - gemfile: "gemfiles/rails5.2.gemfile"
36
- rvm: "2.7.1"
37
- - gemfile: "gemfiles/rails5.2.gemfile"
38
- rvm: "2.6.6"
39
- - gemfile: "gemfiles/rails5.2.gemfile"
40
- rvm: "2.5.8"
41
-
42
- - gemfile: "gemfiles/sinatra2.x.gemfile"
43
- rvm: "2.7.1"
44
- stage: "Sinatra 2.x Release"
45
- - gemfile: "gemfiles/sinatra2.x.gemfile"
46
- rvm: "2.6.6"
47
- - gemfile: "gemfiles/sinatra2.x.gemfile"
48
- rvm: "2.5.8"
49
- language: "ruby"
50
- notifications:
51
- email: false
52
- script:
53
- - "bundle exec rubocop -fs"
54
- - "bundle exec rake"