cloudtasker 0.12.0 → 0.13.rc2

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.
Files changed (58) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/lint_rubocop.yml +20 -0
  3. data/.github/workflows/{test.yml → test_ruby_2.5_2.6.yml} +12 -13
  4. data/.github/workflows/test_ruby_2.7.yml +44 -0
  5. data/.github/workflows/test_ruby_3.x.yml +43 -0
  6. data/.gitignore +1 -0
  7. data/.rubocop.yml +5 -0
  8. data/Appraisals +52 -8
  9. data/CHANGELOG.md +51 -1
  10. data/README.md +14 -3
  11. data/Rakefile +0 -6
  12. data/app/controllers/cloudtasker/worker_controller.rb +4 -1
  13. data/cloudtasker.gemspec +1 -6
  14. data/docs/CRON_JOBS.md +39 -0
  15. data/gemfiles/google_cloud_tasks_1.0.gemfile +2 -1
  16. data/gemfiles/google_cloud_tasks_1.1.gemfile +2 -1
  17. data/gemfiles/google_cloud_tasks_1.2.gemfile +2 -1
  18. data/gemfiles/google_cloud_tasks_1.3.gemfile +2 -1
  19. data/gemfiles/google_cloud_tasks_1.4.gemfile +8 -0
  20. data/gemfiles/google_cloud_tasks_1.5.gemfile +8 -0
  21. data/gemfiles/google_cloud_tasks_2.0.gemfile +8 -0
  22. data/gemfiles/google_cloud_tasks_2.1.gemfile +8 -0
  23. data/gemfiles/rails_5.2.gemfile +1 -0
  24. data/gemfiles/rails_6.0.gemfile +1 -0
  25. data/gemfiles/{semantic_logger_4.7.gemfile → rails_6.1.gemfile} +2 -1
  26. data/gemfiles/rails_7.0.gemfile +8 -0
  27. data/gemfiles/semantic_logger_3.4.gemfile +1 -0
  28. data/gemfiles/semantic_logger_4.6.gemfile +1 -0
  29. data/gemfiles/semantic_logger_4.7.0.gemfile +1 -0
  30. data/gemfiles/semantic_logger_4.7.2.gemfile +1 -0
  31. data/lib/cloudtasker/backend/{google_cloud_task.rb → google_cloud_task_v1.rb} +15 -11
  32. data/lib/cloudtasker/backend/google_cloud_task_v2.rb +210 -0
  33. data/lib/cloudtasker/backend/memory_task.rb +1 -1
  34. data/lib/cloudtasker/backend/redis_task.rb +7 -3
  35. data/lib/cloudtasker/cloud_task.rb +43 -5
  36. data/lib/cloudtasker/cron/schedule.rb +7 -7
  37. data/lib/cloudtasker/local_server.rb +1 -1
  38. data/lib/cloudtasker/redis_client.rb +39 -14
  39. data/lib/cloudtasker/unique_job/job.rb +3 -2
  40. data/lib/cloudtasker/unique_job/middleware/client.rb +2 -1
  41. data/lib/cloudtasker/version.rb +1 -1
  42. data/lib/cloudtasker/worker.rb +4 -4
  43. data/lib/cloudtasker/worker_wrapper.rb +1 -1
  44. data/lib/cloudtasker.rb +1 -0
  45. data/lib/tasks/setup_queue.rake +2 -2
  46. metadata +21 -80
  47. data/app/controllers/cloudtasker/application_controller.rb +0 -8
  48. data/gemfiles/google_cloud_tasks_1.0.gemfile.lock +0 -341
  49. data/gemfiles/google_cloud_tasks_1.1.gemfile.lock +0 -341
  50. data/gemfiles/google_cloud_tasks_1.2.gemfile.lock +0 -341
  51. data/gemfiles/google_cloud_tasks_1.3.gemfile.lock +0 -342
  52. data/gemfiles/rails_4.0.gemfile +0 -10
  53. data/gemfiles/rails_4.1.gemfile +0 -9
  54. data/gemfiles/rails_4.2.gemfile +0 -9
  55. data/gemfiles/rails_5.0.gemfile +0 -9
  56. data/gemfiles/rails_5.1.gemfile +0 -9
  57. data/gemfiles/rails_5.2.gemfile.lock +0 -326
  58. data/gemfiles/rails_6.0.gemfile.lock +0 -342
@@ -1,341 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- cloudtasker (0.12.0)
5
- activesupport
6
- connection_pool
7
- fugit
8
- google-cloud-tasks (~> 1.0)
9
- jwt
10
- redis
11
- retriable
12
-
13
- GEM
14
- remote: https://rubygems.org/
15
- specs:
16
- actioncable (6.1.4)
17
- actionpack (= 6.1.4)
18
- activesupport (= 6.1.4)
19
- nio4r (~> 2.0)
20
- websocket-driver (>= 0.6.1)
21
- actionmailbox (6.1.4)
22
- actionpack (= 6.1.4)
23
- activejob (= 6.1.4)
24
- activerecord (= 6.1.4)
25
- activestorage (= 6.1.4)
26
- activesupport (= 6.1.4)
27
- mail (>= 2.7.1)
28
- actionmailer (6.1.4)
29
- actionpack (= 6.1.4)
30
- actionview (= 6.1.4)
31
- activejob (= 6.1.4)
32
- activesupport (= 6.1.4)
33
- mail (~> 2.5, >= 2.5.4)
34
- rails-dom-testing (~> 2.0)
35
- actionpack (6.1.4)
36
- actionview (= 6.1.4)
37
- activesupport (= 6.1.4)
38
- rack (~> 2.0, >= 2.0.9)
39
- rack-test (>= 0.6.3)
40
- rails-dom-testing (~> 2.0)
41
- rails-html-sanitizer (~> 1.0, >= 1.2.0)
42
- actiontext (6.1.4)
43
- actionpack (= 6.1.4)
44
- activerecord (= 6.1.4)
45
- activestorage (= 6.1.4)
46
- activesupport (= 6.1.4)
47
- nokogiri (>= 1.8.5)
48
- actionview (6.1.4)
49
- activesupport (= 6.1.4)
50
- builder (~> 3.1)
51
- erubi (~> 1.4)
52
- rails-dom-testing (~> 2.0)
53
- rails-html-sanitizer (~> 1.1, >= 1.2.0)
54
- activejob (6.1.4)
55
- activesupport (= 6.1.4)
56
- globalid (>= 0.3.6)
57
- activemodel (6.1.4)
58
- activesupport (= 6.1.4)
59
- activerecord (6.1.4)
60
- activemodel (= 6.1.4)
61
- activesupport (= 6.1.4)
62
- activestorage (6.1.4)
63
- actionpack (= 6.1.4)
64
- activejob (= 6.1.4)
65
- activerecord (= 6.1.4)
66
- activesupport (= 6.1.4)
67
- marcel (~> 1.0.0)
68
- mini_mime (>= 1.1.0)
69
- activesupport (6.1.4)
70
- concurrent-ruby (~> 1.0, >= 1.0.2)
71
- i18n (>= 1.6, < 2)
72
- minitest (>= 5.1)
73
- tzinfo (~> 2.0)
74
- zeitwerk (~> 2.3)
75
- addressable (2.8.0)
76
- public_suffix (>= 2.0.2, < 5.0)
77
- appraisal (2.4.1)
78
- bundler
79
- rake
80
- thor (>= 0.14.0)
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)
100
- builder (3.2.4)
101
- concurrent-ruby (1.1.9)
102
- connection_pool (2.2.5)
103
- console (1.13.1)
104
- fiber-local
105
- crack (0.4.5)
106
- rexml
107
- crass (1.0.6)
108
- diff-lcs (1.4.4)
109
- erubi (1.10.0)
110
- et-orbi (1.2.4)
111
- tzinfo
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)
117
- faraday-net_http (~> 1.0)
118
- faraday-net_http_persistent (~> 1.1)
119
- faraday-patron (~> 1.0)
120
- faraday-rack (~> 1.0)
121
- multipart-post (>= 1.2, < 3)
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)
126
- faraday-http-cache (2.2.0)
127
- faraday (>= 0.8)
128
- faraday-httpclient (1.0.1)
129
- faraday-net_http (1.0.1)
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)
135
- et-orbi (~> 1.1, >= 1.1.8)
136
- raabro (~> 1.4)
137
- github_changelog_generator (1.16.4)
138
- activesupport
139
- async (>= 1.25.0)
140
- async-http-faraday
141
- faraday-http-cache
142
- multi_json
143
- octokit (~> 4.6)
144
- rainbow (>= 2.2.1)
145
- rake (>= 10.0)
146
- globalid (0.5.2)
147
- activesupport (>= 5.0)
148
- google-cloud-tasks (1.1.0)
149
- google-gax (~> 1.7)
150
- googleapis-common-protos (>= 1.3.9, < 2.0)
151
- grpc-google-iam-v1 (~> 0.6.9)
152
- google-gax (1.8.1)
153
- google-protobuf (~> 3.9)
154
- googleapis-common-protos (>= 1.3.9, < 2.0)
155
- googleauth (~> 0.9)
156
- grpc (~> 1.24)
157
- rly (~> 0.2.3)
158
- google-protobuf (3.17.3)
159
- googleapis-common-protos (1.3.11)
160
- google-protobuf (~> 3.14)
161
- googleapis-common-protos-types (>= 1.0.6, < 2.0)
162
- grpc (~> 1.27)
163
- googleapis-common-protos-types (1.1.0)
164
- google-protobuf (~> 3.14)
165
- googleauth (0.17.0)
166
- faraday (>= 0.17.3, < 2.0)
167
- jwt (>= 1.4, < 3.0)
168
- memoist (~> 0.16)
169
- multi_json (~> 1.11)
170
- os (>= 0.9, < 2.0)
171
- signet (~> 0.14)
172
- grpc (1.38.0)
173
- google-protobuf (~> 3.15)
174
- googleapis-common-protos-types (~> 1.0)
175
- grpc-google-iam-v1 (0.6.11)
176
- google-protobuf (~> 3.14)
177
- googleapis-common-protos (>= 1.3.11, < 2.0)
178
- grpc (~> 1.27)
179
- hashdiff (1.0.1)
180
- i18n (1.8.10)
181
- concurrent-ruby (~> 1.0)
182
- jaro_winkler (1.5.4)
183
- jwt (2.2.3)
184
- loofah (2.12.0)
185
- crass (~> 1.0.2)
186
- nokogiri (>= 1.5.9)
187
- mail (2.7.1)
188
- mini_mime (>= 0.1.1)
189
- marcel (1.0.1)
190
- memoist (0.16.2)
191
- method_source (1.0.0)
192
- mini_mime (1.1.0)
193
- mini_portile2 (2.6.1)
194
- minitest (5.14.4)
195
- multi_json (1.15.0)
196
- multipart-post (2.1.1)
197
- nio4r (2.5.8)
198
- nokogiri (1.12.3)
199
- mini_portile2 (~> 2.6.1)
200
- racc (~> 1.4)
201
- octokit (4.21.0)
202
- faraday (>= 0.9)
203
- sawyer (~> 0.8.0, >= 0.5.3)
204
- os (1.1.1)
205
- parallel (1.20.1)
206
- parser (3.0.2.0)
207
- ast (~> 2.4.1)
208
- protocol-hpack (1.4.2)
209
- protocol-http (0.22.5)
210
- protocol-http1 (0.14.1)
211
- protocol-http (~> 0.22)
212
- protocol-http2 (0.14.2)
213
- protocol-hpack (~> 1.4)
214
- protocol-http (~> 0.18)
215
- public_suffix (4.0.6)
216
- raabro (1.4.0)
217
- racc (1.5.2)
218
- rack (2.2.3)
219
- rack-test (1.1.0)
220
- rack (>= 1.0, < 3)
221
- rails (6.1.4)
222
- actioncable (= 6.1.4)
223
- actionmailbox (= 6.1.4)
224
- actionmailer (= 6.1.4)
225
- actionpack (= 6.1.4)
226
- actiontext (= 6.1.4)
227
- actionview (= 6.1.4)
228
- activejob (= 6.1.4)
229
- activemodel (= 6.1.4)
230
- activerecord (= 6.1.4)
231
- activestorage (= 6.1.4)
232
- activesupport (= 6.1.4)
233
- bundler (>= 1.15.0)
234
- railties (= 6.1.4)
235
- sprockets-rails (>= 2.0.0)
236
- rails-dom-testing (2.0.3)
237
- activesupport (>= 4.2.0)
238
- nokogiri (>= 1.6)
239
- rails-html-sanitizer (1.4.1)
240
- loofah (~> 2.3)
241
- railties (6.1.4)
242
- actionpack (= 6.1.4)
243
- activesupport (= 6.1.4)
244
- method_source
245
- rake (>= 0.13)
246
- thor (~> 1.0)
247
- rainbow (3.0.0)
248
- rake (13.0.6)
249
- redis (4.4.0)
250
- retriable (3.1.2)
251
- rexml (3.2.5)
252
- rly (0.2.3)
253
- rspec (3.10.0)
254
- rspec-core (~> 3.10.0)
255
- rspec-expectations (~> 3.10.0)
256
- rspec-mocks (~> 3.10.0)
257
- rspec-core (3.10.1)
258
- rspec-support (~> 3.10.0)
259
- rspec-expectations (3.10.1)
260
- diff-lcs (>= 1.2.0, < 2.0)
261
- rspec-support (~> 3.10.0)
262
- rspec-json_expectations (2.2.0)
263
- rspec-mocks (3.10.2)
264
- diff-lcs (>= 1.2.0, < 2.0)
265
- rspec-support (~> 3.10.0)
266
- rspec-rails (5.0.2)
267
- actionpack (>= 5.2)
268
- activesupport (>= 5.2)
269
- railties (>= 5.2)
270
- rspec-core (~> 3.10)
271
- rspec-expectations (~> 3.10)
272
- rspec-mocks (~> 3.10)
273
- rspec-support (~> 3.10)
274
- rspec-support (3.10.2)
275
- rubocop (0.76.0)
276
- jaro_winkler (~> 1.5.1)
277
- parallel (~> 1.10)
278
- parser (>= 2.6)
279
- rainbow (>= 2.2.2, < 4.0)
280
- ruby-progressbar (~> 1.7)
281
- unicode-display_width (>= 1.4.0, < 1.7)
282
- rubocop-rspec (1.37.0)
283
- rubocop (>= 0.68.1)
284
- ruby-progressbar (1.11.0)
285
- ruby2_keywords (0.0.5)
286
- sawyer (0.8.2)
287
- addressable (>= 2.3.5)
288
- faraday (> 0.8, < 2.0)
289
- semantic_logger (4.8.2)
290
- concurrent-ruby (~> 1.0)
291
- signet (0.15.0)
292
- addressable (~> 2.3)
293
- faraday (>= 0.17.3, < 2.0)
294
- jwt (>= 1.5, < 3.0)
295
- multi_json (~> 1.10)
296
- sprockets (4.0.2)
297
- concurrent-ruby (~> 1.0)
298
- rack (> 1, < 3)
299
- sprockets-rails (3.2.2)
300
- actionpack (>= 4.0)
301
- activesupport (>= 4.0)
302
- sprockets (>= 3.0.0)
303
- sqlite3 (1.4.2)
304
- thor (1.1.0)
305
- timecop (0.9.4)
306
- timers (4.3.3)
307
- tzinfo (2.0.4)
308
- concurrent-ruby (~> 1.0)
309
- unicode-display_width (1.6.1)
310
- webmock (3.14.0)
311
- addressable (>= 2.8.0)
312
- crack (>= 0.3.2)
313
- hashdiff (>= 0.4.0, < 2.0.0)
314
- websocket-driver (0.7.5)
315
- websocket-extensions (>= 0.1.0)
316
- websocket-extensions (0.1.5)
317
- zeitwerk (2.4.2)
318
-
319
- PLATFORMS
320
- ruby
321
-
322
- DEPENDENCIES
323
- appraisal
324
- bundler (~> 2.0)
325
- cloudtasker!
326
- github_changelog_generator
327
- google-cloud-tasks (= 1.1)
328
- rails
329
- rake (>= 12.3.3)
330
- rspec (~> 3.0)
331
- rspec-json_expectations (~> 2.2)
332
- rspec-rails
333
- rubocop (= 0.76.0)
334
- rubocop-rspec (= 1.37.0)
335
- semantic_logger
336
- sqlite3
337
- timecop
338
- webmock
339
-
340
- BUNDLED WITH
341
- 2.2.9
@@ -1,341 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- cloudtasker (0.12.0)
5
- activesupport
6
- connection_pool
7
- fugit
8
- google-cloud-tasks (~> 1.0)
9
- jwt
10
- redis
11
- retriable
12
-
13
- GEM
14
- remote: https://rubygems.org/
15
- specs:
16
- actioncable (6.1.4)
17
- actionpack (= 6.1.4)
18
- activesupport (= 6.1.4)
19
- nio4r (~> 2.0)
20
- websocket-driver (>= 0.6.1)
21
- actionmailbox (6.1.4)
22
- actionpack (= 6.1.4)
23
- activejob (= 6.1.4)
24
- activerecord (= 6.1.4)
25
- activestorage (= 6.1.4)
26
- activesupport (= 6.1.4)
27
- mail (>= 2.7.1)
28
- actionmailer (6.1.4)
29
- actionpack (= 6.1.4)
30
- actionview (= 6.1.4)
31
- activejob (= 6.1.4)
32
- activesupport (= 6.1.4)
33
- mail (~> 2.5, >= 2.5.4)
34
- rails-dom-testing (~> 2.0)
35
- actionpack (6.1.4)
36
- actionview (= 6.1.4)
37
- activesupport (= 6.1.4)
38
- rack (~> 2.0, >= 2.0.9)
39
- rack-test (>= 0.6.3)
40
- rails-dom-testing (~> 2.0)
41
- rails-html-sanitizer (~> 1.0, >= 1.2.0)
42
- actiontext (6.1.4)
43
- actionpack (= 6.1.4)
44
- activerecord (= 6.1.4)
45
- activestorage (= 6.1.4)
46
- activesupport (= 6.1.4)
47
- nokogiri (>= 1.8.5)
48
- actionview (6.1.4)
49
- activesupport (= 6.1.4)
50
- builder (~> 3.1)
51
- erubi (~> 1.4)
52
- rails-dom-testing (~> 2.0)
53
- rails-html-sanitizer (~> 1.1, >= 1.2.0)
54
- activejob (6.1.4)
55
- activesupport (= 6.1.4)
56
- globalid (>= 0.3.6)
57
- activemodel (6.1.4)
58
- activesupport (= 6.1.4)
59
- activerecord (6.1.4)
60
- activemodel (= 6.1.4)
61
- activesupport (= 6.1.4)
62
- activestorage (6.1.4)
63
- actionpack (= 6.1.4)
64
- activejob (= 6.1.4)
65
- activerecord (= 6.1.4)
66
- activesupport (= 6.1.4)
67
- marcel (~> 1.0.0)
68
- mini_mime (>= 1.1.0)
69
- activesupport (6.1.4)
70
- concurrent-ruby (~> 1.0, >= 1.0.2)
71
- i18n (>= 1.6, < 2)
72
- minitest (>= 5.1)
73
- tzinfo (~> 2.0)
74
- zeitwerk (~> 2.3)
75
- addressable (2.8.0)
76
- public_suffix (>= 2.0.2, < 5.0)
77
- appraisal (2.4.1)
78
- bundler
79
- rake
80
- thor (>= 0.14.0)
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)
100
- builder (3.2.4)
101
- concurrent-ruby (1.1.9)
102
- connection_pool (2.2.5)
103
- console (1.13.1)
104
- fiber-local
105
- crack (0.4.5)
106
- rexml
107
- crass (1.0.6)
108
- diff-lcs (1.4.4)
109
- erubi (1.10.0)
110
- et-orbi (1.2.4)
111
- tzinfo
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)
117
- faraday-net_http (~> 1.0)
118
- faraday-net_http_persistent (~> 1.1)
119
- faraday-patron (~> 1.0)
120
- faraday-rack (~> 1.0)
121
- multipart-post (>= 1.2, < 3)
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)
126
- faraday-http-cache (2.2.0)
127
- faraday (>= 0.8)
128
- faraday-httpclient (1.0.1)
129
- faraday-net_http (1.0.1)
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)
135
- et-orbi (~> 1.1, >= 1.1.8)
136
- raabro (~> 1.4)
137
- github_changelog_generator (1.16.4)
138
- activesupport
139
- async (>= 1.25.0)
140
- async-http-faraday
141
- faraday-http-cache
142
- multi_json
143
- octokit (~> 4.6)
144
- rainbow (>= 2.2.1)
145
- rake (>= 10.0)
146
- globalid (0.5.2)
147
- activesupport (>= 5.0)
148
- google-cloud-tasks (1.2.0)
149
- google-gax (~> 1.8)
150
- googleapis-common-protos (>= 1.3.9, < 2.0)
151
- grpc-google-iam-v1 (~> 0.6.9)
152
- google-gax (1.8.1)
153
- google-protobuf (~> 3.9)
154
- googleapis-common-protos (>= 1.3.9, < 2.0)
155
- googleauth (~> 0.9)
156
- grpc (~> 1.24)
157
- rly (~> 0.2.3)
158
- google-protobuf (3.17.3)
159
- googleapis-common-protos (1.3.11)
160
- google-protobuf (~> 3.14)
161
- googleapis-common-protos-types (>= 1.0.6, < 2.0)
162
- grpc (~> 1.27)
163
- googleapis-common-protos-types (1.1.0)
164
- google-protobuf (~> 3.14)
165
- googleauth (0.17.0)
166
- faraday (>= 0.17.3, < 2.0)
167
- jwt (>= 1.4, < 3.0)
168
- memoist (~> 0.16)
169
- multi_json (~> 1.11)
170
- os (>= 0.9, < 2.0)
171
- signet (~> 0.14)
172
- grpc (1.38.0)
173
- google-protobuf (~> 3.15)
174
- googleapis-common-protos-types (~> 1.0)
175
- grpc-google-iam-v1 (0.6.11)
176
- google-protobuf (~> 3.14)
177
- googleapis-common-protos (>= 1.3.11, < 2.0)
178
- grpc (~> 1.27)
179
- hashdiff (1.0.1)
180
- i18n (1.8.10)
181
- concurrent-ruby (~> 1.0)
182
- jaro_winkler (1.5.4)
183
- jwt (2.2.3)
184
- loofah (2.12.0)
185
- crass (~> 1.0.2)
186
- nokogiri (>= 1.5.9)
187
- mail (2.7.1)
188
- mini_mime (>= 0.1.1)
189
- marcel (1.0.1)
190
- memoist (0.16.2)
191
- method_source (1.0.0)
192
- mini_mime (1.1.0)
193
- mini_portile2 (2.6.1)
194
- minitest (5.14.4)
195
- multi_json (1.15.0)
196
- multipart-post (2.1.1)
197
- nio4r (2.5.8)
198
- nokogiri (1.12.3)
199
- mini_portile2 (~> 2.6.1)
200
- racc (~> 1.4)
201
- octokit (4.21.0)
202
- faraday (>= 0.9)
203
- sawyer (~> 0.8.0, >= 0.5.3)
204
- os (1.1.1)
205
- parallel (1.20.1)
206
- parser (3.0.2.0)
207
- ast (~> 2.4.1)
208
- protocol-hpack (1.4.2)
209
- protocol-http (0.22.5)
210
- protocol-http1 (0.14.1)
211
- protocol-http (~> 0.22)
212
- protocol-http2 (0.14.2)
213
- protocol-hpack (~> 1.4)
214
- protocol-http (~> 0.18)
215
- public_suffix (4.0.6)
216
- raabro (1.4.0)
217
- racc (1.5.2)
218
- rack (2.2.3)
219
- rack-test (1.1.0)
220
- rack (>= 1.0, < 3)
221
- rails (6.1.4)
222
- actioncable (= 6.1.4)
223
- actionmailbox (= 6.1.4)
224
- actionmailer (= 6.1.4)
225
- actionpack (= 6.1.4)
226
- actiontext (= 6.1.4)
227
- actionview (= 6.1.4)
228
- activejob (= 6.1.4)
229
- activemodel (= 6.1.4)
230
- activerecord (= 6.1.4)
231
- activestorage (= 6.1.4)
232
- activesupport (= 6.1.4)
233
- bundler (>= 1.15.0)
234
- railties (= 6.1.4)
235
- sprockets-rails (>= 2.0.0)
236
- rails-dom-testing (2.0.3)
237
- activesupport (>= 4.2.0)
238
- nokogiri (>= 1.6)
239
- rails-html-sanitizer (1.4.1)
240
- loofah (~> 2.3)
241
- railties (6.1.4)
242
- actionpack (= 6.1.4)
243
- activesupport (= 6.1.4)
244
- method_source
245
- rake (>= 0.13)
246
- thor (~> 1.0)
247
- rainbow (3.0.0)
248
- rake (13.0.6)
249
- redis (4.4.0)
250
- retriable (3.1.2)
251
- rexml (3.2.5)
252
- rly (0.2.3)
253
- rspec (3.10.0)
254
- rspec-core (~> 3.10.0)
255
- rspec-expectations (~> 3.10.0)
256
- rspec-mocks (~> 3.10.0)
257
- rspec-core (3.10.1)
258
- rspec-support (~> 3.10.0)
259
- rspec-expectations (3.10.1)
260
- diff-lcs (>= 1.2.0, < 2.0)
261
- rspec-support (~> 3.10.0)
262
- rspec-json_expectations (2.2.0)
263
- rspec-mocks (3.10.2)
264
- diff-lcs (>= 1.2.0, < 2.0)
265
- rspec-support (~> 3.10.0)
266
- rspec-rails (5.0.2)
267
- actionpack (>= 5.2)
268
- activesupport (>= 5.2)
269
- railties (>= 5.2)
270
- rspec-core (~> 3.10)
271
- rspec-expectations (~> 3.10)
272
- rspec-mocks (~> 3.10)
273
- rspec-support (~> 3.10)
274
- rspec-support (3.10.2)
275
- rubocop (0.76.0)
276
- jaro_winkler (~> 1.5.1)
277
- parallel (~> 1.10)
278
- parser (>= 2.6)
279
- rainbow (>= 2.2.2, < 4.0)
280
- ruby-progressbar (~> 1.7)
281
- unicode-display_width (>= 1.4.0, < 1.7)
282
- rubocop-rspec (1.37.0)
283
- rubocop (>= 0.68.1)
284
- ruby-progressbar (1.11.0)
285
- ruby2_keywords (0.0.5)
286
- sawyer (0.8.2)
287
- addressable (>= 2.3.5)
288
- faraday (> 0.8, < 2.0)
289
- semantic_logger (4.8.2)
290
- concurrent-ruby (~> 1.0)
291
- signet (0.15.0)
292
- addressable (~> 2.3)
293
- faraday (>= 0.17.3, < 2.0)
294
- jwt (>= 1.5, < 3.0)
295
- multi_json (~> 1.10)
296
- sprockets (4.0.2)
297
- concurrent-ruby (~> 1.0)
298
- rack (> 1, < 3)
299
- sprockets-rails (3.2.2)
300
- actionpack (>= 4.0)
301
- activesupport (>= 4.0)
302
- sprockets (>= 3.0.0)
303
- sqlite3 (1.4.2)
304
- thor (1.1.0)
305
- timecop (0.9.4)
306
- timers (4.3.3)
307
- tzinfo (2.0.4)
308
- concurrent-ruby (~> 1.0)
309
- unicode-display_width (1.6.1)
310
- webmock (3.14.0)
311
- addressable (>= 2.8.0)
312
- crack (>= 0.3.2)
313
- hashdiff (>= 0.4.0, < 2.0.0)
314
- websocket-driver (0.7.5)
315
- websocket-extensions (>= 0.1.0)
316
- websocket-extensions (0.1.5)
317
- zeitwerk (2.4.2)
318
-
319
- PLATFORMS
320
- ruby
321
-
322
- DEPENDENCIES
323
- appraisal
324
- bundler (~> 2.0)
325
- cloudtasker!
326
- github_changelog_generator
327
- google-cloud-tasks (= 1.2)
328
- rails
329
- rake (>= 12.3.3)
330
- rspec (~> 3.0)
331
- rspec-json_expectations (~> 2.2)
332
- rspec-rails
333
- rubocop (= 0.76.0)
334
- rubocop-rspec (= 1.37.0)
335
- semantic_logger
336
- sqlite3
337
- timecop
338
- webmock
339
-
340
- BUNDLED WITH
341
- 2.2.9