cloudtasker 0.11.0 → 0.11.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/test.yml +1 -5
- data/CHANGELOG.md +24 -0
- data/app/controllers/cloudtasker/worker_controller.rb +4 -1
- data/gemfiles/google_cloud_tasks_1.0.gemfile.lock +137 -95
- data/gemfiles/google_cloud_tasks_1.1.gemfile.lock +137 -95
- data/gemfiles/google_cloud_tasks_1.2.gemfile.lock +137 -95
- data/gemfiles/google_cloud_tasks_1.3.gemfile.lock +137 -95
- data/gemfiles/rails_5.2.gemfile.lock +83 -37
- data/gemfiles/rails_6.0.gemfile.lock +83 -37
- data/lib/cloudtasker/version.rb +1 -1
- data/lib/cloudtasker.rb +1 -0
- metadata +5 -6
- data/app/controllers/cloudtasker/application_controller.rb +0 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d0073665ed9d9a5422641a1e86d876f5d7de70a66a060c589b1a02958497dd2a
|
4
|
+
data.tar.gz: eaa1e44611b8f3d312064ab3019a1ba2bfc5e368ef7ae2eabed3f69395b1ad05
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7c21279533185a8067adb7b78d860703dc9f7f33a099ed74d6a88f1a8f804401751d3387912671ddf683121fed1aaf9437d89839ad346cf11dd456e8595564e6
|
7
|
+
data.tar.gz: d03c95197c2a6195f16f9943d1d2621c3c2b759bb5cd721cb9218a33522fb40e936ddd378d01c0b073c1ef1c97653894ddc870d5ab0e566e195ae505f7f9b5ee
|
data/.github/workflows/test.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,29 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [v0.11.1](https://github.com/keypup-io/cloudtasker/tree/v0.11.1) (2021-08-25)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/keypup-io/cloudtasker/compare/v0.11.0...v0.11.1)
|
6
|
+
|
7
|
+
**Fixed bugs:**
|
8
|
+
- Dependencies: Require `try` from `activesupport`. This was preventing non-Rails projects from properly running Cloudtasker jobs.
|
9
|
+
- WorkerController: remove useless inheritance from local ApplicationController. The parent controller was not always loaded on Rails 5 which in turn created issues with authenticity token. Fixes [#40](https://github.com/keypup-io/cloudtasker/issues/40)
|
10
|
+
|
11
|
+
## [v0.10.2](https://github.com/keypup-io/cloudtasker/tree/v0.10.2) (2021-08-25)
|
12
|
+
|
13
|
+
[Full Changelog](https://github.com/keypup-io/cloudtasker/compare/v0.10.1...v0.10.2)
|
14
|
+
|
15
|
+
**Fixed bugs:**
|
16
|
+
- Dependencies: Require `try` from `activesupport`. This was preventing non-Rails projects from properly running Cloudtasker jobs.
|
17
|
+
- WorkerController: remove useless inheritance from local ApplicationController. The parent controller was not always loaded on Rails 5 which in turn created issues with authenticity token. Fixes [#40](https://github.com/keypup-io/cloudtasker/issues/40)
|
18
|
+
|
19
|
+
## [v0.9.5](https://github.com/keypup-io/cloudtasker/tree/v0.9.5) (2021-08-25)
|
20
|
+
|
21
|
+
[Full Changelog](https://github.com/keypup-io/cloudtasker/compare/v0.9.4...v0.9.5)
|
22
|
+
|
23
|
+
**Fixed bugs:**
|
24
|
+
- Dependencies: Require `try` from `activesupport`. This was preventing non-Rails projects from properly running Cloudtasker jobs.
|
25
|
+
- WorkerController: remove useless inheritance from local ApplicationController. The parent controller was not always loaded on Rails 5 which in turn created issues with authenticity token. Fixes [#40](https://github.com/keypup-io/cloudtasker/issues/40)
|
26
|
+
|
3
27
|
## [v0.11.0](https://github.com/keypup-io/cloudtasker/tree/v0.11.0) (2020-11-23)
|
4
28
|
|
5
29
|
[Full Changelog](https://github.com/keypup-io/cloudtasker/compare/v0.10.0...v0.11.0)
|
@@ -2,7 +2,10 @@
|
|
2
2
|
|
3
3
|
module Cloudtasker
|
4
4
|
# Handle execution of workers
|
5
|
-
class WorkerController <
|
5
|
+
class WorkerController < ActionController::Base
|
6
|
+
# No need for CSRF verification on API endpoints
|
7
|
+
skip_before_action :verify_authenticity_token
|
8
|
+
|
6
9
|
# Authenticate all requests.
|
7
10
|
before_action :authenticate!
|
8
11
|
|
@@ -13,75 +13,95 @@ PATH
|
|
13
13
|
GEM
|
14
14
|
remote: https://rubygems.org/
|
15
15
|
specs:
|
16
|
-
actioncable (6.1.
|
17
|
-
actionpack (= 6.1.
|
18
|
-
activesupport (= 6.1.
|
16
|
+
actioncable (6.1.4.1)
|
17
|
+
actionpack (= 6.1.4.1)
|
18
|
+
activesupport (= 6.1.4.1)
|
19
19
|
nio4r (~> 2.0)
|
20
20
|
websocket-driver (>= 0.6.1)
|
21
|
-
actionmailbox (6.1.
|
22
|
-
actionpack (= 6.1.
|
23
|
-
activejob (= 6.1.
|
24
|
-
activerecord (= 6.1.
|
25
|
-
activestorage (= 6.1.
|
26
|
-
activesupport (= 6.1.
|
21
|
+
actionmailbox (6.1.4.1)
|
22
|
+
actionpack (= 6.1.4.1)
|
23
|
+
activejob (= 6.1.4.1)
|
24
|
+
activerecord (= 6.1.4.1)
|
25
|
+
activestorage (= 6.1.4.1)
|
26
|
+
activesupport (= 6.1.4.1)
|
27
27
|
mail (>= 2.7.1)
|
28
|
-
actionmailer (6.1.
|
29
|
-
actionpack (= 6.1.
|
30
|
-
actionview (= 6.1.
|
31
|
-
activejob (= 6.1.
|
32
|
-
activesupport (= 6.1.
|
28
|
+
actionmailer (6.1.4.1)
|
29
|
+
actionpack (= 6.1.4.1)
|
30
|
+
actionview (= 6.1.4.1)
|
31
|
+
activejob (= 6.1.4.1)
|
32
|
+
activesupport (= 6.1.4.1)
|
33
33
|
mail (~> 2.5, >= 2.5.4)
|
34
34
|
rails-dom-testing (~> 2.0)
|
35
|
-
actionpack (6.1.
|
36
|
-
actionview (= 6.1.
|
37
|
-
activesupport (= 6.1.
|
35
|
+
actionpack (6.1.4.1)
|
36
|
+
actionview (= 6.1.4.1)
|
37
|
+
activesupport (= 6.1.4.1)
|
38
38
|
rack (~> 2.0, >= 2.0.9)
|
39
39
|
rack-test (>= 0.6.3)
|
40
40
|
rails-dom-testing (~> 2.0)
|
41
41
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
42
|
-
actiontext (6.1.
|
43
|
-
actionpack (= 6.1.
|
44
|
-
activerecord (= 6.1.
|
45
|
-
activestorage (= 6.1.
|
46
|
-
activesupport (= 6.1.
|
42
|
+
actiontext (6.1.4.1)
|
43
|
+
actionpack (= 6.1.4.1)
|
44
|
+
activerecord (= 6.1.4.1)
|
45
|
+
activestorage (= 6.1.4.1)
|
46
|
+
activesupport (= 6.1.4.1)
|
47
47
|
nokogiri (>= 1.8.5)
|
48
|
-
actionview (6.1.
|
49
|
-
activesupport (= 6.1.
|
48
|
+
actionview (6.1.4.1)
|
49
|
+
activesupport (= 6.1.4.1)
|
50
50
|
builder (~> 3.1)
|
51
51
|
erubi (~> 1.4)
|
52
52
|
rails-dom-testing (~> 2.0)
|
53
53
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
54
|
-
activejob (6.1.
|
55
|
-
activesupport (= 6.1.
|
54
|
+
activejob (6.1.4.1)
|
55
|
+
activesupport (= 6.1.4.1)
|
56
56
|
globalid (>= 0.3.6)
|
57
|
-
activemodel (6.1.
|
58
|
-
activesupport (= 6.1.
|
59
|
-
activerecord (6.1.
|
60
|
-
activemodel (= 6.1.
|
61
|
-
activesupport (= 6.1.
|
62
|
-
activestorage (6.1.
|
63
|
-
actionpack (= 6.1.
|
64
|
-
activejob (= 6.1.
|
65
|
-
activerecord (= 6.1.
|
66
|
-
activesupport (= 6.1.
|
67
|
-
marcel (~> 0.
|
68
|
-
|
69
|
-
activesupport (6.1.
|
57
|
+
activemodel (6.1.4.1)
|
58
|
+
activesupport (= 6.1.4.1)
|
59
|
+
activerecord (6.1.4.1)
|
60
|
+
activemodel (= 6.1.4.1)
|
61
|
+
activesupport (= 6.1.4.1)
|
62
|
+
activestorage (6.1.4.1)
|
63
|
+
actionpack (= 6.1.4.1)
|
64
|
+
activejob (= 6.1.4.1)
|
65
|
+
activerecord (= 6.1.4.1)
|
66
|
+
activesupport (= 6.1.4.1)
|
67
|
+
marcel (~> 1.0.0)
|
68
|
+
mini_mime (>= 1.1.0)
|
69
|
+
activesupport (6.1.4.1)
|
70
70
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
71
71
|
i18n (>= 1.6, < 2)
|
72
72
|
minitest (>= 5.1)
|
73
73
|
tzinfo (~> 2.0)
|
74
74
|
zeitwerk (~> 2.3)
|
75
|
-
addressable (2.
|
75
|
+
addressable (2.8.0)
|
76
76
|
public_suffix (>= 2.0.2, < 5.0)
|
77
|
-
appraisal (2.4.
|
77
|
+
appraisal (2.4.1)
|
78
78
|
bundler
|
79
79
|
rake
|
80
80
|
thor (>= 0.14.0)
|
81
81
|
ast (2.4.2)
|
82
|
+
async (1.30.1)
|
83
|
+
console (~> 1.10)
|
84
|
+
nio4r (~> 2.3)
|
85
|
+
timers (~> 4.1)
|
86
|
+
async-http (0.56.5)
|
87
|
+
async (>= 1.25)
|
88
|
+
async-io (>= 1.28)
|
89
|
+
async-pool (>= 0.2)
|
90
|
+
protocol-http (~> 0.22.0)
|
91
|
+
protocol-http1 (~> 0.14.0)
|
92
|
+
protocol-http2 (~> 0.14.0)
|
93
|
+
async-http-faraday (0.11.0)
|
94
|
+
async-http (~> 0.42)
|
95
|
+
faraday
|
96
|
+
async-io (1.32.2)
|
97
|
+
async
|
98
|
+
async-pool (0.3.8)
|
99
|
+
async (>= 1.25)
|
82
100
|
builder (3.2.4)
|
83
|
-
concurrent-ruby (1.1.
|
84
|
-
connection_pool (2.2.
|
101
|
+
concurrent-ruby (1.1.9)
|
102
|
+
connection_pool (2.2.5)
|
103
|
+
console (1.13.1)
|
104
|
+
fiber-local
|
85
105
|
crack (0.4.5)
|
86
106
|
rexml
|
87
107
|
crass (1.0.6)
|
@@ -89,26 +109,42 @@ GEM
|
|
89
109
|
erubi (1.10.0)
|
90
110
|
et-orbi (1.2.4)
|
91
111
|
tzinfo
|
92
|
-
faraday (1.
|
112
|
+
faraday (1.7.0)
|
113
|
+
faraday-em_http (~> 1.0)
|
114
|
+
faraday-em_synchrony (~> 1.0)
|
115
|
+
faraday-excon (~> 1.1)
|
116
|
+
faraday-httpclient (~> 1.0.1)
|
93
117
|
faraday-net_http (~> 1.0)
|
118
|
+
faraday-net_http_persistent (~> 1.1)
|
119
|
+
faraday-patron (~> 1.0)
|
120
|
+
faraday-rack (~> 1.0)
|
94
121
|
multipart-post (>= 1.2, < 3)
|
95
|
-
ruby2_keywords
|
122
|
+
ruby2_keywords (>= 0.0.4)
|
123
|
+
faraday-em_http (1.0.0)
|
124
|
+
faraday-em_synchrony (1.0.0)
|
125
|
+
faraday-excon (1.1.0)
|
96
126
|
faraday-http-cache (2.2.0)
|
97
127
|
faraday (>= 0.8)
|
128
|
+
faraday-httpclient (1.0.1)
|
98
129
|
faraday-net_http (1.0.1)
|
99
|
-
|
130
|
+
faraday-net_http_persistent (1.2.0)
|
131
|
+
faraday-patron (1.0.0)
|
132
|
+
faraday-rack (1.0.0)
|
133
|
+
fiber-local (1.0.0)
|
134
|
+
fugit (1.5.1)
|
100
135
|
et-orbi (~> 1.1, >= 1.1.8)
|
101
136
|
raabro (~> 1.4)
|
102
|
-
github_changelog_generator (1.
|
137
|
+
github_changelog_generator (1.16.4)
|
103
138
|
activesupport
|
139
|
+
async (>= 1.25.0)
|
140
|
+
async-http-faraday
|
104
141
|
faraday-http-cache
|
105
142
|
multi_json
|
106
143
|
octokit (~> 4.6)
|
107
144
|
rainbow (>= 2.2.1)
|
108
145
|
rake (>= 10.0)
|
109
|
-
|
110
|
-
|
111
|
-
activesupport (>= 4.2.0)
|
146
|
+
globalid (0.5.2)
|
147
|
+
activesupport (>= 5.0)
|
112
148
|
google-cloud-tasks (1.0.0)
|
113
149
|
google-gax (~> 1.3)
|
114
150
|
googleapis-common-protos (>= 1.3.9, < 2.0)
|
@@ -119,95 +155,100 @@ GEM
|
|
119
155
|
googleauth (~> 0.9)
|
120
156
|
grpc (~> 1.24)
|
121
157
|
rly (~> 0.2.3)
|
122
|
-
google-protobuf (3.
|
158
|
+
google-protobuf (3.17.3)
|
123
159
|
googleapis-common-protos (1.3.11)
|
124
160
|
google-protobuf (~> 3.14)
|
125
161
|
googleapis-common-protos-types (>= 1.0.6, < 2.0)
|
126
162
|
grpc (~> 1.27)
|
127
|
-
googleapis-common-protos-types (1.0
|
163
|
+
googleapis-common-protos-types (1.1.0)
|
128
164
|
google-protobuf (~> 3.14)
|
129
|
-
googleauth (0.
|
165
|
+
googleauth (0.17.0)
|
130
166
|
faraday (>= 0.17.3, < 2.0)
|
131
167
|
jwt (>= 1.4, < 3.0)
|
132
168
|
memoist (~> 0.16)
|
133
169
|
multi_json (~> 1.11)
|
134
170
|
os (>= 0.9, < 2.0)
|
135
171
|
signet (~> 0.14)
|
136
|
-
grpc (1.
|
137
|
-
google-protobuf (~> 3.
|
172
|
+
grpc (1.38.0)
|
173
|
+
google-protobuf (~> 3.15)
|
138
174
|
googleapis-common-protos-types (~> 1.0)
|
139
175
|
grpc-google-iam-v1 (0.6.11)
|
140
176
|
google-protobuf (~> 3.14)
|
141
177
|
googleapis-common-protos (>= 1.3.11, < 2.0)
|
142
178
|
grpc (~> 1.27)
|
143
179
|
hashdiff (1.0.1)
|
144
|
-
i18n (1.8.
|
180
|
+
i18n (1.8.10)
|
145
181
|
concurrent-ruby (~> 1.0)
|
146
182
|
jaro_winkler (1.5.4)
|
147
|
-
jwt (2.2.
|
148
|
-
loofah (2.
|
183
|
+
jwt (2.2.3)
|
184
|
+
loofah (2.12.0)
|
149
185
|
crass (~> 1.0.2)
|
150
186
|
nokogiri (>= 1.5.9)
|
151
187
|
mail (2.7.1)
|
152
188
|
mini_mime (>= 0.1.1)
|
153
|
-
marcel (0.
|
154
|
-
mimemagic (~> 0.3.2)
|
189
|
+
marcel (1.0.1)
|
155
190
|
memoist (0.16.2)
|
156
191
|
method_source (1.0.0)
|
157
|
-
|
158
|
-
|
159
|
-
mini_portile2 (2.5.0)
|
192
|
+
mini_mime (1.1.1)
|
193
|
+
mini_portile2 (2.6.1)
|
160
194
|
minitest (5.14.4)
|
161
195
|
multi_json (1.15.0)
|
162
196
|
multipart-post (2.1.1)
|
163
|
-
nio4r (2.5.
|
164
|
-
nokogiri (1.
|
165
|
-
mini_portile2 (~> 2.
|
197
|
+
nio4r (2.5.8)
|
198
|
+
nokogiri (1.12.3)
|
199
|
+
mini_portile2 (~> 2.6.1)
|
166
200
|
racc (~> 1.4)
|
167
|
-
octokit (4.
|
201
|
+
octokit (4.21.0)
|
168
202
|
faraday (>= 0.9)
|
169
203
|
sawyer (~> 0.8.0, >= 0.5.3)
|
170
204
|
os (1.1.1)
|
171
205
|
parallel (1.20.1)
|
172
|
-
parser (3.0.
|
206
|
+
parser (3.0.2.0)
|
173
207
|
ast (~> 2.4.1)
|
208
|
+
protocol-hpack (1.4.2)
|
209
|
+
protocol-http (0.22.5)
|
210
|
+
protocol-http1 (0.14.2)
|
211
|
+
protocol-http (~> 0.22)
|
212
|
+
protocol-http2 (0.14.2)
|
213
|
+
protocol-hpack (~> 1.4)
|
214
|
+
protocol-http (~> 0.18)
|
174
215
|
public_suffix (4.0.6)
|
175
216
|
raabro (1.4.0)
|
176
217
|
racc (1.5.2)
|
177
218
|
rack (2.2.3)
|
178
219
|
rack-test (1.1.0)
|
179
220
|
rack (>= 1.0, < 3)
|
180
|
-
rails (6.1.
|
181
|
-
actioncable (= 6.1.
|
182
|
-
actionmailbox (= 6.1.
|
183
|
-
actionmailer (= 6.1.
|
184
|
-
actionpack (= 6.1.
|
185
|
-
actiontext (= 6.1.
|
186
|
-
actionview (= 6.1.
|
187
|
-
activejob (= 6.1.
|
188
|
-
activemodel (= 6.1.
|
189
|
-
activerecord (= 6.1.
|
190
|
-
activestorage (= 6.1.
|
191
|
-
activesupport (= 6.1.
|
221
|
+
rails (6.1.4.1)
|
222
|
+
actioncable (= 6.1.4.1)
|
223
|
+
actionmailbox (= 6.1.4.1)
|
224
|
+
actionmailer (= 6.1.4.1)
|
225
|
+
actionpack (= 6.1.4.1)
|
226
|
+
actiontext (= 6.1.4.1)
|
227
|
+
actionview (= 6.1.4.1)
|
228
|
+
activejob (= 6.1.4.1)
|
229
|
+
activemodel (= 6.1.4.1)
|
230
|
+
activerecord (= 6.1.4.1)
|
231
|
+
activestorage (= 6.1.4.1)
|
232
|
+
activesupport (= 6.1.4.1)
|
192
233
|
bundler (>= 1.15.0)
|
193
|
-
railties (= 6.1.
|
234
|
+
railties (= 6.1.4.1)
|
194
235
|
sprockets-rails (>= 2.0.0)
|
195
236
|
rails-dom-testing (2.0.3)
|
196
237
|
activesupport (>= 4.2.0)
|
197
238
|
nokogiri (>= 1.6)
|
198
|
-
rails-html-sanitizer (1.
|
239
|
+
rails-html-sanitizer (1.4.2)
|
199
240
|
loofah (~> 2.3)
|
200
|
-
railties (6.1.
|
201
|
-
actionpack (= 6.1.
|
202
|
-
activesupport (= 6.1.
|
241
|
+
railties (6.1.4.1)
|
242
|
+
actionpack (= 6.1.4.1)
|
243
|
+
activesupport (= 6.1.4.1)
|
203
244
|
method_source
|
204
|
-
rake (>= 0.
|
245
|
+
rake (>= 0.13)
|
205
246
|
thor (~> 1.0)
|
206
247
|
rainbow (3.0.0)
|
207
|
-
rake (13.0.
|
208
|
-
redis (4.
|
248
|
+
rake (13.0.6)
|
249
|
+
redis (4.4.0)
|
209
250
|
retriable (3.1.2)
|
210
|
-
rexml (3.2.
|
251
|
+
rexml (3.2.5)
|
211
252
|
rly (0.2.3)
|
212
253
|
rspec (3.10.0)
|
213
254
|
rspec-core (~> 3.10.0)
|
@@ -222,7 +263,7 @@ GEM
|
|
222
263
|
rspec-mocks (3.10.2)
|
223
264
|
diff-lcs (>= 1.2.0, < 2.0)
|
224
265
|
rspec-support (~> 3.10.0)
|
225
|
-
rspec-rails (5.0.
|
266
|
+
rspec-rails (5.0.2)
|
226
267
|
actionpack (>= 5.2)
|
227
268
|
activesupport (>= 5.2)
|
228
269
|
railties (>= 5.2)
|
@@ -241,11 +282,11 @@ GEM
|
|
241
282
|
rubocop-rspec (1.37.0)
|
242
283
|
rubocop (>= 0.68.1)
|
243
284
|
ruby-progressbar (1.11.0)
|
244
|
-
ruby2_keywords (0.0.
|
285
|
+
ruby2_keywords (0.0.5)
|
245
286
|
sawyer (0.8.2)
|
246
287
|
addressable (>= 2.3.5)
|
247
288
|
faraday (> 0.8, < 2.0)
|
248
|
-
semantic_logger (4.
|
289
|
+
semantic_logger (4.8.2)
|
249
290
|
concurrent-ruby (~> 1.0)
|
250
291
|
signet (0.15.0)
|
251
292
|
addressable (~> 2.3)
|
@@ -262,14 +303,15 @@ GEM
|
|
262
303
|
sqlite3 (1.4.2)
|
263
304
|
thor (1.1.0)
|
264
305
|
timecop (0.9.4)
|
306
|
+
timers (4.3.3)
|
265
307
|
tzinfo (2.0.4)
|
266
308
|
concurrent-ruby (~> 1.0)
|
267
309
|
unicode-display_width (1.6.1)
|
268
|
-
webmock (3.
|
269
|
-
addressable (>= 2.
|
310
|
+
webmock (3.14.0)
|
311
|
+
addressable (>= 2.8.0)
|
270
312
|
crack (>= 0.3.2)
|
271
313
|
hashdiff (>= 0.4.0, < 2.0.0)
|
272
|
-
websocket-driver (0.7.
|
314
|
+
websocket-driver (0.7.5)
|
273
315
|
websocket-extensions (>= 0.1.0)
|
274
316
|
websocket-extensions (0.1.5)
|
275
317
|
zeitwerk (2.4.2)
|
@@ -13,75 +13,95 @@ PATH
|
|
13
13
|
GEM
|
14
14
|
remote: https://rubygems.org/
|
15
15
|
specs:
|
16
|
-
actioncable (6.1.
|
17
|
-
actionpack (= 6.1.
|
18
|
-
activesupport (= 6.1.
|
16
|
+
actioncable (6.1.4.1)
|
17
|
+
actionpack (= 6.1.4.1)
|
18
|
+
activesupport (= 6.1.4.1)
|
19
19
|
nio4r (~> 2.0)
|
20
20
|
websocket-driver (>= 0.6.1)
|
21
|
-
actionmailbox (6.1.
|
22
|
-
actionpack (= 6.1.
|
23
|
-
activejob (= 6.1.
|
24
|
-
activerecord (= 6.1.
|
25
|
-
activestorage (= 6.1.
|
26
|
-
activesupport (= 6.1.
|
21
|
+
actionmailbox (6.1.4.1)
|
22
|
+
actionpack (= 6.1.4.1)
|
23
|
+
activejob (= 6.1.4.1)
|
24
|
+
activerecord (= 6.1.4.1)
|
25
|
+
activestorage (= 6.1.4.1)
|
26
|
+
activesupport (= 6.1.4.1)
|
27
27
|
mail (>= 2.7.1)
|
28
|
-
actionmailer (6.1.
|
29
|
-
actionpack (= 6.1.
|
30
|
-
actionview (= 6.1.
|
31
|
-
activejob (= 6.1.
|
32
|
-
activesupport (= 6.1.
|
28
|
+
actionmailer (6.1.4.1)
|
29
|
+
actionpack (= 6.1.4.1)
|
30
|
+
actionview (= 6.1.4.1)
|
31
|
+
activejob (= 6.1.4.1)
|
32
|
+
activesupport (= 6.1.4.1)
|
33
33
|
mail (~> 2.5, >= 2.5.4)
|
34
34
|
rails-dom-testing (~> 2.0)
|
35
|
-
actionpack (6.1.
|
36
|
-
actionview (= 6.1.
|
37
|
-
activesupport (= 6.1.
|
35
|
+
actionpack (6.1.4.1)
|
36
|
+
actionview (= 6.1.4.1)
|
37
|
+
activesupport (= 6.1.4.1)
|
38
38
|
rack (~> 2.0, >= 2.0.9)
|
39
39
|
rack-test (>= 0.6.3)
|
40
40
|
rails-dom-testing (~> 2.0)
|
41
41
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
42
|
-
actiontext (6.1.
|
43
|
-
actionpack (= 6.1.
|
44
|
-
activerecord (= 6.1.
|
45
|
-
activestorage (= 6.1.
|
46
|
-
activesupport (= 6.1.
|
42
|
+
actiontext (6.1.4.1)
|
43
|
+
actionpack (= 6.1.4.1)
|
44
|
+
activerecord (= 6.1.4.1)
|
45
|
+
activestorage (= 6.1.4.1)
|
46
|
+
activesupport (= 6.1.4.1)
|
47
47
|
nokogiri (>= 1.8.5)
|
48
|
-
actionview (6.1.
|
49
|
-
activesupport (= 6.1.
|
48
|
+
actionview (6.1.4.1)
|
49
|
+
activesupport (= 6.1.4.1)
|
50
50
|
builder (~> 3.1)
|
51
51
|
erubi (~> 1.4)
|
52
52
|
rails-dom-testing (~> 2.0)
|
53
53
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
54
|
-
activejob (6.1.
|
55
|
-
activesupport (= 6.1.
|
54
|
+
activejob (6.1.4.1)
|
55
|
+
activesupport (= 6.1.4.1)
|
56
56
|
globalid (>= 0.3.6)
|
57
|
-
activemodel (6.1.
|
58
|
-
activesupport (= 6.1.
|
59
|
-
activerecord (6.1.
|
60
|
-
activemodel (= 6.1.
|
61
|
-
activesupport (= 6.1.
|
62
|
-
activestorage (6.1.
|
63
|
-
actionpack (= 6.1.
|
64
|
-
activejob (= 6.1.
|
65
|
-
activerecord (= 6.1.
|
66
|
-
activesupport (= 6.1.
|
67
|
-
marcel (~> 0.
|
68
|
-
|
69
|
-
activesupport (6.1.
|
57
|
+
activemodel (6.1.4.1)
|
58
|
+
activesupport (= 6.1.4.1)
|
59
|
+
activerecord (6.1.4.1)
|
60
|
+
activemodel (= 6.1.4.1)
|
61
|
+
activesupport (= 6.1.4.1)
|
62
|
+
activestorage (6.1.4.1)
|
63
|
+
actionpack (= 6.1.4.1)
|
64
|
+
activejob (= 6.1.4.1)
|
65
|
+
activerecord (= 6.1.4.1)
|
66
|
+
activesupport (= 6.1.4.1)
|
67
|
+
marcel (~> 1.0.0)
|
68
|
+
mini_mime (>= 1.1.0)
|
69
|
+
activesupport (6.1.4.1)
|
70
70
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
71
71
|
i18n (>= 1.6, < 2)
|
72
72
|
minitest (>= 5.1)
|
73
73
|
tzinfo (~> 2.0)
|
74
74
|
zeitwerk (~> 2.3)
|
75
|
-
addressable (2.
|
75
|
+
addressable (2.8.0)
|
76
76
|
public_suffix (>= 2.0.2, < 5.0)
|
77
|
-
appraisal (2.4.
|
77
|
+
appraisal (2.4.1)
|
78
78
|
bundler
|
79
79
|
rake
|
80
80
|
thor (>= 0.14.0)
|
81
81
|
ast (2.4.2)
|
82
|
+
async (1.30.1)
|
83
|
+
console (~> 1.10)
|
84
|
+
nio4r (~> 2.3)
|
85
|
+
timers (~> 4.1)
|
86
|
+
async-http (0.56.5)
|
87
|
+
async (>= 1.25)
|
88
|
+
async-io (>= 1.28)
|
89
|
+
async-pool (>= 0.2)
|
90
|
+
protocol-http (~> 0.22.0)
|
91
|
+
protocol-http1 (~> 0.14.0)
|
92
|
+
protocol-http2 (~> 0.14.0)
|
93
|
+
async-http-faraday (0.11.0)
|
94
|
+
async-http (~> 0.42)
|
95
|
+
faraday
|
96
|
+
async-io (1.32.2)
|
97
|
+
async
|
98
|
+
async-pool (0.3.8)
|
99
|
+
async (>= 1.25)
|
82
100
|
builder (3.2.4)
|
83
|
-
concurrent-ruby (1.1.
|
84
|
-
connection_pool (2.2.
|
101
|
+
concurrent-ruby (1.1.9)
|
102
|
+
connection_pool (2.2.5)
|
103
|
+
console (1.13.1)
|
104
|
+
fiber-local
|
85
105
|
crack (0.4.5)
|
86
106
|
rexml
|
87
107
|
crass (1.0.6)
|
@@ -89,26 +109,42 @@ GEM
|
|
89
109
|
erubi (1.10.0)
|
90
110
|
et-orbi (1.2.4)
|
91
111
|
tzinfo
|
92
|
-
faraday (1.
|
112
|
+
faraday (1.7.0)
|
113
|
+
faraday-em_http (~> 1.0)
|
114
|
+
faraday-em_synchrony (~> 1.0)
|
115
|
+
faraday-excon (~> 1.1)
|
116
|
+
faraday-httpclient (~> 1.0.1)
|
93
117
|
faraday-net_http (~> 1.0)
|
118
|
+
faraday-net_http_persistent (~> 1.1)
|
119
|
+
faraday-patron (~> 1.0)
|
120
|
+
faraday-rack (~> 1.0)
|
94
121
|
multipart-post (>= 1.2, < 3)
|
95
|
-
ruby2_keywords
|
122
|
+
ruby2_keywords (>= 0.0.4)
|
123
|
+
faraday-em_http (1.0.0)
|
124
|
+
faraday-em_synchrony (1.0.0)
|
125
|
+
faraday-excon (1.1.0)
|
96
126
|
faraday-http-cache (2.2.0)
|
97
127
|
faraday (>= 0.8)
|
128
|
+
faraday-httpclient (1.0.1)
|
98
129
|
faraday-net_http (1.0.1)
|
99
|
-
|
130
|
+
faraday-net_http_persistent (1.2.0)
|
131
|
+
faraday-patron (1.0.0)
|
132
|
+
faraday-rack (1.0.0)
|
133
|
+
fiber-local (1.0.0)
|
134
|
+
fugit (1.5.1)
|
100
135
|
et-orbi (~> 1.1, >= 1.1.8)
|
101
136
|
raabro (~> 1.4)
|
102
|
-
github_changelog_generator (1.
|
137
|
+
github_changelog_generator (1.16.4)
|
103
138
|
activesupport
|
139
|
+
async (>= 1.25.0)
|
140
|
+
async-http-faraday
|
104
141
|
faraday-http-cache
|
105
142
|
multi_json
|
106
143
|
octokit (~> 4.6)
|
107
144
|
rainbow (>= 2.2.1)
|
108
145
|
rake (>= 10.0)
|
109
|
-
|
110
|
-
|
111
|
-
activesupport (>= 4.2.0)
|
146
|
+
globalid (0.5.2)
|
147
|
+
activesupport (>= 5.0)
|
112
148
|
google-cloud-tasks (1.1.0)
|
113
149
|
google-gax (~> 1.7)
|
114
150
|
googleapis-common-protos (>= 1.3.9, < 2.0)
|
@@ -119,95 +155,100 @@ GEM
|
|
119
155
|
googleauth (~> 0.9)
|
120
156
|
grpc (~> 1.24)
|
121
157
|
rly (~> 0.2.3)
|
122
|
-
google-protobuf (3.
|
158
|
+
google-protobuf (3.17.3)
|
123
159
|
googleapis-common-protos (1.3.11)
|
124
160
|
google-protobuf (~> 3.14)
|
125
161
|
googleapis-common-protos-types (>= 1.0.6, < 2.0)
|
126
162
|
grpc (~> 1.27)
|
127
|
-
googleapis-common-protos-types (1.0
|
163
|
+
googleapis-common-protos-types (1.1.0)
|
128
164
|
google-protobuf (~> 3.14)
|
129
|
-
googleauth (0.
|
165
|
+
googleauth (0.17.0)
|
130
166
|
faraday (>= 0.17.3, < 2.0)
|
131
167
|
jwt (>= 1.4, < 3.0)
|
132
168
|
memoist (~> 0.16)
|
133
169
|
multi_json (~> 1.11)
|
134
170
|
os (>= 0.9, < 2.0)
|
135
171
|
signet (~> 0.14)
|
136
|
-
grpc (1.
|
137
|
-
google-protobuf (~> 3.
|
172
|
+
grpc (1.38.0)
|
173
|
+
google-protobuf (~> 3.15)
|
138
174
|
googleapis-common-protos-types (~> 1.0)
|
139
175
|
grpc-google-iam-v1 (0.6.11)
|
140
176
|
google-protobuf (~> 3.14)
|
141
177
|
googleapis-common-protos (>= 1.3.11, < 2.0)
|
142
178
|
grpc (~> 1.27)
|
143
179
|
hashdiff (1.0.1)
|
144
|
-
i18n (1.8.
|
180
|
+
i18n (1.8.10)
|
145
181
|
concurrent-ruby (~> 1.0)
|
146
182
|
jaro_winkler (1.5.4)
|
147
|
-
jwt (2.2.
|
148
|
-
loofah (2.
|
183
|
+
jwt (2.2.3)
|
184
|
+
loofah (2.12.0)
|
149
185
|
crass (~> 1.0.2)
|
150
186
|
nokogiri (>= 1.5.9)
|
151
187
|
mail (2.7.1)
|
152
188
|
mini_mime (>= 0.1.1)
|
153
|
-
marcel (0.
|
154
|
-
mimemagic (~> 0.3.2)
|
189
|
+
marcel (1.0.1)
|
155
190
|
memoist (0.16.2)
|
156
191
|
method_source (1.0.0)
|
157
|
-
|
158
|
-
|
159
|
-
mini_portile2 (2.5.0)
|
192
|
+
mini_mime (1.1.1)
|
193
|
+
mini_portile2 (2.6.1)
|
160
194
|
minitest (5.14.4)
|
161
195
|
multi_json (1.15.0)
|
162
196
|
multipart-post (2.1.1)
|
163
|
-
nio4r (2.5.
|
164
|
-
nokogiri (1.
|
165
|
-
mini_portile2 (~> 2.
|
197
|
+
nio4r (2.5.8)
|
198
|
+
nokogiri (1.12.3)
|
199
|
+
mini_portile2 (~> 2.6.1)
|
166
200
|
racc (~> 1.4)
|
167
|
-
octokit (4.
|
201
|
+
octokit (4.21.0)
|
168
202
|
faraday (>= 0.9)
|
169
203
|
sawyer (~> 0.8.0, >= 0.5.3)
|
170
204
|
os (1.1.1)
|
171
205
|
parallel (1.20.1)
|
172
|
-
parser (3.0.
|
206
|
+
parser (3.0.2.0)
|
173
207
|
ast (~> 2.4.1)
|
208
|
+
protocol-hpack (1.4.2)
|
209
|
+
protocol-http (0.22.5)
|
210
|
+
protocol-http1 (0.14.2)
|
211
|
+
protocol-http (~> 0.22)
|
212
|
+
protocol-http2 (0.14.2)
|
213
|
+
protocol-hpack (~> 1.4)
|
214
|
+
protocol-http (~> 0.18)
|
174
215
|
public_suffix (4.0.6)
|
175
216
|
raabro (1.4.0)
|
176
217
|
racc (1.5.2)
|
177
218
|
rack (2.2.3)
|
178
219
|
rack-test (1.1.0)
|
179
220
|
rack (>= 1.0, < 3)
|
180
|
-
rails (6.1.
|
181
|
-
actioncable (= 6.1.
|
182
|
-
actionmailbox (= 6.1.
|
183
|
-
actionmailer (= 6.1.
|
184
|
-
actionpack (= 6.1.
|
185
|
-
actiontext (= 6.1.
|
186
|
-
actionview (= 6.1.
|
187
|
-
activejob (= 6.1.
|
188
|
-
activemodel (= 6.1.
|
189
|
-
activerecord (= 6.1.
|
190
|
-
activestorage (= 6.1.
|
191
|
-
activesupport (= 6.1.
|
221
|
+
rails (6.1.4.1)
|
222
|
+
actioncable (= 6.1.4.1)
|
223
|
+
actionmailbox (= 6.1.4.1)
|
224
|
+
actionmailer (= 6.1.4.1)
|
225
|
+
actionpack (= 6.1.4.1)
|
226
|
+
actiontext (= 6.1.4.1)
|
227
|
+
actionview (= 6.1.4.1)
|
228
|
+
activejob (= 6.1.4.1)
|
229
|
+
activemodel (= 6.1.4.1)
|
230
|
+
activerecord (= 6.1.4.1)
|
231
|
+
activestorage (= 6.1.4.1)
|
232
|
+
activesupport (= 6.1.4.1)
|
192
233
|
bundler (>= 1.15.0)
|
193
|
-
railties (= 6.1.
|
234
|
+
railties (= 6.1.4.1)
|
194
235
|
sprockets-rails (>= 2.0.0)
|
195
236
|
rails-dom-testing (2.0.3)
|
196
237
|
activesupport (>= 4.2.0)
|
197
238
|
nokogiri (>= 1.6)
|
198
|
-
rails-html-sanitizer (1.
|
239
|
+
rails-html-sanitizer (1.4.2)
|
199
240
|
loofah (~> 2.3)
|
200
|
-
railties (6.1.
|
201
|
-
actionpack (= 6.1.
|
202
|
-
activesupport (= 6.1.
|
241
|
+
railties (6.1.4.1)
|
242
|
+
actionpack (= 6.1.4.1)
|
243
|
+
activesupport (= 6.1.4.1)
|
203
244
|
method_source
|
204
|
-
rake (>= 0.
|
245
|
+
rake (>= 0.13)
|
205
246
|
thor (~> 1.0)
|
206
247
|
rainbow (3.0.0)
|
207
|
-
rake (13.0.
|
208
|
-
redis (4.
|
248
|
+
rake (13.0.6)
|
249
|
+
redis (4.4.0)
|
209
250
|
retriable (3.1.2)
|
210
|
-
rexml (3.2.
|
251
|
+
rexml (3.2.5)
|
211
252
|
rly (0.2.3)
|
212
253
|
rspec (3.10.0)
|
213
254
|
rspec-core (~> 3.10.0)
|
@@ -222,7 +263,7 @@ GEM
|
|
222
263
|
rspec-mocks (3.10.2)
|
223
264
|
diff-lcs (>= 1.2.0, < 2.0)
|
224
265
|
rspec-support (~> 3.10.0)
|
225
|
-
rspec-rails (5.0.
|
266
|
+
rspec-rails (5.0.2)
|
226
267
|
actionpack (>= 5.2)
|
227
268
|
activesupport (>= 5.2)
|
228
269
|
railties (>= 5.2)
|
@@ -241,11 +282,11 @@ GEM
|
|
241
282
|
rubocop-rspec (1.37.0)
|
242
283
|
rubocop (>= 0.68.1)
|
243
284
|
ruby-progressbar (1.11.0)
|
244
|
-
ruby2_keywords (0.0.
|
285
|
+
ruby2_keywords (0.0.5)
|
245
286
|
sawyer (0.8.2)
|
246
287
|
addressable (>= 2.3.5)
|
247
288
|
faraday (> 0.8, < 2.0)
|
248
|
-
semantic_logger (4.
|
289
|
+
semantic_logger (4.8.2)
|
249
290
|
concurrent-ruby (~> 1.0)
|
250
291
|
signet (0.15.0)
|
251
292
|
addressable (~> 2.3)
|
@@ -262,14 +303,15 @@ GEM
|
|
262
303
|
sqlite3 (1.4.2)
|
263
304
|
thor (1.1.0)
|
264
305
|
timecop (0.9.4)
|
306
|
+
timers (4.3.3)
|
265
307
|
tzinfo (2.0.4)
|
266
308
|
concurrent-ruby (~> 1.0)
|
267
309
|
unicode-display_width (1.6.1)
|
268
|
-
webmock (3.
|
269
|
-
addressable (>= 2.
|
310
|
+
webmock (3.14.0)
|
311
|
+
addressable (>= 2.8.0)
|
270
312
|
crack (>= 0.3.2)
|
271
313
|
hashdiff (>= 0.4.0, < 2.0.0)
|
272
|
-
websocket-driver (0.7.
|
314
|
+
websocket-driver (0.7.5)
|
273
315
|
websocket-extensions (>= 0.1.0)
|
274
316
|
websocket-extensions (0.1.5)
|
275
317
|
zeitwerk (2.4.2)
|