cloudtasker 0.10.2 → 0.11.rc1
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.
- checksums.yaml +4 -4
- data/.github/workflows/test.yml +5 -1
- data/CHANGELOG.md +0 -16
- data/app/controllers/cloudtasker/application_controller.rb +8 -0
- data/app/controllers/cloudtasker/worker_controller.rb +16 -8
- data/gemfiles/google_cloud_tasks_1.0.gemfile.lock +147 -198
- data/gemfiles/google_cloud_tasks_1.1.gemfile.lock +147 -198
- data/gemfiles/google_cloud_tasks_1.2.gemfile.lock +147 -198
- data/gemfiles/google_cloud_tasks_1.3.gemfile.lock +147 -198
- data/gemfiles/rails_5.2.gemfile.lock +82 -134
- data/gemfiles/rails_6.0.gemfile.lock +83 -135
- data/lib/cloudtasker/missing_worker_arguments_error.rb +6 -0
- data/lib/cloudtasker/version.rb +1 -1
- data/lib/cloudtasker/worker.rb +7 -0
- data/lib/cloudtasker/worker_handler.rb +1 -1
- data/lib/cloudtasker.rb +1 -1
- metadata +9 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1a0759638a4af47fcc26467b93039b3c6355908db5cafd0a20972b7e48649b81
|
4
|
+
data.tar.gz: a0f76c953bc0f64276f5b10f90300bcf7415dbfe305fac6697e4bd9fb83b53c0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ef16621727a56793623e1c582bac1f6e4971b8ff1af3ee36a3d37b22d239f7bb3504a35b5f1ffc9f250343b2ed5ae888e75b8d583b49487f34dc69eb45cd9d13
|
7
|
+
data.tar.gz: aea0fa6eb2873f6b99df05c613d89363a3c6103fe814123d25a7508ede1fbf92cf653d10e7d57863d7ec6065d1c96e5c5f3ecf371a75ac925a588693849c320e
|
data/.github/workflows/test.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,21 +1,5 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
-
## [v0.10.2](https://github.com/keypup-io/cloudtasker/tree/v0.10.2) (2021-08-25)
|
4
|
-
|
5
|
-
[Full Changelog](https://github.com/keypup-io/cloudtasker/compare/v0.10.1...v0.10.2)
|
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.9.5](https://github.com/keypup-io/cloudtasker/tree/v0.9.5) (2021-08-25)
|
12
|
-
|
13
|
-
[Full Changelog](https://github.com/keypup-io/cloudtasker/compare/v0.9.4...v0.9.5)
|
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
3
|
## [v0.10.1](https://github.com/keypup-io/cloudtasker/tree/v0.10.1) (2020-10-05)
|
20
4
|
|
21
5
|
[Full Changelog](https://github.com/keypup-io/cloudtasker/compare/v0.10.0...v0.10.1)
|
@@ -2,10 +2,7 @@
|
|
2
2
|
|
3
3
|
module Cloudtasker
|
4
4
|
# Handle execution of workers
|
5
|
-
class WorkerController <
|
6
|
-
# No need for CSRF verification on API endpoints
|
7
|
-
skip_before_action :verify_authenticity_token
|
8
|
-
|
5
|
+
class WorkerController < ApplicationController
|
9
6
|
# Authenticate all requests.
|
10
7
|
before_action :authenticate!
|
11
8
|
|
@@ -22,21 +19,32 @@ module Cloudtasker
|
|
22
19
|
# Process payload
|
23
20
|
WorkerHandler.execute_from_payload!(payload)
|
24
21
|
head :no_content
|
25
|
-
rescue DeadWorkerError
|
22
|
+
rescue DeadWorkerError, MissingWorkerArgumentsError => e
|
26
23
|
# 205: job will NOT be retried
|
24
|
+
log_error(e)
|
27
25
|
head :reset_content
|
28
|
-
rescue InvalidWorkerError
|
26
|
+
rescue InvalidWorkerError => e
|
29
27
|
# 404: Job will be retried
|
28
|
+
log_error(e)
|
30
29
|
head :not_found
|
31
30
|
rescue StandardError => e
|
32
31
|
# 404: Job will be retried
|
33
|
-
|
34
|
-
Cloudtasker.logger.error(e.backtrace.join("\n"))
|
32
|
+
log_error(e)
|
35
33
|
head :unprocessable_entity
|
36
34
|
end
|
37
35
|
|
38
36
|
private
|
39
37
|
|
38
|
+
#
|
39
|
+
# Log an error via cloudtasker logger.
|
40
|
+
#
|
41
|
+
# @param [Exception] e The error to log
|
42
|
+
#
|
43
|
+
def log_error(error)
|
44
|
+
Cloudtasker.logger.error(error)
|
45
|
+
Cloudtasker.logger.error(error.backtrace.join("\n"))
|
46
|
+
end
|
47
|
+
|
40
48
|
#
|
41
49
|
# Parse the request body and return the actual job
|
42
50
|
# payload.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
cloudtasker (0.
|
4
|
+
cloudtasker (0.11.rc1)
|
5
5
|
activesupport
|
6
6
|
connection_pool
|
7
7
|
fugit
|
@@ -13,138 +13,95 @@ PATH
|
|
13
13
|
GEM
|
14
14
|
remote: https://rubygems.org/
|
15
15
|
specs:
|
16
|
-
actioncable (6.
|
17
|
-
actionpack (= 6.
|
18
|
-
activesupport (= 6.1.4.1)
|
16
|
+
actioncable (6.0.2.2)
|
17
|
+
actionpack (= 6.0.2.2)
|
19
18
|
nio4r (~> 2.0)
|
20
19
|
websocket-driver (>= 0.6.1)
|
21
|
-
actionmailbox (6.
|
22
|
-
actionpack (= 6.
|
23
|
-
activejob (= 6.
|
24
|
-
activerecord (= 6.
|
25
|
-
activestorage (= 6.
|
26
|
-
activesupport (= 6.
|
20
|
+
actionmailbox (6.0.2.2)
|
21
|
+
actionpack (= 6.0.2.2)
|
22
|
+
activejob (= 6.0.2.2)
|
23
|
+
activerecord (= 6.0.2.2)
|
24
|
+
activestorage (= 6.0.2.2)
|
25
|
+
activesupport (= 6.0.2.2)
|
27
26
|
mail (>= 2.7.1)
|
28
|
-
actionmailer (6.
|
29
|
-
actionpack (= 6.
|
30
|
-
actionview (= 6.
|
31
|
-
activejob (= 6.
|
32
|
-
activesupport (= 6.1.4.1)
|
27
|
+
actionmailer (6.0.2.2)
|
28
|
+
actionpack (= 6.0.2.2)
|
29
|
+
actionview (= 6.0.2.2)
|
30
|
+
activejob (= 6.0.2.2)
|
33
31
|
mail (~> 2.5, >= 2.5.4)
|
34
32
|
rails-dom-testing (~> 2.0)
|
35
|
-
actionpack (6.
|
36
|
-
actionview (= 6.
|
37
|
-
activesupport (= 6.
|
38
|
-
rack (~> 2.0, >= 2.0.
|
33
|
+
actionpack (6.0.2.2)
|
34
|
+
actionview (= 6.0.2.2)
|
35
|
+
activesupport (= 6.0.2.2)
|
36
|
+
rack (~> 2.0, >= 2.0.8)
|
39
37
|
rack-test (>= 0.6.3)
|
40
38
|
rails-dom-testing (~> 2.0)
|
41
39
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
42
|
-
actiontext (6.
|
43
|
-
actionpack (= 6.
|
44
|
-
activerecord (= 6.
|
45
|
-
activestorage (= 6.
|
46
|
-
activesupport (= 6.
|
40
|
+
actiontext (6.0.2.2)
|
41
|
+
actionpack (= 6.0.2.2)
|
42
|
+
activerecord (= 6.0.2.2)
|
43
|
+
activestorage (= 6.0.2.2)
|
44
|
+
activesupport (= 6.0.2.2)
|
47
45
|
nokogiri (>= 1.8.5)
|
48
|
-
actionview (6.
|
49
|
-
activesupport (= 6.
|
46
|
+
actionview (6.0.2.2)
|
47
|
+
activesupport (= 6.0.2.2)
|
50
48
|
builder (~> 3.1)
|
51
49
|
erubi (~> 1.4)
|
52
50
|
rails-dom-testing (~> 2.0)
|
53
51
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
54
|
-
activejob (6.
|
55
|
-
activesupport (= 6.
|
52
|
+
activejob (6.0.2.2)
|
53
|
+
activesupport (= 6.0.2.2)
|
56
54
|
globalid (>= 0.3.6)
|
57
|
-
activemodel (6.
|
58
|
-
activesupport (= 6.
|
59
|
-
activerecord (6.
|
60
|
-
activemodel (= 6.
|
61
|
-
activesupport (= 6.
|
62
|
-
activestorage (6.
|
63
|
-
actionpack (= 6.
|
64
|
-
activejob (= 6.
|
65
|
-
activerecord (= 6.
|
66
|
-
|
67
|
-
|
68
|
-
mini_mime (>= 1.1.0)
|
69
|
-
activesupport (6.1.4.1)
|
55
|
+
activemodel (6.0.2.2)
|
56
|
+
activesupport (= 6.0.2.2)
|
57
|
+
activerecord (6.0.2.2)
|
58
|
+
activemodel (= 6.0.2.2)
|
59
|
+
activesupport (= 6.0.2.2)
|
60
|
+
activestorage (6.0.2.2)
|
61
|
+
actionpack (= 6.0.2.2)
|
62
|
+
activejob (= 6.0.2.2)
|
63
|
+
activerecord (= 6.0.2.2)
|
64
|
+
marcel (~> 0.3.1)
|
65
|
+
activesupport (6.0.2.2)
|
70
66
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
71
|
-
i18n (>=
|
72
|
-
minitest (
|
73
|
-
tzinfo (~>
|
74
|
-
zeitwerk (~> 2.
|
75
|
-
addressable (2.
|
67
|
+
i18n (>= 0.7, < 2)
|
68
|
+
minitest (~> 5.1)
|
69
|
+
tzinfo (~> 1.1)
|
70
|
+
zeitwerk (~> 2.2)
|
71
|
+
addressable (2.7.0)
|
76
72
|
public_suffix (>= 2.0.2, < 5.0)
|
77
|
-
appraisal (2.
|
73
|
+
appraisal (2.2.0)
|
78
74
|
bundler
|
79
75
|
rake
|
80
76
|
thor (>= 0.14.0)
|
81
|
-
ast (2.4.
|
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)
|
77
|
+
ast (2.4.0)
|
100
78
|
builder (3.2.4)
|
101
|
-
concurrent-ruby (1.1.
|
102
|
-
connection_pool (2.2.
|
103
|
-
|
104
|
-
|
105
|
-
crack (0.4.5)
|
106
|
-
rexml
|
79
|
+
concurrent-ruby (1.1.6)
|
80
|
+
connection_pool (2.2.3)
|
81
|
+
crack (0.4.3)
|
82
|
+
safe_yaml (~> 1.0.0)
|
107
83
|
crass (1.0.6)
|
108
|
-
diff-lcs (1.
|
109
|
-
erubi (1.
|
84
|
+
diff-lcs (1.3)
|
85
|
+
erubi (1.9.0)
|
110
86
|
et-orbi (1.2.4)
|
111
87
|
tzinfo
|
112
|
-
faraday (1.
|
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)
|
88
|
+
faraday (1.0.1)
|
121
89
|
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
90
|
faraday-http-cache (2.2.0)
|
127
91
|
faraday (>= 0.8)
|
128
|
-
|
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)
|
92
|
+
fugit (1.3.9)
|
135
93
|
et-orbi (~> 1.1, >= 1.1.8)
|
136
|
-
raabro (~> 1.
|
137
|
-
github_changelog_generator (1.
|
94
|
+
raabro (~> 1.3)
|
95
|
+
github_changelog_generator (1.15.2)
|
138
96
|
activesupport
|
139
|
-
async (>= 1.25.0)
|
140
|
-
async-http-faraday
|
141
97
|
faraday-http-cache
|
142
98
|
multi_json
|
143
99
|
octokit (~> 4.6)
|
144
100
|
rainbow (>= 2.2.1)
|
145
101
|
rake (>= 10.0)
|
146
|
-
|
147
|
-
|
102
|
+
retriable (~> 3.0)
|
103
|
+
globalid (0.4.2)
|
104
|
+
activesupport (>= 4.2.0)
|
148
105
|
google-cloud-tasks (1.0.0)
|
149
106
|
google-gax (~> 1.3)
|
150
107
|
googleapis-common-protos (>= 1.3.9, < 2.0)
|
@@ -155,122 +112,114 @@ GEM
|
|
155
112
|
googleauth (~> 0.9)
|
156
113
|
grpc (~> 1.24)
|
157
114
|
rly (~> 0.2.3)
|
158
|
-
google-protobuf (3.
|
159
|
-
googleapis-common-protos (1.3.
|
160
|
-
google-protobuf (~> 3.
|
161
|
-
googleapis-common-protos-types (>= 1.0.
|
115
|
+
google-protobuf (3.11.4)
|
116
|
+
googleapis-common-protos (1.3.10)
|
117
|
+
google-protobuf (~> 3.11)
|
118
|
+
googleapis-common-protos-types (>= 1.0.5, < 2.0)
|
162
119
|
grpc (~> 1.27)
|
163
|
-
googleapis-common-protos-types (1.
|
164
|
-
google-protobuf (~> 3.
|
165
|
-
googleauth (0.
|
120
|
+
googleapis-common-protos-types (1.0.5)
|
121
|
+
google-protobuf (~> 3.11)
|
122
|
+
googleauth (0.12.0)
|
166
123
|
faraday (>= 0.17.3, < 2.0)
|
167
124
|
jwt (>= 1.4, < 3.0)
|
168
125
|
memoist (~> 0.16)
|
169
126
|
multi_json (~> 1.11)
|
170
127
|
os (>= 0.9, < 2.0)
|
171
128
|
signet (~> 0.14)
|
172
|
-
grpc (1.
|
173
|
-
google-protobuf (~> 3.
|
129
|
+
grpc (1.28.0)
|
130
|
+
google-protobuf (~> 3.11)
|
174
131
|
googleapis-common-protos-types (~> 1.0)
|
175
|
-
grpc-google-iam-v1 (0.6.
|
176
|
-
google-protobuf (~> 3.
|
177
|
-
googleapis-common-protos (>= 1.3.
|
132
|
+
grpc-google-iam-v1 (0.6.10)
|
133
|
+
google-protobuf (~> 3.11)
|
134
|
+
googleapis-common-protos (>= 1.3.10, < 2.0)
|
178
135
|
grpc (~> 1.27)
|
179
136
|
hashdiff (1.0.1)
|
180
|
-
i18n (1.8.
|
137
|
+
i18n (1.8.2)
|
181
138
|
concurrent-ruby (~> 1.0)
|
182
139
|
jaro_winkler (1.5.4)
|
183
|
-
jwt (2.2.
|
184
|
-
loofah (2.
|
140
|
+
jwt (2.2.1)
|
141
|
+
loofah (2.5.0)
|
185
142
|
crass (~> 1.0.2)
|
186
143
|
nokogiri (>= 1.5.9)
|
187
144
|
mail (2.7.1)
|
188
145
|
mini_mime (>= 0.1.1)
|
189
|
-
marcel (
|
146
|
+
marcel (0.3.3)
|
147
|
+
mimemagic (~> 0.3.2)
|
190
148
|
memoist (0.16.2)
|
191
149
|
method_source (1.0.0)
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
150
|
+
mimemagic (0.3.4)
|
151
|
+
mini_mime (1.0.2)
|
152
|
+
mini_portile2 (2.4.0)
|
153
|
+
minitest (5.14.0)
|
154
|
+
multi_json (1.14.1)
|
196
155
|
multipart-post (2.1.1)
|
197
|
-
nio4r (2.5.
|
198
|
-
nokogiri (1.
|
199
|
-
mini_portile2 (~> 2.
|
200
|
-
|
201
|
-
octokit (4.21.0)
|
156
|
+
nio4r (2.5.2)
|
157
|
+
nokogiri (1.10.9)
|
158
|
+
mini_portile2 (~> 2.4.0)
|
159
|
+
octokit (4.18.0)
|
202
160
|
faraday (>= 0.9)
|
203
161
|
sawyer (~> 0.8.0, >= 0.5.3)
|
204
|
-
os (1.1.
|
205
|
-
parallel (1.
|
206
|
-
parser (
|
207
|
-
ast (~> 2.4.
|
208
|
-
|
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)
|
215
|
-
public_suffix (4.0.6)
|
162
|
+
os (1.1.0)
|
163
|
+
parallel (1.19.1)
|
164
|
+
parser (2.7.1.1)
|
165
|
+
ast (~> 2.4.0)
|
166
|
+
public_suffix (4.0.4)
|
216
167
|
raabro (1.4.0)
|
217
|
-
|
218
|
-
rack (2.2.3)
|
168
|
+
rack (2.2.2)
|
219
169
|
rack-test (1.1.0)
|
220
170
|
rack (>= 1.0, < 3)
|
221
|
-
rails (6.
|
222
|
-
actioncable (= 6.
|
223
|
-
actionmailbox (= 6.
|
224
|
-
actionmailer (= 6.
|
225
|
-
actionpack (= 6.
|
226
|
-
actiontext (= 6.
|
227
|
-
actionview (= 6.
|
228
|
-
activejob (= 6.
|
229
|
-
activemodel (= 6.
|
230
|
-
activerecord (= 6.
|
231
|
-
activestorage (= 6.
|
232
|
-
activesupport (= 6.
|
233
|
-
bundler (>= 1.
|
234
|
-
railties (= 6.
|
171
|
+
rails (6.0.2.2)
|
172
|
+
actioncable (= 6.0.2.2)
|
173
|
+
actionmailbox (= 6.0.2.2)
|
174
|
+
actionmailer (= 6.0.2.2)
|
175
|
+
actionpack (= 6.0.2.2)
|
176
|
+
actiontext (= 6.0.2.2)
|
177
|
+
actionview (= 6.0.2.2)
|
178
|
+
activejob (= 6.0.2.2)
|
179
|
+
activemodel (= 6.0.2.2)
|
180
|
+
activerecord (= 6.0.2.2)
|
181
|
+
activestorage (= 6.0.2.2)
|
182
|
+
activesupport (= 6.0.2.2)
|
183
|
+
bundler (>= 1.3.0)
|
184
|
+
railties (= 6.0.2.2)
|
235
185
|
sprockets-rails (>= 2.0.0)
|
236
186
|
rails-dom-testing (2.0.3)
|
237
187
|
activesupport (>= 4.2.0)
|
238
188
|
nokogiri (>= 1.6)
|
239
|
-
rails-html-sanitizer (1.
|
189
|
+
rails-html-sanitizer (1.3.0)
|
240
190
|
loofah (~> 2.3)
|
241
|
-
railties (6.
|
242
|
-
actionpack (= 6.
|
243
|
-
activesupport (= 6.
|
191
|
+
railties (6.0.2.2)
|
192
|
+
actionpack (= 6.0.2.2)
|
193
|
+
activesupport (= 6.0.2.2)
|
244
194
|
method_source
|
245
|
-
rake (>= 0.
|
246
|
-
thor (
|
195
|
+
rake (>= 0.8.7)
|
196
|
+
thor (>= 0.20.3, < 2.0)
|
247
197
|
rainbow (3.0.0)
|
248
|
-
rake (13.0.
|
249
|
-
redis (4.
|
198
|
+
rake (13.0.1)
|
199
|
+
redis (4.2.2)
|
250
200
|
retriable (3.1.2)
|
251
|
-
rexml (3.2.5)
|
252
201
|
rly (0.2.3)
|
253
|
-
rspec (3.
|
254
|
-
rspec-core (~> 3.
|
255
|
-
rspec-expectations (~> 3.
|
256
|
-
rspec-mocks (~> 3.
|
257
|
-
rspec-core (3.
|
258
|
-
rspec-support (~> 3.
|
259
|
-
rspec-expectations (3.
|
202
|
+
rspec (3.9.0)
|
203
|
+
rspec-core (~> 3.9.0)
|
204
|
+
rspec-expectations (~> 3.9.0)
|
205
|
+
rspec-mocks (~> 3.9.0)
|
206
|
+
rspec-core (3.9.1)
|
207
|
+
rspec-support (~> 3.9.1)
|
208
|
+
rspec-expectations (3.9.1)
|
260
209
|
diff-lcs (>= 1.2.0, < 2.0)
|
261
|
-
rspec-support (~> 3.
|
262
|
-
rspec-mocks (3.
|
210
|
+
rspec-support (~> 3.9.0)
|
211
|
+
rspec-mocks (3.9.1)
|
263
212
|
diff-lcs (>= 1.2.0, < 2.0)
|
264
|
-
rspec-support (~> 3.
|
265
|
-
rspec-rails (
|
266
|
-
actionpack (>=
|
267
|
-
activesupport (>=
|
268
|
-
railties (>=
|
269
|
-
rspec-core (~> 3.
|
270
|
-
rspec-expectations (~> 3.
|
271
|
-
rspec-mocks (~> 3.
|
272
|
-
rspec-support (~> 3.
|
273
|
-
rspec-support (3.
|
213
|
+
rspec-support (~> 3.9.0)
|
214
|
+
rspec-rails (4.0.0)
|
215
|
+
actionpack (>= 4.2)
|
216
|
+
activesupport (>= 4.2)
|
217
|
+
railties (>= 4.2)
|
218
|
+
rspec-core (~> 3.9)
|
219
|
+
rspec-expectations (~> 3.9)
|
220
|
+
rspec-mocks (~> 3.9)
|
221
|
+
rspec-support (~> 3.9)
|
222
|
+
rspec-support (3.9.2)
|
274
223
|
rubocop (0.76.0)
|
275
224
|
jaro_winkler (~> 1.5.1)
|
276
225
|
parallel (~> 1.10)
|
@@ -280,40 +229,40 @@ GEM
|
|
280
229
|
unicode-display_width (>= 1.4.0, < 1.7)
|
281
230
|
rubocop-rspec (1.37.0)
|
282
231
|
rubocop (>= 0.68.1)
|
283
|
-
ruby-progressbar (1.
|
284
|
-
|
232
|
+
ruby-progressbar (1.10.1)
|
233
|
+
safe_yaml (1.0.5)
|
285
234
|
sawyer (0.8.2)
|
286
235
|
addressable (>= 2.3.5)
|
287
236
|
faraday (> 0.8, < 2.0)
|
288
|
-
semantic_logger (4.
|
237
|
+
semantic_logger (4.7.0)
|
289
238
|
concurrent-ruby (~> 1.0)
|
290
|
-
signet (0.
|
239
|
+
signet (0.14.0)
|
291
240
|
addressable (~> 2.3)
|
292
241
|
faraday (>= 0.17.3, < 2.0)
|
293
242
|
jwt (>= 1.5, < 3.0)
|
294
243
|
multi_json (~> 1.10)
|
295
|
-
sprockets (4.0.
|
244
|
+
sprockets (4.0.0)
|
296
245
|
concurrent-ruby (~> 1.0)
|
297
246
|
rack (> 1, < 3)
|
298
|
-
sprockets-rails (3.2.
|
247
|
+
sprockets-rails (3.2.1)
|
299
248
|
actionpack (>= 4.0)
|
300
249
|
activesupport (>= 4.0)
|
301
250
|
sprockets (>= 3.0.0)
|
302
251
|
sqlite3 (1.4.2)
|
303
|
-
thor (1.1
|
304
|
-
|
305
|
-
|
306
|
-
tzinfo (2.
|
307
|
-
|
252
|
+
thor (1.0.1)
|
253
|
+
thread_safe (0.3.6)
|
254
|
+
timecop (0.9.1)
|
255
|
+
tzinfo (1.2.7)
|
256
|
+
thread_safe (~> 0.1)
|
308
257
|
unicode-display_width (1.6.1)
|
309
|
-
webmock (3.
|
310
|
-
addressable (>= 2.
|
258
|
+
webmock (3.8.3)
|
259
|
+
addressable (>= 2.3.6)
|
311
260
|
crack (>= 0.3.2)
|
312
261
|
hashdiff (>= 0.4.0, < 2.0.0)
|
313
|
-
websocket-driver (0.7.
|
262
|
+
websocket-driver (0.7.1)
|
314
263
|
websocket-extensions (>= 0.1.0)
|
315
|
-
websocket-extensions (0.1.
|
316
|
-
zeitwerk (2.
|
264
|
+
websocket-extensions (0.1.4)
|
265
|
+
zeitwerk (2.3.0)
|
317
266
|
|
318
267
|
PLATFORMS
|
319
268
|
ruby
|
@@ -336,4 +285,4 @@ DEPENDENCIES
|
|
336
285
|
webmock
|
337
286
|
|
338
287
|
BUNDLED WITH
|
339
|
-
2.
|
288
|
+
2.1.4
|