cloudtasker 0.2.0 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (57) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +4 -0
  3. data/.rubocop.yml +5 -0
  4. data/.travis.yml +10 -1
  5. data/Appraisals +25 -0
  6. data/Gemfile.lock +10 -4
  7. data/README.md +550 -4
  8. data/app/controllers/cloudtasker/application_controller.rb +2 -0
  9. data/app/controllers/cloudtasker/worker_controller.rb +22 -2
  10. data/cloudtasker.gemspec +4 -3
  11. data/docs/BATCH_JOBS.md +66 -0
  12. data/docs/CRON_JOBS.md +63 -0
  13. data/docs/UNIQUE_JOBS.md +127 -0
  14. data/exe/cloudtasker +15 -0
  15. data/gemfiles/.bundle/config +2 -0
  16. data/gemfiles/google_cloud_tasks_1.0.gemfile +9 -0
  17. data/gemfiles/google_cloud_tasks_1.0.gemfile.lock +263 -0
  18. data/gemfiles/google_cloud_tasks_1.1.gemfile +9 -0
  19. data/gemfiles/google_cloud_tasks_1.1.gemfile.lock +263 -0
  20. data/gemfiles/google_cloud_tasks_1.2.gemfile +9 -0
  21. data/gemfiles/google_cloud_tasks_1.2.gemfile.lock +263 -0
  22. data/gemfiles/google_cloud_tasks_1.3.gemfile +9 -0
  23. data/gemfiles/google_cloud_tasks_1.3.gemfile.lock +264 -0
  24. data/gemfiles/rails_4.0.gemfile +10 -0
  25. data/gemfiles/rails_4.1.gemfile +9 -0
  26. data/gemfiles/rails_4.2.gemfile +9 -0
  27. data/gemfiles/rails_5.0.gemfile +9 -0
  28. data/gemfiles/rails_5.1.gemfile +9 -0
  29. data/gemfiles/rails_5.2.gemfile +9 -0
  30. data/gemfiles/rails_5.2.gemfile.lock +247 -0
  31. data/gemfiles/rails_6.0.gemfile +9 -0
  32. data/gemfiles/rails_6.0.gemfile.lock +263 -0
  33. data/lib/cloudtasker.rb +19 -1
  34. data/lib/cloudtasker/backend/google_cloud_task.rb +139 -0
  35. data/lib/cloudtasker/backend/memory_task.rb +190 -0
  36. data/lib/cloudtasker/backend/redis_task.rb +248 -0
  37. data/lib/cloudtasker/batch/batch_progress.rb +19 -1
  38. data/lib/cloudtasker/batch/job.rb +81 -20
  39. data/lib/cloudtasker/cli.rb +194 -0
  40. data/lib/cloudtasker/cloud_task.rb +91 -0
  41. data/lib/cloudtasker/config.rb +64 -2
  42. data/lib/cloudtasker/cron/job.rb +2 -2
  43. data/lib/cloudtasker/cron/schedule.rb +15 -5
  44. data/lib/cloudtasker/dead_worker_error.rb +6 -0
  45. data/lib/cloudtasker/local_server.rb +74 -0
  46. data/lib/cloudtasker/railtie.rb +10 -0
  47. data/lib/cloudtasker/testing.rb +133 -0
  48. data/lib/cloudtasker/unique_job/job.rb +1 -1
  49. data/lib/cloudtasker/unique_job/lock/base_lock.rb +1 -1
  50. data/lib/cloudtasker/unique_job/lock/until_executed.rb +3 -1
  51. data/lib/cloudtasker/unique_job/lock/while_executing.rb +3 -1
  52. data/lib/cloudtasker/version.rb +1 -1
  53. data/lib/cloudtasker/worker.rb +59 -16
  54. data/lib/cloudtasker/{task.rb → worker_handler.rb} +10 -77
  55. data/lib/cloudtasker/worker_logger.rb +155 -0
  56. data/lib/tasks/setup_queue.rake +10 -0
  57. metadata +55 -6
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ # This file was generated by Appraisal
4
+
5
+ source 'https://rubygems.org'
6
+
7
+ gem 'google-cloud-tasks', '1.1'
8
+
9
+ gemspec path: '../'
@@ -0,0 +1,263 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ cloudtasker (0.2.0)
5
+ activesupport
6
+ fugit
7
+ google-cloud-tasks
8
+ jwt
9
+ redis
10
+
11
+ GEM
12
+ remote: https://rubygems.org/
13
+ specs:
14
+ actioncable (6.0.1)
15
+ actionpack (= 6.0.1)
16
+ nio4r (~> 2.0)
17
+ websocket-driver (>= 0.6.1)
18
+ actionmailbox (6.0.1)
19
+ actionpack (= 6.0.1)
20
+ activejob (= 6.0.1)
21
+ activerecord (= 6.0.1)
22
+ activestorage (= 6.0.1)
23
+ activesupport (= 6.0.1)
24
+ mail (>= 2.7.1)
25
+ actionmailer (6.0.1)
26
+ actionpack (= 6.0.1)
27
+ actionview (= 6.0.1)
28
+ activejob (= 6.0.1)
29
+ mail (~> 2.5, >= 2.5.4)
30
+ rails-dom-testing (~> 2.0)
31
+ actionpack (6.0.1)
32
+ actionview (= 6.0.1)
33
+ activesupport (= 6.0.1)
34
+ rack (~> 2.0)
35
+ rack-test (>= 0.6.3)
36
+ rails-dom-testing (~> 2.0)
37
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
38
+ actiontext (6.0.1)
39
+ actionpack (= 6.0.1)
40
+ activerecord (= 6.0.1)
41
+ activestorage (= 6.0.1)
42
+ activesupport (= 6.0.1)
43
+ nokogiri (>= 1.8.5)
44
+ actionview (6.0.1)
45
+ activesupport (= 6.0.1)
46
+ builder (~> 3.1)
47
+ erubi (~> 1.4)
48
+ rails-dom-testing (~> 2.0)
49
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
50
+ activejob (6.0.1)
51
+ activesupport (= 6.0.1)
52
+ globalid (>= 0.3.6)
53
+ activemodel (6.0.1)
54
+ activesupport (= 6.0.1)
55
+ activerecord (6.0.1)
56
+ activemodel (= 6.0.1)
57
+ activesupport (= 6.0.1)
58
+ activestorage (6.0.1)
59
+ actionpack (= 6.0.1)
60
+ activejob (= 6.0.1)
61
+ activerecord (= 6.0.1)
62
+ marcel (~> 0.3.1)
63
+ activesupport (6.0.1)
64
+ concurrent-ruby (~> 1.0, >= 1.0.2)
65
+ i18n (>= 0.7, < 2)
66
+ minitest (~> 5.1)
67
+ tzinfo (~> 1.1)
68
+ zeitwerk (~> 2.2)
69
+ addressable (2.7.0)
70
+ public_suffix (>= 2.0.2, < 5.0)
71
+ appraisal (2.2.0)
72
+ bundler
73
+ rake
74
+ thor (>= 0.14.0)
75
+ ast (2.4.0)
76
+ builder (3.2.3)
77
+ concurrent-ruby (1.1.5)
78
+ crack (0.4.3)
79
+ safe_yaml (~> 1.0.0)
80
+ crass (1.0.5)
81
+ diff-lcs (1.3)
82
+ erubi (1.9.0)
83
+ et-orbi (1.2.2)
84
+ tzinfo
85
+ faraday (0.17.0)
86
+ multipart-post (>= 1.2, < 3)
87
+ fugit (1.3.3)
88
+ et-orbi (~> 1.1, >= 1.1.8)
89
+ raabro (~> 1.1)
90
+ globalid (0.4.2)
91
+ activesupport (>= 4.2.0)
92
+ google-cloud-tasks (1.1.0)
93
+ google-gax (~> 1.7)
94
+ googleapis-common-protos (>= 1.3.9, < 2.0)
95
+ grpc-google-iam-v1 (~> 0.6.9)
96
+ google-gax (1.8.1)
97
+ google-protobuf (~> 3.9)
98
+ googleapis-common-protos (>= 1.3.9, < 2.0)
99
+ googleauth (~> 0.9)
100
+ grpc (~> 1.24)
101
+ rly (~> 0.2.3)
102
+ google-protobuf (3.10.1)
103
+ googleapis-common-protos (1.3.9)
104
+ google-protobuf (~> 3.0)
105
+ googleapis-common-protos-types (~> 1.0)
106
+ grpc (~> 1.0)
107
+ googleapis-common-protos-types (1.0.4)
108
+ google-protobuf (~> 3.0)
109
+ googleauth (0.10.0)
110
+ faraday (~> 0.12)
111
+ jwt (>= 1.4, < 3.0)
112
+ memoist (~> 0.16)
113
+ multi_json (~> 1.11)
114
+ os (>= 0.9, < 2.0)
115
+ signet (~> 0.12)
116
+ grpc (1.25.0)
117
+ google-protobuf (~> 3.8)
118
+ googleapis-common-protos-types (~> 1.0)
119
+ grpc-google-iam-v1 (0.6.9)
120
+ googleapis-common-protos (>= 1.3.1, < 2.0)
121
+ grpc (~> 1.0)
122
+ hashdiff (1.0.0)
123
+ i18n (1.7.0)
124
+ concurrent-ruby (~> 1.0)
125
+ jaro_winkler (1.5.4)
126
+ jwt (2.2.1)
127
+ loofah (2.3.1)
128
+ crass (~> 1.0.2)
129
+ nokogiri (>= 1.5.9)
130
+ mail (2.7.1)
131
+ mini_mime (>= 0.1.1)
132
+ marcel (0.3.3)
133
+ mimemagic (~> 0.3.2)
134
+ memoist (0.16.1)
135
+ method_source (0.9.2)
136
+ mimemagic (0.3.3)
137
+ mini_mime (1.0.2)
138
+ mini_portile2 (2.4.0)
139
+ minitest (5.13.0)
140
+ multi_json (1.14.1)
141
+ multipart-post (2.1.1)
142
+ nio4r (2.5.2)
143
+ nokogiri (1.10.5)
144
+ mini_portile2 (~> 2.4.0)
145
+ os (1.0.1)
146
+ parallel (1.19.0)
147
+ parser (2.6.5.0)
148
+ ast (~> 2.4.0)
149
+ public_suffix (4.0.1)
150
+ raabro (1.1.6)
151
+ rack (2.0.7)
152
+ rack-test (1.1.0)
153
+ rack (>= 1.0, < 3)
154
+ rails (6.0.1)
155
+ actioncable (= 6.0.1)
156
+ actionmailbox (= 6.0.1)
157
+ actionmailer (= 6.0.1)
158
+ actionpack (= 6.0.1)
159
+ actiontext (= 6.0.1)
160
+ actionview (= 6.0.1)
161
+ activejob (= 6.0.1)
162
+ activemodel (= 6.0.1)
163
+ activerecord (= 6.0.1)
164
+ activestorage (= 6.0.1)
165
+ activesupport (= 6.0.1)
166
+ bundler (>= 1.3.0)
167
+ railties (= 6.0.1)
168
+ sprockets-rails (>= 2.0.0)
169
+ rails-dom-testing (2.0.3)
170
+ activesupport (>= 4.2.0)
171
+ nokogiri (>= 1.6)
172
+ rails-html-sanitizer (1.3.0)
173
+ loofah (~> 2.3)
174
+ railties (6.0.1)
175
+ actionpack (= 6.0.1)
176
+ activesupport (= 6.0.1)
177
+ method_source
178
+ rake (>= 0.8.7)
179
+ thor (>= 0.20.3, < 2.0)
180
+ rainbow (3.0.0)
181
+ rake (10.5.0)
182
+ redis (4.1.3)
183
+ rly (0.2.3)
184
+ rspec (3.9.0)
185
+ rspec-core (~> 3.9.0)
186
+ rspec-expectations (~> 3.9.0)
187
+ rspec-mocks (~> 3.9.0)
188
+ rspec-core (3.9.0)
189
+ rspec-support (~> 3.9.0)
190
+ rspec-expectations (3.9.0)
191
+ diff-lcs (>= 1.2.0, < 2.0)
192
+ rspec-support (~> 3.9.0)
193
+ rspec-mocks (3.9.0)
194
+ diff-lcs (>= 1.2.0, < 2.0)
195
+ rspec-support (~> 3.9.0)
196
+ rspec-rails (3.9.0)
197
+ actionpack (>= 3.0)
198
+ activesupport (>= 3.0)
199
+ railties (>= 3.0)
200
+ rspec-core (~> 3.9.0)
201
+ rspec-expectations (~> 3.9.0)
202
+ rspec-mocks (~> 3.9.0)
203
+ rspec-support (~> 3.9.0)
204
+ rspec-support (3.9.0)
205
+ rubocop (0.76.0)
206
+ jaro_winkler (~> 1.5.1)
207
+ parallel (~> 1.10)
208
+ parser (>= 2.6)
209
+ rainbow (>= 2.2.2, < 4.0)
210
+ ruby-progressbar (~> 1.7)
211
+ unicode-display_width (>= 1.4.0, < 1.7)
212
+ rubocop-rspec (1.36.0)
213
+ rubocop (>= 0.68.1)
214
+ ruby-progressbar (1.10.1)
215
+ safe_yaml (1.0.5)
216
+ signet (0.12.0)
217
+ addressable (~> 2.3)
218
+ faraday (~> 0.9)
219
+ jwt (>= 1.5, < 3.0)
220
+ multi_json (~> 1.10)
221
+ sprockets (4.0.0)
222
+ concurrent-ruby (~> 1.0)
223
+ rack (> 1, < 3)
224
+ sprockets-rails (3.2.1)
225
+ actionpack (>= 4.0)
226
+ activesupport (>= 4.0)
227
+ sprockets (>= 3.0.0)
228
+ sqlite3 (1.4.1)
229
+ thor (0.20.3)
230
+ thread_safe (0.3.6)
231
+ timecop (0.9.1)
232
+ tzinfo (1.2.5)
233
+ thread_safe (~> 0.1)
234
+ unicode-display_width (1.6.0)
235
+ webmock (3.7.6)
236
+ addressable (>= 2.3.6)
237
+ crack (>= 0.3.2)
238
+ hashdiff (>= 0.4.0, < 2.0.0)
239
+ websocket-driver (0.7.1)
240
+ websocket-extensions (>= 0.1.0)
241
+ websocket-extensions (0.1.4)
242
+ zeitwerk (2.2.1)
243
+
244
+ PLATFORMS
245
+ ruby
246
+
247
+ DEPENDENCIES
248
+ appraisal
249
+ bundler (~> 2.0)
250
+ cloudtasker!
251
+ google-cloud-tasks (= 1.1)
252
+ rails
253
+ rake (~> 10.0)
254
+ rspec (~> 3.0)
255
+ rspec-rails
256
+ rubocop (= 0.76.0)
257
+ rubocop-rspec
258
+ sqlite3
259
+ timecop
260
+ webmock
261
+
262
+ BUNDLED WITH
263
+ 2.0.2
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ # This file was generated by Appraisal
4
+
5
+ source 'https://rubygems.org'
6
+
7
+ gem 'google-cloud-tasks', '1.2'
8
+
9
+ gemspec path: '../'
@@ -0,0 +1,263 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ cloudtasker (0.2.0)
5
+ activesupport
6
+ fugit
7
+ google-cloud-tasks
8
+ jwt
9
+ redis
10
+
11
+ GEM
12
+ remote: https://rubygems.org/
13
+ specs:
14
+ actioncable (6.0.1)
15
+ actionpack (= 6.0.1)
16
+ nio4r (~> 2.0)
17
+ websocket-driver (>= 0.6.1)
18
+ actionmailbox (6.0.1)
19
+ actionpack (= 6.0.1)
20
+ activejob (= 6.0.1)
21
+ activerecord (= 6.0.1)
22
+ activestorage (= 6.0.1)
23
+ activesupport (= 6.0.1)
24
+ mail (>= 2.7.1)
25
+ actionmailer (6.0.1)
26
+ actionpack (= 6.0.1)
27
+ actionview (= 6.0.1)
28
+ activejob (= 6.0.1)
29
+ mail (~> 2.5, >= 2.5.4)
30
+ rails-dom-testing (~> 2.0)
31
+ actionpack (6.0.1)
32
+ actionview (= 6.0.1)
33
+ activesupport (= 6.0.1)
34
+ rack (~> 2.0)
35
+ rack-test (>= 0.6.3)
36
+ rails-dom-testing (~> 2.0)
37
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
38
+ actiontext (6.0.1)
39
+ actionpack (= 6.0.1)
40
+ activerecord (= 6.0.1)
41
+ activestorage (= 6.0.1)
42
+ activesupport (= 6.0.1)
43
+ nokogiri (>= 1.8.5)
44
+ actionview (6.0.1)
45
+ activesupport (= 6.0.1)
46
+ builder (~> 3.1)
47
+ erubi (~> 1.4)
48
+ rails-dom-testing (~> 2.0)
49
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
50
+ activejob (6.0.1)
51
+ activesupport (= 6.0.1)
52
+ globalid (>= 0.3.6)
53
+ activemodel (6.0.1)
54
+ activesupport (= 6.0.1)
55
+ activerecord (6.0.1)
56
+ activemodel (= 6.0.1)
57
+ activesupport (= 6.0.1)
58
+ activestorage (6.0.1)
59
+ actionpack (= 6.0.1)
60
+ activejob (= 6.0.1)
61
+ activerecord (= 6.0.1)
62
+ marcel (~> 0.3.1)
63
+ activesupport (6.0.1)
64
+ concurrent-ruby (~> 1.0, >= 1.0.2)
65
+ i18n (>= 0.7, < 2)
66
+ minitest (~> 5.1)
67
+ tzinfo (~> 1.1)
68
+ zeitwerk (~> 2.2)
69
+ addressable (2.7.0)
70
+ public_suffix (>= 2.0.2, < 5.0)
71
+ appraisal (2.2.0)
72
+ bundler
73
+ rake
74
+ thor (>= 0.14.0)
75
+ ast (2.4.0)
76
+ builder (3.2.3)
77
+ concurrent-ruby (1.1.5)
78
+ crack (0.4.3)
79
+ safe_yaml (~> 1.0.0)
80
+ crass (1.0.5)
81
+ diff-lcs (1.3)
82
+ erubi (1.9.0)
83
+ et-orbi (1.2.2)
84
+ tzinfo
85
+ faraday (0.17.0)
86
+ multipart-post (>= 1.2, < 3)
87
+ fugit (1.3.3)
88
+ et-orbi (~> 1.1, >= 1.1.8)
89
+ raabro (~> 1.1)
90
+ globalid (0.4.2)
91
+ activesupport (>= 4.2.0)
92
+ google-cloud-tasks (1.2.0)
93
+ google-gax (~> 1.8)
94
+ googleapis-common-protos (>= 1.3.9, < 2.0)
95
+ grpc-google-iam-v1 (~> 0.6.9)
96
+ google-gax (1.8.1)
97
+ google-protobuf (~> 3.9)
98
+ googleapis-common-protos (>= 1.3.9, < 2.0)
99
+ googleauth (~> 0.9)
100
+ grpc (~> 1.24)
101
+ rly (~> 0.2.3)
102
+ google-protobuf (3.10.1-universal-darwin)
103
+ googleapis-common-protos (1.3.9)
104
+ google-protobuf (~> 3.0)
105
+ googleapis-common-protos-types (~> 1.0)
106
+ grpc (~> 1.0)
107
+ googleapis-common-protos-types (1.0.4)
108
+ google-protobuf (~> 3.0)
109
+ googleauth (0.10.0)
110
+ faraday (~> 0.12)
111
+ jwt (>= 1.4, < 3.0)
112
+ memoist (~> 0.16)
113
+ multi_json (~> 1.11)
114
+ os (>= 0.9, < 2.0)
115
+ signet (~> 0.12)
116
+ grpc (1.25.0-universal-darwin)
117
+ google-protobuf (~> 3.8)
118
+ googleapis-common-protos-types (~> 1.0)
119
+ grpc-google-iam-v1 (0.6.9)
120
+ googleapis-common-protos (>= 1.3.1, < 2.0)
121
+ grpc (~> 1.0)
122
+ hashdiff (1.0.0)
123
+ i18n (1.7.0)
124
+ concurrent-ruby (~> 1.0)
125
+ jaro_winkler (1.5.4)
126
+ jwt (2.2.1)
127
+ loofah (2.3.1)
128
+ crass (~> 1.0.2)
129
+ nokogiri (>= 1.5.9)
130
+ mail (2.7.1)
131
+ mini_mime (>= 0.1.1)
132
+ marcel (0.3.3)
133
+ mimemagic (~> 0.3.2)
134
+ memoist (0.16.1)
135
+ method_source (0.9.2)
136
+ mimemagic (0.3.3)
137
+ mini_mime (1.0.2)
138
+ mini_portile2 (2.4.0)
139
+ minitest (5.13.0)
140
+ multi_json (1.14.1)
141
+ multipart-post (2.1.1)
142
+ nio4r (2.5.2)
143
+ nokogiri (1.10.5)
144
+ mini_portile2 (~> 2.4.0)
145
+ os (1.0.1)
146
+ parallel (1.19.0)
147
+ parser (2.6.5.0)
148
+ ast (~> 2.4.0)
149
+ public_suffix (4.0.1)
150
+ raabro (1.1.6)
151
+ rack (2.0.7)
152
+ rack-test (1.1.0)
153
+ rack (>= 1.0, < 3)
154
+ rails (6.0.1)
155
+ actioncable (= 6.0.1)
156
+ actionmailbox (= 6.0.1)
157
+ actionmailer (= 6.0.1)
158
+ actionpack (= 6.0.1)
159
+ actiontext (= 6.0.1)
160
+ actionview (= 6.0.1)
161
+ activejob (= 6.0.1)
162
+ activemodel (= 6.0.1)
163
+ activerecord (= 6.0.1)
164
+ activestorage (= 6.0.1)
165
+ activesupport (= 6.0.1)
166
+ bundler (>= 1.3.0)
167
+ railties (= 6.0.1)
168
+ sprockets-rails (>= 2.0.0)
169
+ rails-dom-testing (2.0.3)
170
+ activesupport (>= 4.2.0)
171
+ nokogiri (>= 1.6)
172
+ rails-html-sanitizer (1.3.0)
173
+ loofah (~> 2.3)
174
+ railties (6.0.1)
175
+ actionpack (= 6.0.1)
176
+ activesupport (= 6.0.1)
177
+ method_source
178
+ rake (>= 0.8.7)
179
+ thor (>= 0.20.3, < 2.0)
180
+ rainbow (3.0.0)
181
+ rake (10.5.0)
182
+ redis (4.1.3)
183
+ rly (0.2.3)
184
+ rspec (3.9.0)
185
+ rspec-core (~> 3.9.0)
186
+ rspec-expectations (~> 3.9.0)
187
+ rspec-mocks (~> 3.9.0)
188
+ rspec-core (3.9.0)
189
+ rspec-support (~> 3.9.0)
190
+ rspec-expectations (3.9.0)
191
+ diff-lcs (>= 1.2.0, < 2.0)
192
+ rspec-support (~> 3.9.0)
193
+ rspec-mocks (3.9.0)
194
+ diff-lcs (>= 1.2.0, < 2.0)
195
+ rspec-support (~> 3.9.0)
196
+ rspec-rails (3.9.0)
197
+ actionpack (>= 3.0)
198
+ activesupport (>= 3.0)
199
+ railties (>= 3.0)
200
+ rspec-core (~> 3.9.0)
201
+ rspec-expectations (~> 3.9.0)
202
+ rspec-mocks (~> 3.9.0)
203
+ rspec-support (~> 3.9.0)
204
+ rspec-support (3.9.0)
205
+ rubocop (0.76.0)
206
+ jaro_winkler (~> 1.5.1)
207
+ parallel (~> 1.10)
208
+ parser (>= 2.6)
209
+ rainbow (>= 2.2.2, < 4.0)
210
+ ruby-progressbar (~> 1.7)
211
+ unicode-display_width (>= 1.4.0, < 1.7)
212
+ rubocop-rspec (1.36.0)
213
+ rubocop (>= 0.68.1)
214
+ ruby-progressbar (1.10.1)
215
+ safe_yaml (1.0.5)
216
+ signet (0.12.0)
217
+ addressable (~> 2.3)
218
+ faraday (~> 0.9)
219
+ jwt (>= 1.5, < 3.0)
220
+ multi_json (~> 1.10)
221
+ sprockets (4.0.0)
222
+ concurrent-ruby (~> 1.0)
223
+ rack (> 1, < 3)
224
+ sprockets-rails (3.2.1)
225
+ actionpack (>= 4.0)
226
+ activesupport (>= 4.0)
227
+ sprockets (>= 3.0.0)
228
+ sqlite3 (1.4.1)
229
+ thor (0.20.3)
230
+ thread_safe (0.3.6)
231
+ timecop (0.9.1)
232
+ tzinfo (1.2.5)
233
+ thread_safe (~> 0.1)
234
+ unicode-display_width (1.6.0)
235
+ webmock (3.7.6)
236
+ addressable (>= 2.3.6)
237
+ crack (>= 0.3.2)
238
+ hashdiff (>= 0.4.0, < 2.0.0)
239
+ websocket-driver (0.7.1)
240
+ websocket-extensions (>= 0.1.0)
241
+ websocket-extensions (0.1.4)
242
+ zeitwerk (2.2.1)
243
+
244
+ PLATFORMS
245
+ ruby
246
+
247
+ DEPENDENCIES
248
+ appraisal
249
+ bundler (~> 2.0)
250
+ cloudtasker!
251
+ google-cloud-tasks (= 1.2)
252
+ rails
253
+ rake (~> 10.0)
254
+ rspec (~> 3.0)
255
+ rspec-rails
256
+ rubocop (= 0.76.0)
257
+ rubocop-rspec
258
+ sqlite3
259
+ timecop
260
+ webmock
261
+
262
+ BUNDLED WITH
263
+ 2.0.2