cloudtasker 0.12.2 → 0.13.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.
Files changed (54) 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} +11 -8
  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 +10 -0
  10. data/README.md +14 -3
  11. data/Rakefile +0 -6
  12. data/cloudtasker.gemspec +1 -6
  13. data/docs/CRON_JOBS.md +2 -2
  14. data/gemfiles/google_cloud_tasks_1.0.gemfile +2 -1
  15. data/gemfiles/google_cloud_tasks_1.1.gemfile +2 -1
  16. data/gemfiles/google_cloud_tasks_1.2.gemfile +2 -1
  17. data/gemfiles/google_cloud_tasks_1.3.gemfile +2 -1
  18. data/gemfiles/google_cloud_tasks_1.4.gemfile +8 -0
  19. data/gemfiles/google_cloud_tasks_1.5.gemfile +8 -0
  20. data/gemfiles/google_cloud_tasks_2.0.gemfile +8 -0
  21. data/gemfiles/google_cloud_tasks_2.1.gemfile +8 -0
  22. data/gemfiles/rails_5.2.gemfile +1 -0
  23. data/gemfiles/rails_6.0.gemfile +1 -0
  24. data/gemfiles/{semantic_logger_4.7.gemfile → rails_6.1.gemfile} +2 -1
  25. data/gemfiles/rails_7.0.gemfile +8 -0
  26. data/gemfiles/semantic_logger_3.4.gemfile +1 -0
  27. data/gemfiles/semantic_logger_4.6.gemfile +1 -0
  28. data/gemfiles/semantic_logger_4.7.0.gemfile +1 -0
  29. data/gemfiles/semantic_logger_4.7.2.gemfile +1 -0
  30. data/lib/cloudtasker/backend/{google_cloud_task.rb → google_cloud_task_v1.rb} +15 -11
  31. data/lib/cloudtasker/backend/google_cloud_task_v2.rb +210 -0
  32. data/lib/cloudtasker/backend/memory_task.rb +1 -1
  33. data/lib/cloudtasker/backend/redis_task.rb +7 -3
  34. data/lib/cloudtasker/cloud_task.rb +43 -5
  35. data/lib/cloudtasker/cron/schedule.rb +7 -7
  36. data/lib/cloudtasker/redis_client.rb +39 -14
  37. data/lib/cloudtasker/unique_job/job.rb +3 -2
  38. data/lib/cloudtasker/unique_job/middleware/client.rb +2 -1
  39. data/lib/cloudtasker/version.rb +1 -1
  40. data/lib/cloudtasker/worker.rb +3 -3
  41. data/lib/cloudtasker/worker_wrapper.rb +1 -1
  42. data/lib/tasks/setup_queue.rake +2 -2
  43. metadata +19 -77
  44. data/gemfiles/google_cloud_tasks_1.0.gemfile.lock +0 -342
  45. data/gemfiles/google_cloud_tasks_1.1.gemfile.lock +0 -342
  46. data/gemfiles/google_cloud_tasks_1.2.gemfile.lock +0 -342
  47. data/gemfiles/google_cloud_tasks_1.3.gemfile.lock +0 -343
  48. data/gemfiles/rails_4.0.gemfile +0 -10
  49. data/gemfiles/rails_4.1.gemfile +0 -9
  50. data/gemfiles/rails_4.2.gemfile +0 -9
  51. data/gemfiles/rails_5.0.gemfile +0 -9
  52. data/gemfiles/rails_5.1.gemfile +0 -9
  53. data/gemfiles/rails_5.2.gemfile.lock +0 -327
  54. data/gemfiles/rails_6.0.gemfile.lock +0 -343
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cloudtasker
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.2
4
+ version: 0.13.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Arnaud Lachaume
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-12-31 00:00:00.000000000 Z
11
+ date: 2022-03-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -56,16 +56,16 @@ dependencies:
56
56
  name: google-cloud-tasks
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - "~>"
59
+ - - ">="
60
60
  - !ruby/object:Gem::Version
61
- version: '1.0'
61
+ version: '0'
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - "~>"
66
+ - - ">="
67
67
  - !ruby/object:Gem::Version
68
- version: '1.0'
68
+ version: '0'
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: jwt
71
71
  requirement: !ruby/object:Gem::Requirement
@@ -136,20 +136,6 @@ dependencies:
136
136
  - - "~>"
137
137
  - !ruby/object:Gem::Version
138
138
  version: '2.0'
139
- - !ruby/object:Gem::Dependency
140
- name: github_changelog_generator
141
- requirement: !ruby/object:Gem::Requirement
142
- requirements:
143
- - - ">="
144
- - !ruby/object:Gem::Version
145
- version: '0'
146
- type: :development
147
- prerelease: false
148
- version_requirements: !ruby/object:Gem::Requirement
149
- requirements:
150
- - - ">="
151
- - !ruby/object:Gem::Version
152
- version: '0'
153
139
  - !ruby/object:Gem::Dependency
154
140
  name: rake
155
141
  requirement: !ruby/object:Gem::Requirement
@@ -262,48 +248,6 @@ dependencies:
262
248
  - - ">="
263
249
  - !ruby/object:Gem::Version
264
250
  version: '0'
265
- - !ruby/object:Gem::Dependency
266
- name: rails
267
- requirement: !ruby/object:Gem::Requirement
268
- requirements:
269
- - - ">="
270
- - !ruby/object:Gem::Version
271
- version: '0'
272
- type: :development
273
- prerelease: false
274
- version_requirements: !ruby/object:Gem::Requirement
275
- requirements:
276
- - - ">="
277
- - !ruby/object:Gem::Version
278
- version: '0'
279
- - !ruby/object:Gem::Dependency
280
- name: rspec-rails
281
- requirement: !ruby/object:Gem::Requirement
282
- requirements:
283
- - - ">="
284
- - !ruby/object:Gem::Version
285
- version: '0'
286
- type: :development
287
- prerelease: false
288
- version_requirements: !ruby/object:Gem::Requirement
289
- requirements:
290
- - - ">="
291
- - !ruby/object:Gem::Version
292
- version: '0'
293
- - !ruby/object:Gem::Dependency
294
- name: sqlite3
295
- requirement: !ruby/object:Gem::Requirement
296
- requirements:
297
- - - ">="
298
- - !ruby/object:Gem::Version
299
- version: '0'
300
- type: :development
301
- prerelease: false
302
- version_requirements: !ruby/object:Gem::Requirement
303
- requirements:
304
- - - ">="
305
- - !ruby/object:Gem::Version
306
- version: '0'
307
251
  description: Background jobs for Ruby using Google Cloud Tasks (beta)
308
252
  email:
309
253
  - arnaud.lachaume@keypup.io
@@ -312,7 +256,10 @@ executables:
312
256
  extensions: []
313
257
  extra_rdoc_files: []
314
258
  files:
315
- - ".github/workflows/test.yml"
259
+ - ".github/workflows/lint_rubocop.yml"
260
+ - ".github/workflows/test_ruby_2.5_2.6.yml"
261
+ - ".github/workflows/test_ruby_2.7.yml"
262
+ - ".github/workflows/test_ruby_3.x.yml"
316
263
  - ".gitignore"
317
264
  - ".rspec"
318
265
  - ".rubocop.yml"
@@ -335,32 +282,27 @@ files:
335
282
  - exe/cloudtasker
336
283
  - gemfiles/.bundle/config
337
284
  - gemfiles/google_cloud_tasks_1.0.gemfile
338
- - gemfiles/google_cloud_tasks_1.0.gemfile.lock
339
285
  - gemfiles/google_cloud_tasks_1.1.gemfile
340
- - gemfiles/google_cloud_tasks_1.1.gemfile.lock
341
286
  - gemfiles/google_cloud_tasks_1.2.gemfile
342
- - gemfiles/google_cloud_tasks_1.2.gemfile.lock
343
287
  - gemfiles/google_cloud_tasks_1.3.gemfile
344
- - gemfiles/google_cloud_tasks_1.3.gemfile.lock
345
- - gemfiles/rails_4.0.gemfile
346
- - gemfiles/rails_4.1.gemfile
347
- - gemfiles/rails_4.2.gemfile
348
- - gemfiles/rails_5.0.gemfile
349
- - gemfiles/rails_5.1.gemfile
288
+ - gemfiles/google_cloud_tasks_1.4.gemfile
289
+ - gemfiles/google_cloud_tasks_1.5.gemfile
290
+ - gemfiles/google_cloud_tasks_2.0.gemfile
291
+ - gemfiles/google_cloud_tasks_2.1.gemfile
350
292
  - gemfiles/rails_5.2.gemfile
351
- - gemfiles/rails_5.2.gemfile.lock
352
293
  - gemfiles/rails_6.0.gemfile
353
- - gemfiles/rails_6.0.gemfile.lock
294
+ - gemfiles/rails_6.1.gemfile
295
+ - gemfiles/rails_7.0.gemfile
354
296
  - gemfiles/semantic_logger_3.4.gemfile
355
297
  - gemfiles/semantic_logger_4.6.gemfile
356
298
  - gemfiles/semantic_logger_4.7.0.gemfile
357
299
  - gemfiles/semantic_logger_4.7.2.gemfile
358
- - gemfiles/semantic_logger_4.7.gemfile
359
300
  - lib/active_job/queue_adapters/cloudtasker_adapter.rb
360
301
  - lib/cloudtasker.rb
361
302
  - lib/cloudtasker/authentication_error.rb
362
303
  - lib/cloudtasker/authenticator.rb
363
- - lib/cloudtasker/backend/google_cloud_task.rb
304
+ - lib/cloudtasker/backend/google_cloud_task_v1.rb
305
+ - lib/cloudtasker/backend/google_cloud_task_v2.rb
364
306
  - lib/cloudtasker/backend/memory_task.rb
365
307
  - lib/cloudtasker/backend/redis_task.rb
366
308
  - lib/cloudtasker/batch.rb
@@ -430,7 +372,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
430
372
  - !ruby/object:Gem::Version
431
373
  version: '0'
432
374
  requirements: []
433
- rubygems_version: 3.0.0
375
+ rubygems_version: 3.1.6
434
376
  signing_key:
435
377
  specification_version: 4
436
378
  summary: Background jobs for Ruby using Google Cloud Tasks (beta)
@@ -1,342 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- cloudtasker (0.12.2)
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.4)
17
- actionpack (= 6.1.4.4)
18
- activesupport (= 6.1.4.4)
19
- nio4r (~> 2.0)
20
- websocket-driver (>= 0.6.1)
21
- actionmailbox (6.1.4.4)
22
- actionpack (= 6.1.4.4)
23
- activejob (= 6.1.4.4)
24
- activerecord (= 6.1.4.4)
25
- activestorage (= 6.1.4.4)
26
- activesupport (= 6.1.4.4)
27
- mail (>= 2.7.1)
28
- actionmailer (6.1.4.4)
29
- actionpack (= 6.1.4.4)
30
- actionview (= 6.1.4.4)
31
- activejob (= 6.1.4.4)
32
- activesupport (= 6.1.4.4)
33
- mail (~> 2.5, >= 2.5.4)
34
- rails-dom-testing (~> 2.0)
35
- actionpack (6.1.4.4)
36
- actionview (= 6.1.4.4)
37
- activesupport (= 6.1.4.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.4)
43
- actionpack (= 6.1.4.4)
44
- activerecord (= 6.1.4.4)
45
- activestorage (= 6.1.4.4)
46
- activesupport (= 6.1.4.4)
47
- nokogiri (>= 1.8.5)
48
- actionview (6.1.4.4)
49
- activesupport (= 6.1.4.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.4)
55
- activesupport (= 6.1.4.4)
56
- globalid (>= 0.3.6)
57
- activemodel (6.1.4.4)
58
- activesupport (= 6.1.4.4)
59
- activerecord (6.1.4.4)
60
- activemodel (= 6.1.4.4)
61
- activesupport (= 6.1.4.4)
62
- activestorage (6.1.4.4)
63
- actionpack (= 6.1.4.4)
64
- activejob (= 6.1.4.4)
65
- activerecord (= 6.1.4.4)
66
- activesupport (= 6.1.4.4)
67
- marcel (~> 1.0.0)
68
- mini_mime (>= 1.1.0)
69
- activesupport (6.1.4.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.9)
99
- async (>= 1.25)
100
- builder (3.2.4)
101
- concurrent-ruby (1.1.9)
102
- connection_pool (2.2.5)
103
- console (1.14.0)
104
- fiber-local
105
- crack (0.4.5)
106
- rexml
107
- crass (1.0.6)
108
- diff-lcs (1.5.0)
109
- erubi (1.10.0)
110
- et-orbi (1.2.6)
111
- tzinfo
112
- faraday (1.8.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.2)
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 (1.0.0)
147
- activesupport (>= 5.0)
148
- google-cloud-tasks (1.0.0)
149
- google-gax (~> 1.3)
150
- googleapis-common-protos (>= 1.3.9, < 2.0)
151
- grpc-google-iam-v1 (~> 0.6.9)
152
- google-gax (1.8.2)
153
- google-protobuf (~> 3.9)
154
- googleapis-common-protos (>= 1.3.9, < 2.0)
155
- googleapis-common-protos-types (>= 1.0.4, < 2.0)
156
- googleauth (~> 0.9)
157
- grpc (~> 1.24)
158
- rly (~> 0.2.3)
159
- google-protobuf (3.19.1)
160
- googleapis-common-protos (1.3.12)
161
- google-protobuf (~> 3.14)
162
- googleapis-common-protos-types (~> 1.2)
163
- grpc (~> 1.27)
164
- googleapis-common-protos-types (1.3.0)
165
- google-protobuf (~> 3.14)
166
- googleauth (0.17.1)
167
- faraday (>= 0.17.3, < 2.0)
168
- jwt (>= 1.4, < 3.0)
169
- memoist (~> 0.16)
170
- multi_json (~> 1.11)
171
- os (>= 0.9, < 2.0)
172
- signet (~> 0.15)
173
- grpc (1.42.0)
174
- google-protobuf (~> 3.18)
175
- googleapis-common-protos-types (~> 1.0)
176
- grpc-google-iam-v1 (0.6.11)
177
- google-protobuf (~> 3.14)
178
- googleapis-common-protos (>= 1.3.11, < 2.0)
179
- grpc (~> 1.27)
180
- hashdiff (1.0.1)
181
- i18n (1.8.11)
182
- concurrent-ruby (~> 1.0)
183
- jaro_winkler (1.5.4)
184
- jwt (2.3.0)
185
- loofah (2.13.0)
186
- crass (~> 1.0.2)
187
- nokogiri (>= 1.5.9)
188
- mail (2.7.1)
189
- mini_mime (>= 0.1.1)
190
- marcel (1.0.2)
191
- memoist (0.16.2)
192
- method_source (1.0.0)
193
- mini_mime (1.1.2)
194
- mini_portile2 (2.6.1)
195
- minitest (5.15.0)
196
- multi_json (1.15.0)
197
- multipart-post (2.1.1)
198
- nio4r (2.5.8)
199
- nokogiri (1.12.5)
200
- mini_portile2 (~> 2.6.1)
201
- racc (~> 1.4)
202
- octokit (4.21.0)
203
- faraday (>= 0.9)
204
- sawyer (~> 0.8.0, >= 0.5.3)
205
- os (1.1.4)
206
- parallel (1.21.0)
207
- parser (3.0.3.2)
208
- ast (~> 2.4.1)
209
- protocol-hpack (1.4.2)
210
- protocol-http (0.22.5)
211
- protocol-http1 (0.14.2)
212
- protocol-http (~> 0.22)
213
- protocol-http2 (0.14.2)
214
- protocol-hpack (~> 1.4)
215
- protocol-http (~> 0.18)
216
- public_suffix (4.0.6)
217
- raabro (1.4.0)
218
- racc (1.6.0)
219
- rack (2.2.3)
220
- rack-test (1.1.0)
221
- rack (>= 1.0, < 3)
222
- rails (6.1.4.4)
223
- actioncable (= 6.1.4.4)
224
- actionmailbox (= 6.1.4.4)
225
- actionmailer (= 6.1.4.4)
226
- actionpack (= 6.1.4.4)
227
- actiontext (= 6.1.4.4)
228
- actionview (= 6.1.4.4)
229
- activejob (= 6.1.4.4)
230
- activemodel (= 6.1.4.4)
231
- activerecord (= 6.1.4.4)
232
- activestorage (= 6.1.4.4)
233
- activesupport (= 6.1.4.4)
234
- bundler (>= 1.15.0)
235
- railties (= 6.1.4.4)
236
- sprockets-rails (>= 2.0.0)
237
- rails-dom-testing (2.0.3)
238
- activesupport (>= 4.2.0)
239
- nokogiri (>= 1.6)
240
- rails-html-sanitizer (1.4.2)
241
- loofah (~> 2.3)
242
- railties (6.1.4.4)
243
- actionpack (= 6.1.4.4)
244
- activesupport (= 6.1.4.4)
245
- method_source
246
- rake (>= 0.13)
247
- thor (~> 1.0)
248
- rainbow (3.0.0)
249
- rake (13.0.6)
250
- redis (4.5.1)
251
- retriable (3.1.2)
252
- rexml (3.2.5)
253
- rly (0.2.3)
254
- rspec (3.10.0)
255
- rspec-core (~> 3.10.0)
256
- rspec-expectations (~> 3.10.0)
257
- rspec-mocks (~> 3.10.0)
258
- rspec-core (3.10.1)
259
- rspec-support (~> 3.10.0)
260
- rspec-expectations (3.10.1)
261
- diff-lcs (>= 1.2.0, < 2.0)
262
- rspec-support (~> 3.10.0)
263
- rspec-json_expectations (2.2.0)
264
- rspec-mocks (3.10.2)
265
- diff-lcs (>= 1.2.0, < 2.0)
266
- rspec-support (~> 3.10.0)
267
- rspec-rails (5.0.2)
268
- actionpack (>= 5.2)
269
- activesupport (>= 5.2)
270
- railties (>= 5.2)
271
- rspec-core (~> 3.10)
272
- rspec-expectations (~> 3.10)
273
- rspec-mocks (~> 3.10)
274
- rspec-support (~> 3.10)
275
- rspec-support (3.10.3)
276
- rubocop (0.76.0)
277
- jaro_winkler (~> 1.5.1)
278
- parallel (~> 1.10)
279
- parser (>= 2.6)
280
- rainbow (>= 2.2.2, < 4.0)
281
- ruby-progressbar (~> 1.7)
282
- unicode-display_width (>= 1.4.0, < 1.7)
283
- rubocop-rspec (1.37.0)
284
- rubocop (>= 0.68.1)
285
- ruby-progressbar (1.11.0)
286
- ruby2_keywords (0.0.5)
287
- sawyer (0.8.2)
288
- addressable (>= 2.3.5)
289
- faraday (> 0.8, < 2.0)
290
- semantic_logger (4.9.0)
291
- concurrent-ruby (~> 1.0)
292
- signet (0.16.0)
293
- addressable (~> 2.8)
294
- faraday (>= 0.17.3, < 2.0)
295
- jwt (>= 1.5, < 3.0)
296
- multi_json (~> 1.10)
297
- sprockets (4.0.2)
298
- concurrent-ruby (~> 1.0)
299
- rack (> 1, < 3)
300
- sprockets-rails (3.4.2)
301
- actionpack (>= 5.2)
302
- activesupport (>= 5.2)
303
- sprockets (>= 3.0.0)
304
- sqlite3 (1.4.2)
305
- thor (1.1.0)
306
- timecop (0.9.4)
307
- timers (4.3.3)
308
- tzinfo (2.0.4)
309
- concurrent-ruby (~> 1.0)
310
- unicode-display_width (1.6.1)
311
- webmock (3.14.0)
312
- addressable (>= 2.8.0)
313
- crack (>= 0.3.2)
314
- hashdiff (>= 0.4.0, < 2.0.0)
315
- websocket-driver (0.7.5)
316
- websocket-extensions (>= 0.1.0)
317
- websocket-extensions (0.1.5)
318
- zeitwerk (2.5.3)
319
-
320
- PLATFORMS
321
- ruby
322
-
323
- DEPENDENCIES
324
- appraisal
325
- bundler (~> 2.0)
326
- cloudtasker!
327
- github_changelog_generator
328
- google-cloud-tasks (= 1.0)
329
- rails
330
- rake (>= 12.3.3)
331
- rspec (~> 3.0)
332
- rspec-json_expectations (~> 2.2)
333
- rspec-rails
334
- rubocop (= 0.76.0)
335
- rubocop-rspec (= 1.37.0)
336
- semantic_logger
337
- sqlite3
338
- timecop
339
- webmock
340
-
341
- BUNDLED WITH
342
- 2.2.26