cloudtasker 0.1.0 → 0.6.0

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