cloudenvoy 0.5.0 → 0.6.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/.rubocop.yml +16 -20
- data/CHANGELOG.md +9 -0
- data/README.md +39 -5
- data/cloudenvoy.gemspec +2 -2
- data/examples/rails/Gemfile +1 -1
- data/examples/rails/Gemfile.lock +2 -2
- data/examples/rails/README.md +4 -0
- data/examples/rails/app/subscribers/hello_subscriber.rb +1 -1
- data/examples/rails/config/environments/production.rb +1 -1
- data/examples/rails/config/puma.rb +3 -3
- data/examples/sinatra/Gemfile +1 -1
- data/examples/sinatra/Gemfile.lock +2 -2
- data/examples/sinatra/README.md +4 -0
- data/examples/sinatra/app/subscribers/hello_subscriber.rb +1 -1
- data/examples/sinatra/app.rb +4 -4
- data/lib/cloudenvoy/backend/google_pub_sub.rb +35 -3
- data/lib/cloudenvoy/backend/memory_pub_sub.rb +25 -1
- data/lib/cloudenvoy/config.rb +1 -1
- data/lib/cloudenvoy/message.rb +2 -2
- data/lib/cloudenvoy/pub_sub_client.rb +13 -1
- data/lib/cloudenvoy/publisher.rb +39 -5
- data/lib/cloudenvoy/publisher_logger.rb +1 -1
- data/lib/cloudenvoy/version.rb +1 -1
- data/lib/cloudenvoy.rb +12 -0
- metadata +7 -13
- data/gemfiles/rails_5.2.gemfile.lock +0 -276
- data/gemfiles/rails_6.0.gemfile.lock +0 -292
- data/gemfiles/semantic_logger_3.4.gemfile.lock +0 -171
- data/gemfiles/semantic_logger_4.6.gemfile.lock +0 -171
- data/gemfiles/semantic_logger_4.7.0.gemfile.lock +0 -171
- data/gemfiles/semantic_logger_4.7.2.gemfile.lock +0 -171
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cloudenvoy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.rc1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Arnaud Lachaume
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-04-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -114,14 +114,14 @@ dependencies:
|
|
114
114
|
requirements:
|
115
115
|
- - '='
|
116
116
|
- !ruby/object:Gem::Version
|
117
|
-
version: 0.
|
117
|
+
version: 0.93.0
|
118
118
|
type: :development
|
119
119
|
prerelease: false
|
120
120
|
version_requirements: !ruby/object:Gem::Requirement
|
121
121
|
requirements:
|
122
122
|
- - '='
|
123
123
|
- !ruby/object:Gem::Version
|
124
|
-
version: 0.
|
124
|
+
version: 0.93.0
|
125
125
|
- !ruby/object:Gem::Dependency
|
126
126
|
name: rubocop-rspec
|
127
127
|
requirement: !ruby/object:Gem::Requirement
|
@@ -281,19 +281,13 @@ files:
|
|
281
281
|
- examples/sinatra/config/initializers/cloudenvoy.rb
|
282
282
|
- gemfiles/.bundle/config
|
283
283
|
- gemfiles/rails_5.2.gemfile
|
284
|
-
- gemfiles/rails_5.2.gemfile.lock
|
285
284
|
- gemfiles/rails_6.0.gemfile
|
286
|
-
- gemfiles/rails_6.0.gemfile.lock
|
287
285
|
- gemfiles/rails_6.1.gemfile
|
288
286
|
- gemfiles/rails_7.0.gemfile
|
289
287
|
- gemfiles/semantic_logger_3.4.gemfile
|
290
|
-
- gemfiles/semantic_logger_3.4.gemfile.lock
|
291
288
|
- gemfiles/semantic_logger_4.6.gemfile
|
292
|
-
- gemfiles/semantic_logger_4.6.gemfile.lock
|
293
289
|
- gemfiles/semantic_logger_4.7.0.gemfile
|
294
|
-
- gemfiles/semantic_logger_4.7.0.gemfile.lock
|
295
290
|
- gemfiles/semantic_logger_4.7.2.gemfile
|
296
|
-
- gemfiles/semantic_logger_4.7.2.gemfile.lock
|
297
291
|
- lib/cloudenvoy.rb
|
298
292
|
- lib/cloudenvoy/authentication_error.rb
|
299
293
|
- lib/cloudenvoy/authenticator.rb
|
@@ -336,12 +330,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
336
330
|
requirements:
|
337
331
|
- - ">="
|
338
332
|
- !ruby/object:Gem::Version
|
339
|
-
version: 2.
|
333
|
+
version: 2.4.0
|
340
334
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
341
335
|
requirements:
|
342
|
-
- - "
|
336
|
+
- - ">"
|
343
337
|
- !ruby/object:Gem::Version
|
344
|
-
version:
|
338
|
+
version: 1.3.1
|
345
339
|
requirements: []
|
346
340
|
rubygems_version: 3.2.3
|
347
341
|
signing_key:
|
@@ -1,276 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ..
|
3
|
-
specs:
|
4
|
-
cloudenvoy (0.5.0)
|
5
|
-
activesupport
|
6
|
-
google-cloud-pubsub (~> 2.0)
|
7
|
-
jwt
|
8
|
-
retriable
|
9
|
-
|
10
|
-
GEM
|
11
|
-
remote: https://rubygems.org/
|
12
|
-
specs:
|
13
|
-
actioncable (5.2.0)
|
14
|
-
actionpack (= 5.2.0)
|
15
|
-
nio4r (~> 2.0)
|
16
|
-
websocket-driver (>= 0.6.1)
|
17
|
-
actionmailer (5.2.0)
|
18
|
-
actionpack (= 5.2.0)
|
19
|
-
actionview (= 5.2.0)
|
20
|
-
activejob (= 5.2.0)
|
21
|
-
mail (~> 2.5, >= 2.5.4)
|
22
|
-
rails-dom-testing (~> 2.0)
|
23
|
-
actionpack (5.2.0)
|
24
|
-
actionview (= 5.2.0)
|
25
|
-
activesupport (= 5.2.0)
|
26
|
-
rack (~> 2.0)
|
27
|
-
rack-test (>= 0.6.3)
|
28
|
-
rails-dom-testing (~> 2.0)
|
29
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
30
|
-
actionview (5.2.0)
|
31
|
-
activesupport (= 5.2.0)
|
32
|
-
builder (~> 3.1)
|
33
|
-
erubi (~> 1.4)
|
34
|
-
rails-dom-testing (~> 2.0)
|
35
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
36
|
-
activejob (5.2.0)
|
37
|
-
activesupport (= 5.2.0)
|
38
|
-
globalid (>= 0.3.6)
|
39
|
-
activemodel (5.2.0)
|
40
|
-
activesupport (= 5.2.0)
|
41
|
-
activerecord (5.2.0)
|
42
|
-
activemodel (= 5.2.0)
|
43
|
-
activesupport (= 5.2.0)
|
44
|
-
arel (>= 9.0)
|
45
|
-
activestorage (5.2.0)
|
46
|
-
actionpack (= 5.2.0)
|
47
|
-
activerecord (= 5.2.0)
|
48
|
-
marcel (~> 0.3.1)
|
49
|
-
activesupport (5.2.0)
|
50
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
51
|
-
i18n (>= 0.7, < 2)
|
52
|
-
minitest (~> 5.1)
|
53
|
-
tzinfo (~> 1.1)
|
54
|
-
addressable (2.8.0)
|
55
|
-
public_suffix (>= 2.0.2, < 5.0)
|
56
|
-
appraisal (2.4.1)
|
57
|
-
bundler
|
58
|
-
rake
|
59
|
-
thor (>= 0.14.0)
|
60
|
-
arel (9.0.0)
|
61
|
-
ast (2.4.2)
|
62
|
-
builder (3.2.4)
|
63
|
-
concurrent-ruby (1.1.9)
|
64
|
-
crack (0.4.5)
|
65
|
-
rexml
|
66
|
-
crass (1.0.6)
|
67
|
-
diff-lcs (1.5.0)
|
68
|
-
erubi (1.10.0)
|
69
|
-
faraday (1.10.0)
|
70
|
-
faraday-em_http (~> 1.0)
|
71
|
-
faraday-em_synchrony (~> 1.0)
|
72
|
-
faraday-excon (~> 1.1)
|
73
|
-
faraday-httpclient (~> 1.0)
|
74
|
-
faraday-multipart (~> 1.0)
|
75
|
-
faraday-net_http (~> 1.0)
|
76
|
-
faraday-net_http_persistent (~> 1.0)
|
77
|
-
faraday-patron (~> 1.0)
|
78
|
-
faraday-rack (~> 1.0)
|
79
|
-
faraday-retry (~> 1.0)
|
80
|
-
ruby2_keywords (>= 0.0.4)
|
81
|
-
faraday-em_http (1.0.0)
|
82
|
-
faraday-em_synchrony (1.0.0)
|
83
|
-
faraday-excon (1.1.0)
|
84
|
-
faraday-httpclient (1.0.1)
|
85
|
-
faraday-multipart (1.0.3)
|
86
|
-
multipart-post (>= 1.2, < 3)
|
87
|
-
faraday-net_http (1.0.1)
|
88
|
-
faraday-net_http_persistent (1.2.0)
|
89
|
-
faraday-patron (1.0.0)
|
90
|
-
faraday-rack (1.0.0)
|
91
|
-
faraday-retry (1.0.3)
|
92
|
-
gapic-common (0.8.0)
|
93
|
-
faraday (~> 1.3)
|
94
|
-
google-protobuf (~> 3.14)
|
95
|
-
googleapis-common-protos (>= 1.3.11, < 2.a)
|
96
|
-
googleapis-common-protos-types (>= 1.0.6, < 2.a)
|
97
|
-
googleauth (>= 0.17.0, < 2.a)
|
98
|
-
grpc (~> 1.36)
|
99
|
-
globalid (1.0.0)
|
100
|
-
activesupport (>= 5.0)
|
101
|
-
google-cloud-core (1.6.0)
|
102
|
-
google-cloud-env (~> 1.0)
|
103
|
-
google-cloud-errors (~> 1.0)
|
104
|
-
google-cloud-env (1.5.0)
|
105
|
-
faraday (>= 0.17.3, < 2.0)
|
106
|
-
google-cloud-errors (1.2.0)
|
107
|
-
google-cloud-pubsub (2.9.1)
|
108
|
-
concurrent-ruby (~> 1.1)
|
109
|
-
google-cloud-core (~> 1.5)
|
110
|
-
google-cloud-pubsub-v1 (~> 0.0)
|
111
|
-
google-cloud-pubsub-v1 (0.7.1)
|
112
|
-
gapic-common (>= 0.7, < 2.a)
|
113
|
-
google-cloud-errors (~> 1.0)
|
114
|
-
grpc-google-iam-v1 (>= 0.6.10, < 2.a)
|
115
|
-
google-protobuf (3.19.4-x86_64-darwin)
|
116
|
-
googleapis-common-protos (1.3.12)
|
117
|
-
google-protobuf (~> 3.14)
|
118
|
-
googleapis-common-protos-types (~> 1.2)
|
119
|
-
grpc (~> 1.27)
|
120
|
-
googleapis-common-protos-types (1.3.0)
|
121
|
-
google-protobuf (~> 3.14)
|
122
|
-
googleauth (1.1.2)
|
123
|
-
faraday (>= 0.17.3, < 3.a)
|
124
|
-
jwt (>= 1.4, < 3.0)
|
125
|
-
memoist (~> 0.16)
|
126
|
-
multi_json (~> 1.11)
|
127
|
-
os (>= 0.9, < 2.0)
|
128
|
-
signet (>= 0.16, < 2.a)
|
129
|
-
grpc (1.43.1-universal-darwin)
|
130
|
-
google-protobuf (~> 3.18)
|
131
|
-
googleapis-common-protos-types (~> 1.0)
|
132
|
-
grpc-google-iam-v1 (1.0.0)
|
133
|
-
google-protobuf (~> 3.14)
|
134
|
-
googleapis-common-protos (>= 1.3.12, < 2.0)
|
135
|
-
grpc (~> 1.27)
|
136
|
-
hashdiff (1.0.1)
|
137
|
-
i18n (1.8.11)
|
138
|
-
concurrent-ruby (~> 1.0)
|
139
|
-
jaro_winkler (1.5.4)
|
140
|
-
jwt (2.3.0)
|
141
|
-
loofah (2.13.0)
|
142
|
-
crass (~> 1.0.2)
|
143
|
-
nokogiri (>= 1.5.9)
|
144
|
-
mail (2.7.1)
|
145
|
-
mini_mime (>= 0.1.1)
|
146
|
-
marcel (0.3.3)
|
147
|
-
mimemagic (~> 0.3.2)
|
148
|
-
memoist (0.16.2)
|
149
|
-
method_source (1.0.0)
|
150
|
-
mimemagic (0.3.10)
|
151
|
-
nokogiri (~> 1)
|
152
|
-
rake
|
153
|
-
mini_mime (1.1.2)
|
154
|
-
mini_portile2 (2.6.1)
|
155
|
-
minitest (5.15.0)
|
156
|
-
multi_json (1.15.0)
|
157
|
-
multipart-post (2.1.1)
|
158
|
-
nio4r (2.5.8)
|
159
|
-
nokogiri (1.12.5)
|
160
|
-
mini_portile2 (~> 2.6.1)
|
161
|
-
racc (~> 1.4)
|
162
|
-
os (1.1.4)
|
163
|
-
parallel (1.21.0)
|
164
|
-
parser (3.1.0.0)
|
165
|
-
ast (~> 2.4.1)
|
166
|
-
public_suffix (4.0.6)
|
167
|
-
racc (1.6.0)
|
168
|
-
rack (2.2.3)
|
169
|
-
rack-test (1.1.0)
|
170
|
-
rack (>= 1.0, < 3)
|
171
|
-
rails (5.2.0)
|
172
|
-
actioncable (= 5.2.0)
|
173
|
-
actionmailer (= 5.2.0)
|
174
|
-
actionpack (= 5.2.0)
|
175
|
-
actionview (= 5.2.0)
|
176
|
-
activejob (= 5.2.0)
|
177
|
-
activemodel (= 5.2.0)
|
178
|
-
activerecord (= 5.2.0)
|
179
|
-
activestorage (= 5.2.0)
|
180
|
-
activesupport (= 5.2.0)
|
181
|
-
bundler (>= 1.3.0)
|
182
|
-
railties (= 5.2.0)
|
183
|
-
sprockets-rails (>= 2.0.0)
|
184
|
-
rails-dom-testing (2.0.3)
|
185
|
-
activesupport (>= 4.2.0)
|
186
|
-
nokogiri (>= 1.6)
|
187
|
-
rails-html-sanitizer (1.4.2)
|
188
|
-
loofah (~> 2.3)
|
189
|
-
railties (5.2.0)
|
190
|
-
actionpack (= 5.2.0)
|
191
|
-
activesupport (= 5.2.0)
|
192
|
-
method_source
|
193
|
-
rake (>= 0.8.7)
|
194
|
-
thor (>= 0.18.1, < 2.0)
|
195
|
-
rainbow (3.0.0)
|
196
|
-
rake (13.0.6)
|
197
|
-
retriable (3.1.2)
|
198
|
-
rexml (3.2.5)
|
199
|
-
rspec (3.10.0)
|
200
|
-
rspec-core (~> 3.10.0)
|
201
|
-
rspec-expectations (~> 3.10.0)
|
202
|
-
rspec-mocks (~> 3.10.0)
|
203
|
-
rspec-core (3.10.1)
|
204
|
-
rspec-support (~> 3.10.0)
|
205
|
-
rspec-expectations (3.10.1)
|
206
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
207
|
-
rspec-support (~> 3.10.0)
|
208
|
-
rspec-mocks (3.10.2)
|
209
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
210
|
-
rspec-support (~> 3.10.0)
|
211
|
-
rspec-rails (5.0.2)
|
212
|
-
actionpack (>= 5.2)
|
213
|
-
activesupport (>= 5.2)
|
214
|
-
railties (>= 5.2)
|
215
|
-
rspec-core (~> 3.10)
|
216
|
-
rspec-expectations (~> 3.10)
|
217
|
-
rspec-mocks (~> 3.10)
|
218
|
-
rspec-support (~> 3.10)
|
219
|
-
rspec-support (3.10.3)
|
220
|
-
rubocop (0.76.0)
|
221
|
-
jaro_winkler (~> 1.5.1)
|
222
|
-
parallel (~> 1.10)
|
223
|
-
parser (>= 2.6)
|
224
|
-
rainbow (>= 2.2.2, < 4.0)
|
225
|
-
ruby-progressbar (~> 1.7)
|
226
|
-
unicode-display_width (>= 1.4.0, < 1.7)
|
227
|
-
rubocop-rspec (1.37.0)
|
228
|
-
rubocop (>= 0.68.1)
|
229
|
-
ruby-progressbar (1.11.0)
|
230
|
-
ruby2_keywords (0.0.5)
|
231
|
-
semantic_logger (4.9.0)
|
232
|
-
concurrent-ruby (~> 1.0)
|
233
|
-
signet (0.16.1)
|
234
|
-
addressable (~> 2.8)
|
235
|
-
faraday (>= 0.17.5, < 3.0)
|
236
|
-
jwt (>= 1.5, < 3.0)
|
237
|
-
multi_json (~> 1.10)
|
238
|
-
sprockets (4.0.2)
|
239
|
-
concurrent-ruby (~> 1.0)
|
240
|
-
rack (> 1, < 3)
|
241
|
-
sprockets-rails (3.4.2)
|
242
|
-
actionpack (>= 5.2)
|
243
|
-
activesupport (>= 5.2)
|
244
|
-
sprockets (>= 3.0.0)
|
245
|
-
thor (1.1.0)
|
246
|
-
thread_safe (0.3.6)
|
247
|
-
timecop (0.9.4)
|
248
|
-
tzinfo (1.2.9)
|
249
|
-
thread_safe (~> 0.1)
|
250
|
-
unicode-display_width (1.6.1)
|
251
|
-
webmock (3.14.0)
|
252
|
-
addressable (>= 2.8.0)
|
253
|
-
crack (>= 0.3.2)
|
254
|
-
hashdiff (>= 0.4.0, < 2.0.0)
|
255
|
-
websocket-driver (0.7.5)
|
256
|
-
websocket-extensions (>= 0.1.0)
|
257
|
-
websocket-extensions (0.1.5)
|
258
|
-
|
259
|
-
PLATFORMS
|
260
|
-
ruby
|
261
|
-
|
262
|
-
DEPENDENCIES
|
263
|
-
appraisal
|
264
|
-
cloudenvoy!
|
265
|
-
rails (= 5.2)
|
266
|
-
rake (>= 12.3.3)
|
267
|
-
rspec (~> 3.0)
|
268
|
-
rspec-rails
|
269
|
-
rubocop (= 0.76.0)
|
270
|
-
rubocop-rspec (= 1.37.0)
|
271
|
-
semantic_logger
|
272
|
-
timecop
|
273
|
-
webmock
|
274
|
-
|
275
|
-
BUNDLED WITH
|
276
|
-
2.3.6
|
@@ -1,292 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: ..
|
3
|
-
specs:
|
4
|
-
cloudenvoy (0.5.0)
|
5
|
-
activesupport
|
6
|
-
google-cloud-pubsub (~> 2.0)
|
7
|
-
jwt
|
8
|
-
retriable
|
9
|
-
|
10
|
-
GEM
|
11
|
-
remote: https://rubygems.org/
|
12
|
-
specs:
|
13
|
-
actioncable (6.0.0)
|
14
|
-
actionpack (= 6.0.0)
|
15
|
-
nio4r (~> 2.0)
|
16
|
-
websocket-driver (>= 0.6.1)
|
17
|
-
actionmailbox (6.0.0)
|
18
|
-
actionpack (= 6.0.0)
|
19
|
-
activejob (= 6.0.0)
|
20
|
-
activerecord (= 6.0.0)
|
21
|
-
activestorage (= 6.0.0)
|
22
|
-
activesupport (= 6.0.0)
|
23
|
-
mail (>= 2.7.1)
|
24
|
-
actionmailer (6.0.0)
|
25
|
-
actionpack (= 6.0.0)
|
26
|
-
actionview (= 6.0.0)
|
27
|
-
activejob (= 6.0.0)
|
28
|
-
mail (~> 2.5, >= 2.5.4)
|
29
|
-
rails-dom-testing (~> 2.0)
|
30
|
-
actionpack (6.0.0)
|
31
|
-
actionview (= 6.0.0)
|
32
|
-
activesupport (= 6.0.0)
|
33
|
-
rack (~> 2.0)
|
34
|
-
rack-test (>= 0.6.3)
|
35
|
-
rails-dom-testing (~> 2.0)
|
36
|
-
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
37
|
-
actiontext (6.0.0)
|
38
|
-
actionpack (= 6.0.0)
|
39
|
-
activerecord (= 6.0.0)
|
40
|
-
activestorage (= 6.0.0)
|
41
|
-
activesupport (= 6.0.0)
|
42
|
-
nokogiri (>= 1.8.5)
|
43
|
-
actionview (6.0.0)
|
44
|
-
activesupport (= 6.0.0)
|
45
|
-
builder (~> 3.1)
|
46
|
-
erubi (~> 1.4)
|
47
|
-
rails-dom-testing (~> 2.0)
|
48
|
-
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
49
|
-
activejob (6.0.0)
|
50
|
-
activesupport (= 6.0.0)
|
51
|
-
globalid (>= 0.3.6)
|
52
|
-
activemodel (6.0.0)
|
53
|
-
activesupport (= 6.0.0)
|
54
|
-
activerecord (6.0.0)
|
55
|
-
activemodel (= 6.0.0)
|
56
|
-
activesupport (= 6.0.0)
|
57
|
-
activestorage (6.0.0)
|
58
|
-
actionpack (= 6.0.0)
|
59
|
-
activejob (= 6.0.0)
|
60
|
-
activerecord (= 6.0.0)
|
61
|
-
marcel (~> 0.3.1)
|
62
|
-
activesupport (6.0.0)
|
63
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
64
|
-
i18n (>= 0.7, < 2)
|
65
|
-
minitest (~> 5.1)
|
66
|
-
tzinfo (~> 1.1)
|
67
|
-
zeitwerk (~> 2.1, >= 2.1.8)
|
68
|
-
addressable (2.8.0)
|
69
|
-
public_suffix (>= 2.0.2, < 5.0)
|
70
|
-
appraisal (2.4.1)
|
71
|
-
bundler
|
72
|
-
rake
|
73
|
-
thor (>= 0.14.0)
|
74
|
-
ast (2.4.2)
|
75
|
-
builder (3.2.4)
|
76
|
-
concurrent-ruby (1.1.9)
|
77
|
-
crack (0.4.5)
|
78
|
-
rexml
|
79
|
-
crass (1.0.6)
|
80
|
-
diff-lcs (1.5.0)
|
81
|
-
erubi (1.10.0)
|
82
|
-
faraday (1.10.0)
|
83
|
-
faraday-em_http (~> 1.0)
|
84
|
-
faraday-em_synchrony (~> 1.0)
|
85
|
-
faraday-excon (~> 1.1)
|
86
|
-
faraday-httpclient (~> 1.0)
|
87
|
-
faraday-multipart (~> 1.0)
|
88
|
-
faraday-net_http (~> 1.0)
|
89
|
-
faraday-net_http_persistent (~> 1.0)
|
90
|
-
faraday-patron (~> 1.0)
|
91
|
-
faraday-rack (~> 1.0)
|
92
|
-
faraday-retry (~> 1.0)
|
93
|
-
ruby2_keywords (>= 0.0.4)
|
94
|
-
faraday-em_http (1.0.0)
|
95
|
-
faraday-em_synchrony (1.0.0)
|
96
|
-
faraday-excon (1.1.0)
|
97
|
-
faraday-httpclient (1.0.1)
|
98
|
-
faraday-multipart (1.0.3)
|
99
|
-
multipart-post (>= 1.2, < 3)
|
100
|
-
faraday-net_http (1.0.1)
|
101
|
-
faraday-net_http_persistent (1.2.0)
|
102
|
-
faraday-patron (1.0.0)
|
103
|
-
faraday-rack (1.0.0)
|
104
|
-
faraday-retry (1.0.3)
|
105
|
-
gapic-common (0.8.0)
|
106
|
-
faraday (~> 1.3)
|
107
|
-
google-protobuf (~> 3.14)
|
108
|
-
googleapis-common-protos (>= 1.3.11, < 2.a)
|
109
|
-
googleapis-common-protos-types (>= 1.0.6, < 2.a)
|
110
|
-
googleauth (>= 0.17.0, < 2.a)
|
111
|
-
grpc (~> 1.36)
|
112
|
-
globalid (1.0.0)
|
113
|
-
activesupport (>= 5.0)
|
114
|
-
google-cloud-core (1.6.0)
|
115
|
-
google-cloud-env (~> 1.0)
|
116
|
-
google-cloud-errors (~> 1.0)
|
117
|
-
google-cloud-env (1.5.0)
|
118
|
-
faraday (>= 0.17.3, < 2.0)
|
119
|
-
google-cloud-errors (1.2.0)
|
120
|
-
google-cloud-pubsub (2.9.1)
|
121
|
-
concurrent-ruby (~> 1.1)
|
122
|
-
google-cloud-core (~> 1.5)
|
123
|
-
google-cloud-pubsub-v1 (~> 0.0)
|
124
|
-
google-cloud-pubsub-v1 (0.7.1)
|
125
|
-
gapic-common (>= 0.7, < 2.a)
|
126
|
-
google-cloud-errors (~> 1.0)
|
127
|
-
grpc-google-iam-v1 (>= 0.6.10, < 2.a)
|
128
|
-
google-protobuf (3.19.4-x86_64-darwin)
|
129
|
-
googleapis-common-protos (1.3.12)
|
130
|
-
google-protobuf (~> 3.14)
|
131
|
-
googleapis-common-protos-types (~> 1.2)
|
132
|
-
grpc (~> 1.27)
|
133
|
-
googleapis-common-protos-types (1.3.0)
|
134
|
-
google-protobuf (~> 3.14)
|
135
|
-
googleauth (1.1.2)
|
136
|
-
faraday (>= 0.17.3, < 3.a)
|
137
|
-
jwt (>= 1.4, < 3.0)
|
138
|
-
memoist (~> 0.16)
|
139
|
-
multi_json (~> 1.11)
|
140
|
-
os (>= 0.9, < 2.0)
|
141
|
-
signet (>= 0.16, < 2.a)
|
142
|
-
grpc (1.43.1-universal-darwin)
|
143
|
-
google-protobuf (~> 3.18)
|
144
|
-
googleapis-common-protos-types (~> 1.0)
|
145
|
-
grpc-google-iam-v1 (1.0.0)
|
146
|
-
google-protobuf (~> 3.14)
|
147
|
-
googleapis-common-protos (>= 1.3.12, < 2.0)
|
148
|
-
grpc (~> 1.27)
|
149
|
-
hashdiff (1.0.1)
|
150
|
-
i18n (1.8.11)
|
151
|
-
concurrent-ruby (~> 1.0)
|
152
|
-
jaro_winkler (1.5.4)
|
153
|
-
jwt (2.3.0)
|
154
|
-
loofah (2.13.0)
|
155
|
-
crass (~> 1.0.2)
|
156
|
-
nokogiri (>= 1.5.9)
|
157
|
-
mail (2.7.1)
|
158
|
-
mini_mime (>= 0.1.1)
|
159
|
-
marcel (0.3.3)
|
160
|
-
mimemagic (~> 0.3.2)
|
161
|
-
memoist (0.16.2)
|
162
|
-
method_source (1.0.0)
|
163
|
-
mimemagic (0.3.10)
|
164
|
-
nokogiri (~> 1)
|
165
|
-
rake
|
166
|
-
mini_mime (1.1.2)
|
167
|
-
mini_portile2 (2.6.1)
|
168
|
-
minitest (5.15.0)
|
169
|
-
multi_json (1.15.0)
|
170
|
-
multipart-post (2.1.1)
|
171
|
-
nio4r (2.5.8)
|
172
|
-
nokogiri (1.12.5)
|
173
|
-
mini_portile2 (~> 2.6.1)
|
174
|
-
racc (~> 1.4)
|
175
|
-
os (1.1.4)
|
176
|
-
parallel (1.21.0)
|
177
|
-
parser (3.1.0.0)
|
178
|
-
ast (~> 2.4.1)
|
179
|
-
public_suffix (4.0.6)
|
180
|
-
racc (1.6.0)
|
181
|
-
rack (2.2.3)
|
182
|
-
rack-test (1.1.0)
|
183
|
-
rack (>= 1.0, < 3)
|
184
|
-
rails (6.0.0)
|
185
|
-
actioncable (= 6.0.0)
|
186
|
-
actionmailbox (= 6.0.0)
|
187
|
-
actionmailer (= 6.0.0)
|
188
|
-
actionpack (= 6.0.0)
|
189
|
-
actiontext (= 6.0.0)
|
190
|
-
actionview (= 6.0.0)
|
191
|
-
activejob (= 6.0.0)
|
192
|
-
activemodel (= 6.0.0)
|
193
|
-
activerecord (= 6.0.0)
|
194
|
-
activestorage (= 6.0.0)
|
195
|
-
activesupport (= 6.0.0)
|
196
|
-
bundler (>= 1.3.0)
|
197
|
-
railties (= 6.0.0)
|
198
|
-
sprockets-rails (>= 2.0.0)
|
199
|
-
rails-dom-testing (2.0.3)
|
200
|
-
activesupport (>= 4.2.0)
|
201
|
-
nokogiri (>= 1.6)
|
202
|
-
rails-html-sanitizer (1.4.2)
|
203
|
-
loofah (~> 2.3)
|
204
|
-
railties (6.0.0)
|
205
|
-
actionpack (= 6.0.0)
|
206
|
-
activesupport (= 6.0.0)
|
207
|
-
method_source
|
208
|
-
rake (>= 0.8.7)
|
209
|
-
thor (>= 0.20.3, < 2.0)
|
210
|
-
rainbow (3.0.0)
|
211
|
-
rake (13.0.6)
|
212
|
-
retriable (3.1.2)
|
213
|
-
rexml (3.2.5)
|
214
|
-
rspec (3.10.0)
|
215
|
-
rspec-core (~> 3.10.0)
|
216
|
-
rspec-expectations (~> 3.10.0)
|
217
|
-
rspec-mocks (~> 3.10.0)
|
218
|
-
rspec-core (3.10.1)
|
219
|
-
rspec-support (~> 3.10.0)
|
220
|
-
rspec-expectations (3.10.1)
|
221
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
222
|
-
rspec-support (~> 3.10.0)
|
223
|
-
rspec-mocks (3.10.2)
|
224
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
225
|
-
rspec-support (~> 3.10.0)
|
226
|
-
rspec-rails (5.0.2)
|
227
|
-
actionpack (>= 5.2)
|
228
|
-
activesupport (>= 5.2)
|
229
|
-
railties (>= 5.2)
|
230
|
-
rspec-core (~> 3.10)
|
231
|
-
rspec-expectations (~> 3.10)
|
232
|
-
rspec-mocks (~> 3.10)
|
233
|
-
rspec-support (~> 3.10)
|
234
|
-
rspec-support (3.10.3)
|
235
|
-
rubocop (0.76.0)
|
236
|
-
jaro_winkler (~> 1.5.1)
|
237
|
-
parallel (~> 1.10)
|
238
|
-
parser (>= 2.6)
|
239
|
-
rainbow (>= 2.2.2, < 4.0)
|
240
|
-
ruby-progressbar (~> 1.7)
|
241
|
-
unicode-display_width (>= 1.4.0, < 1.7)
|
242
|
-
rubocop-rspec (1.37.0)
|
243
|
-
rubocop (>= 0.68.1)
|
244
|
-
ruby-progressbar (1.11.0)
|
245
|
-
ruby2_keywords (0.0.5)
|
246
|
-
semantic_logger (4.9.0)
|
247
|
-
concurrent-ruby (~> 1.0)
|
248
|
-
signet (0.16.1)
|
249
|
-
addressable (~> 2.8)
|
250
|
-
faraday (>= 0.17.5, < 3.0)
|
251
|
-
jwt (>= 1.5, < 3.0)
|
252
|
-
multi_json (~> 1.10)
|
253
|
-
sprockets (4.0.2)
|
254
|
-
concurrent-ruby (~> 1.0)
|
255
|
-
rack (> 1, < 3)
|
256
|
-
sprockets-rails (3.4.2)
|
257
|
-
actionpack (>= 5.2)
|
258
|
-
activesupport (>= 5.2)
|
259
|
-
sprockets (>= 3.0.0)
|
260
|
-
thor (1.1.0)
|
261
|
-
thread_safe (0.3.6)
|
262
|
-
timecop (0.9.4)
|
263
|
-
tzinfo (1.2.9)
|
264
|
-
thread_safe (~> 0.1)
|
265
|
-
unicode-display_width (1.6.1)
|
266
|
-
webmock (3.14.0)
|
267
|
-
addressable (>= 2.8.0)
|
268
|
-
crack (>= 0.3.2)
|
269
|
-
hashdiff (>= 0.4.0, < 2.0.0)
|
270
|
-
websocket-driver (0.7.5)
|
271
|
-
websocket-extensions (>= 0.1.0)
|
272
|
-
websocket-extensions (0.1.5)
|
273
|
-
zeitwerk (2.5.3)
|
274
|
-
|
275
|
-
PLATFORMS
|
276
|
-
ruby
|
277
|
-
|
278
|
-
DEPENDENCIES
|
279
|
-
appraisal
|
280
|
-
cloudenvoy!
|
281
|
-
rails (= 6.0)
|
282
|
-
rake (>= 12.3.3)
|
283
|
-
rspec (~> 3.0)
|
284
|
-
rspec-rails
|
285
|
-
rubocop (= 0.76.0)
|
286
|
-
rubocop-rspec (= 1.37.0)
|
287
|
-
semantic_logger
|
288
|
-
timecop
|
289
|
-
webmock
|
290
|
-
|
291
|
-
BUNDLED WITH
|
292
|
-
2.3.6
|