cloudenvoy 0.3.0 → 0.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/test.yml +4 -0
- data/Appraisals +16 -0
- data/CHANGELOG.md +7 -0
- data/Gemfile.lock +4 -1
- data/cloudenvoy.gemspec +1 -0
- data/examples/rails/Gemfile.lock +1 -1
- data/gemfiles/rails_5.2.gemfile.lock +4 -1
- data/gemfiles/rails_6.0.gemfile.lock +4 -1
- data/gemfiles/semantic_logger_3.4.gemfile +7 -0
- data/gemfiles/semantic_logger_3.4.gemfile.lock +265 -0
- data/gemfiles/semantic_logger_4.6.gemfile +7 -0
- data/gemfiles/semantic_logger_4.6.gemfile.lock +265 -0
- data/gemfiles/semantic_logger_4.7.0.gemfile +7 -0
- data/gemfiles/semantic_logger_4.7.0.gemfile.lock +265 -0
- data/gemfiles/semantic_logger_4.7.2.gemfile +7 -0
- data/gemfiles/semantic_logger_4.7.2.gemfile.lock +265 -0
- data/lib/cloudenvoy/logger_wrapper.rb +1 -1
- data/lib/cloudenvoy/version.rb +1 -1
- metadata +24 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b8bd773adfe87f0e49c1670e33ecca0654fbfad1fa2e7ce45ae2cb820c1c7012
|
4
|
+
data.tar.gz: fc401a6aa31f68b9138bc52c77b66b9707d6d21d7e19cd6aaae11cbecb1a75e5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 07d4494017e73cf4cb14c3d822d22c0b595ed8a669c4fe967cf1d9a29411a078a9fdc70d9507e70ac52a4b4801e3bce31295db008bd8b613f71efc70198d7200
|
7
|
+
data.tar.gz: dadea963a4ff4a566585d8f4462f6625de9064254c2781a0d62fbc6c3d3819c49fa67cce9917a59970b575ffc091b3b39478229859ced3b65a4a8e7f8d00b184
|
data/.github/workflows/test.yml
CHANGED
data/Appraisals
CHANGED
@@ -7,3 +7,19 @@ end
|
|
7
7
|
appraise 'rails-6.0' do
|
8
8
|
gem 'rails', '6.0'
|
9
9
|
end
|
10
|
+
|
11
|
+
appraise 'semantic_logger-3.4' do
|
12
|
+
gem 'semantic_logger', '3.4.1'
|
13
|
+
end
|
14
|
+
|
15
|
+
appraise 'semantic_logger-4.6' do
|
16
|
+
gem 'semantic_logger', '4.6.1'
|
17
|
+
end
|
18
|
+
|
19
|
+
appraise 'semantic_logger-4.7.0' do
|
20
|
+
gem 'semantic_logger', '4.7.0'
|
21
|
+
end
|
22
|
+
|
23
|
+
appraise 'semantic_logger-4.7.2' do
|
24
|
+
gem 'semantic_logger', '4.7.2'
|
25
|
+
end
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,12 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [v0.3.1](https://github.com/keypup-io/cloudenvoy/tree/v0.3.1) (2020-10-05)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/keypup-io/cloudenvoy/compare/v0.3.0...v0.3.1)
|
6
|
+
|
7
|
+
**Bug fix:**
|
8
|
+
- Logging: fix log processing with `semantic_logger` `v4.7.2`. Accept any args on block passed to the logger.
|
9
|
+
|
3
10
|
## [v0.3.0](https://github.com/keypup-io/cloudenvoy/tree/v0.3.0) (2020-09-26)
|
4
11
|
|
5
12
|
[Full Changelog](https://github.com/keypup-io/cloudenvoy/compare/v0.2.0...v0.3.0)
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
cloudenvoy (0.3.
|
4
|
+
cloudenvoy (0.3.1)
|
5
5
|
activesupport
|
6
6
|
google-cloud-pubsub (~> 2.0)
|
7
7
|
jwt
|
@@ -216,6 +216,8 @@ GEM
|
|
216
216
|
rubocop (>= 0.68.1)
|
217
217
|
ruby-progressbar (1.10.1)
|
218
218
|
safe_yaml (1.0.5)
|
219
|
+
semantic_logger (4.7.2)
|
220
|
+
concurrent-ruby (~> 1.0)
|
219
221
|
signet (0.14.0)
|
220
222
|
addressable (~> 2.3)
|
221
223
|
faraday (>= 0.17.3, < 2.0)
|
@@ -256,6 +258,7 @@ DEPENDENCIES
|
|
256
258
|
rspec-rails
|
257
259
|
rubocop (= 0.76.0)
|
258
260
|
rubocop-rspec (= 1.37.0)
|
261
|
+
semantic_logger
|
259
262
|
sqlite3
|
260
263
|
timecop
|
261
264
|
webmock
|
data/cloudenvoy.gemspec
CHANGED
@@ -37,6 +37,7 @@ Gem::Specification.new do |spec|
|
|
37
37
|
spec.add_development_dependency 'rspec', '~> 3.0'
|
38
38
|
spec.add_development_dependency 'rubocop', '0.76.0'
|
39
39
|
spec.add_development_dependency 'rubocop-rspec', '1.37.0'
|
40
|
+
spec.add_development_dependency 'semantic_logger'
|
40
41
|
spec.add_development_dependency 'timecop'
|
41
42
|
spec.add_development_dependency 'webmock'
|
42
43
|
|
data/examples/rails/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
cloudenvoy (0.
|
4
|
+
cloudenvoy (0.3.1)
|
5
5
|
activesupport
|
6
6
|
google-cloud-pubsub (~> 2.0)
|
7
7
|
jwt
|
@@ -201,6 +201,8 @@ GEM
|
|
201
201
|
rubocop (>= 0.68.1)
|
202
202
|
ruby-progressbar (1.10.1)
|
203
203
|
safe_yaml (1.0.5)
|
204
|
+
semantic_logger (4.7.2)
|
205
|
+
concurrent-ruby (~> 1.0)
|
204
206
|
signet (0.14.0)
|
205
207
|
addressable (~> 2.3)
|
206
208
|
faraday (>= 0.17.3, < 2.0)
|
@@ -240,6 +242,7 @@ DEPENDENCIES
|
|
240
242
|
rspec-rails
|
241
243
|
rubocop (= 0.76.0)
|
242
244
|
rubocop-rspec (= 1.37.0)
|
245
|
+
semantic_logger
|
243
246
|
sqlite3
|
244
247
|
timecop
|
245
248
|
webmock
|
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
cloudenvoy (0.
|
4
|
+
cloudenvoy (0.3.1)
|
5
5
|
activesupport
|
6
6
|
google-cloud-pubsub (~> 2.0)
|
7
7
|
jwt
|
@@ -216,6 +216,8 @@ GEM
|
|
216
216
|
rubocop (>= 0.68.1)
|
217
217
|
ruby-progressbar (1.10.1)
|
218
218
|
safe_yaml (1.0.5)
|
219
|
+
semantic_logger (4.7.2)
|
220
|
+
concurrent-ruby (~> 1.0)
|
219
221
|
signet (0.14.0)
|
220
222
|
addressable (~> 2.3)
|
221
223
|
faraday (>= 0.17.3, < 2.0)
|
@@ -256,6 +258,7 @@ DEPENDENCIES
|
|
256
258
|
rspec-rails
|
257
259
|
rubocop (= 0.76.0)
|
258
260
|
rubocop-rspec (= 1.37.0)
|
261
|
+
semantic_logger
|
259
262
|
sqlite3
|
260
263
|
timecop
|
261
264
|
webmock
|
@@ -0,0 +1,265 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
cloudenvoy (0.3.1)
|
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.3.3)
|
14
|
+
actionpack (= 6.0.3.3)
|
15
|
+
nio4r (~> 2.0)
|
16
|
+
websocket-driver (>= 0.6.1)
|
17
|
+
actionmailbox (6.0.3.3)
|
18
|
+
actionpack (= 6.0.3.3)
|
19
|
+
activejob (= 6.0.3.3)
|
20
|
+
activerecord (= 6.0.3.3)
|
21
|
+
activestorage (= 6.0.3.3)
|
22
|
+
activesupport (= 6.0.3.3)
|
23
|
+
mail (>= 2.7.1)
|
24
|
+
actionmailer (6.0.3.3)
|
25
|
+
actionpack (= 6.0.3.3)
|
26
|
+
actionview (= 6.0.3.3)
|
27
|
+
activejob (= 6.0.3.3)
|
28
|
+
mail (~> 2.5, >= 2.5.4)
|
29
|
+
rails-dom-testing (~> 2.0)
|
30
|
+
actionpack (6.0.3.3)
|
31
|
+
actionview (= 6.0.3.3)
|
32
|
+
activesupport (= 6.0.3.3)
|
33
|
+
rack (~> 2.0, >= 2.0.8)
|
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.3.3)
|
38
|
+
actionpack (= 6.0.3.3)
|
39
|
+
activerecord (= 6.0.3.3)
|
40
|
+
activestorage (= 6.0.3.3)
|
41
|
+
activesupport (= 6.0.3.3)
|
42
|
+
nokogiri (>= 1.8.5)
|
43
|
+
actionview (6.0.3.3)
|
44
|
+
activesupport (= 6.0.3.3)
|
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.3.3)
|
50
|
+
activesupport (= 6.0.3.3)
|
51
|
+
globalid (>= 0.3.6)
|
52
|
+
activemodel (6.0.3.3)
|
53
|
+
activesupport (= 6.0.3.3)
|
54
|
+
activerecord (6.0.3.3)
|
55
|
+
activemodel (= 6.0.3.3)
|
56
|
+
activesupport (= 6.0.3.3)
|
57
|
+
activestorage (6.0.3.3)
|
58
|
+
actionpack (= 6.0.3.3)
|
59
|
+
activejob (= 6.0.3.3)
|
60
|
+
activerecord (= 6.0.3.3)
|
61
|
+
marcel (~> 0.3.1)
|
62
|
+
activesupport (6.0.3.3)
|
63
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
64
|
+
i18n (>= 0.7, < 2)
|
65
|
+
minitest (~> 5.1)
|
66
|
+
tzinfo (~> 1.1)
|
67
|
+
zeitwerk (~> 2.2, >= 2.2.2)
|
68
|
+
addressable (2.7.0)
|
69
|
+
public_suffix (>= 2.0.2, < 5.0)
|
70
|
+
appraisal (2.3.0)
|
71
|
+
bundler
|
72
|
+
rake
|
73
|
+
thor (>= 0.14.0)
|
74
|
+
ast (2.4.1)
|
75
|
+
builder (3.2.4)
|
76
|
+
concurrent-ruby (1.1.7)
|
77
|
+
crack (0.4.4)
|
78
|
+
crass (1.0.6)
|
79
|
+
diff-lcs (1.4.4)
|
80
|
+
erubi (1.9.0)
|
81
|
+
faraday (1.0.1)
|
82
|
+
multipart-post (>= 1.2, < 3)
|
83
|
+
gapic-common (0.3.4)
|
84
|
+
google-protobuf (~> 3.12, >= 3.12.2)
|
85
|
+
googleapis-common-protos (>= 1.3.9, < 2.0)
|
86
|
+
googleapis-common-protos-types (>= 1.0.4, < 2.0)
|
87
|
+
googleauth (~> 0.9)
|
88
|
+
grpc (~> 1.25)
|
89
|
+
globalid (0.4.2)
|
90
|
+
activesupport (>= 4.2.0)
|
91
|
+
google-cloud-core (1.5.0)
|
92
|
+
google-cloud-env (~> 1.0)
|
93
|
+
google-cloud-errors (~> 1.0)
|
94
|
+
google-cloud-env (1.3.3)
|
95
|
+
faraday (>= 0.17.3, < 2.0)
|
96
|
+
google-cloud-errors (1.0.1)
|
97
|
+
google-cloud-pubsub (2.0.0)
|
98
|
+
concurrent-ruby (~> 1.1)
|
99
|
+
google-cloud-core (~> 1.5)
|
100
|
+
google-cloud-pubsub-v1 (~> 0.0)
|
101
|
+
google-cloud-pubsub-v1 (0.1.2)
|
102
|
+
gapic-common (~> 0.3)
|
103
|
+
google-cloud-errors (~> 1.0)
|
104
|
+
grpc-google-iam-v1 (>= 0.6.10, < 2.0)
|
105
|
+
google-protobuf (3.13.0-universal-darwin)
|
106
|
+
googleapis-common-protos (1.3.10)
|
107
|
+
google-protobuf (~> 3.11)
|
108
|
+
googleapis-common-protos-types (>= 1.0.5, < 2.0)
|
109
|
+
grpc (~> 1.27)
|
110
|
+
googleapis-common-protos-types (1.0.5)
|
111
|
+
google-protobuf (~> 3.11)
|
112
|
+
googleauth (0.13.1)
|
113
|
+
faraday (>= 0.17.3, < 2.0)
|
114
|
+
jwt (>= 1.4, < 3.0)
|
115
|
+
memoist (~> 0.16)
|
116
|
+
multi_json (~> 1.11)
|
117
|
+
os (>= 0.9, < 2.0)
|
118
|
+
signet (~> 0.14)
|
119
|
+
grpc (1.32.0-universal-darwin)
|
120
|
+
google-protobuf (~> 3.13)
|
121
|
+
googleapis-common-protos-types (~> 1.0)
|
122
|
+
grpc-google-iam-v1 (0.6.10)
|
123
|
+
google-protobuf (~> 3.11)
|
124
|
+
googleapis-common-protos (>= 1.3.10, < 2.0)
|
125
|
+
grpc (~> 1.27)
|
126
|
+
hashdiff (1.0.1)
|
127
|
+
i18n (1.8.5)
|
128
|
+
concurrent-ruby (~> 1.0)
|
129
|
+
jaro_winkler (1.5.4)
|
130
|
+
jwt (2.2.2)
|
131
|
+
loofah (2.7.0)
|
132
|
+
crass (~> 1.0.2)
|
133
|
+
nokogiri (>= 1.5.9)
|
134
|
+
mail (2.7.1)
|
135
|
+
mini_mime (>= 0.1.1)
|
136
|
+
marcel (0.3.3)
|
137
|
+
mimemagic (~> 0.3.2)
|
138
|
+
memoist (0.16.2)
|
139
|
+
method_source (1.0.0)
|
140
|
+
mimemagic (0.3.5)
|
141
|
+
mini_mime (1.0.2)
|
142
|
+
mini_portile2 (2.4.0)
|
143
|
+
minitest (5.14.2)
|
144
|
+
multi_json (1.15.0)
|
145
|
+
multipart-post (2.1.1)
|
146
|
+
nio4r (2.5.4)
|
147
|
+
nokogiri (1.10.10)
|
148
|
+
mini_portile2 (~> 2.4.0)
|
149
|
+
os (1.1.1)
|
150
|
+
parallel (1.19.2)
|
151
|
+
parser (2.7.1.5)
|
152
|
+
ast (~> 2.4.1)
|
153
|
+
public_suffix (4.0.6)
|
154
|
+
rack (2.2.3)
|
155
|
+
rack-test (1.1.0)
|
156
|
+
rack (>= 1.0, < 3)
|
157
|
+
rails (6.0.3.3)
|
158
|
+
actioncable (= 6.0.3.3)
|
159
|
+
actionmailbox (= 6.0.3.3)
|
160
|
+
actionmailer (= 6.0.3.3)
|
161
|
+
actionpack (= 6.0.3.3)
|
162
|
+
actiontext (= 6.0.3.3)
|
163
|
+
actionview (= 6.0.3.3)
|
164
|
+
activejob (= 6.0.3.3)
|
165
|
+
activemodel (= 6.0.3.3)
|
166
|
+
activerecord (= 6.0.3.3)
|
167
|
+
activestorage (= 6.0.3.3)
|
168
|
+
activesupport (= 6.0.3.3)
|
169
|
+
bundler (>= 1.3.0)
|
170
|
+
railties (= 6.0.3.3)
|
171
|
+
sprockets-rails (>= 2.0.0)
|
172
|
+
rails-dom-testing (2.0.3)
|
173
|
+
activesupport (>= 4.2.0)
|
174
|
+
nokogiri (>= 1.6)
|
175
|
+
rails-html-sanitizer (1.3.0)
|
176
|
+
loofah (~> 2.3)
|
177
|
+
railties (6.0.3.3)
|
178
|
+
actionpack (= 6.0.3.3)
|
179
|
+
activesupport (= 6.0.3.3)
|
180
|
+
method_source
|
181
|
+
rake (>= 0.8.7)
|
182
|
+
thor (>= 0.20.3, < 2.0)
|
183
|
+
rainbow (3.0.0)
|
184
|
+
rake (13.0.1)
|
185
|
+
retriable (3.1.2)
|
186
|
+
rspec (3.9.0)
|
187
|
+
rspec-core (~> 3.9.0)
|
188
|
+
rspec-expectations (~> 3.9.0)
|
189
|
+
rspec-mocks (~> 3.9.0)
|
190
|
+
rspec-core (3.9.3)
|
191
|
+
rspec-support (~> 3.9.3)
|
192
|
+
rspec-expectations (3.9.2)
|
193
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
194
|
+
rspec-support (~> 3.9.0)
|
195
|
+
rspec-mocks (3.9.1)
|
196
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
197
|
+
rspec-support (~> 3.9.0)
|
198
|
+
rspec-rails (4.0.1)
|
199
|
+
actionpack (>= 4.2)
|
200
|
+
activesupport (>= 4.2)
|
201
|
+
railties (>= 4.2)
|
202
|
+
rspec-core (~> 3.9)
|
203
|
+
rspec-expectations (~> 3.9)
|
204
|
+
rspec-mocks (~> 3.9)
|
205
|
+
rspec-support (~> 3.9)
|
206
|
+
rspec-support (3.9.3)
|
207
|
+
rubocop (0.76.0)
|
208
|
+
jaro_winkler (~> 1.5.1)
|
209
|
+
parallel (~> 1.10)
|
210
|
+
parser (>= 2.6)
|
211
|
+
rainbow (>= 2.2.2, < 4.0)
|
212
|
+
ruby-progressbar (~> 1.7)
|
213
|
+
unicode-display_width (>= 1.4.0, < 1.7)
|
214
|
+
rubocop-rspec (1.37.0)
|
215
|
+
rubocop (>= 0.68.1)
|
216
|
+
ruby-progressbar (1.10.1)
|
217
|
+
semantic_logger (3.4.1)
|
218
|
+
concurrent-ruby (~> 1.0)
|
219
|
+
signet (0.14.0)
|
220
|
+
addressable (~> 2.3)
|
221
|
+
faraday (>= 0.17.3, < 2.0)
|
222
|
+
jwt (>= 1.5, < 3.0)
|
223
|
+
multi_json (~> 1.10)
|
224
|
+
sprockets (4.0.2)
|
225
|
+
concurrent-ruby (~> 1.0)
|
226
|
+
rack (> 1, < 3)
|
227
|
+
sprockets-rails (3.2.2)
|
228
|
+
actionpack (>= 4.0)
|
229
|
+
activesupport (>= 4.0)
|
230
|
+
sprockets (>= 3.0.0)
|
231
|
+
sqlite3 (1.4.2)
|
232
|
+
thor (1.0.1)
|
233
|
+
thread_safe (0.3.6)
|
234
|
+
timecop (0.9.1)
|
235
|
+
tzinfo (1.2.7)
|
236
|
+
thread_safe (~> 0.1)
|
237
|
+
unicode-display_width (1.6.1)
|
238
|
+
webmock (3.9.1)
|
239
|
+
addressable (>= 2.3.6)
|
240
|
+
crack (>= 0.3.2)
|
241
|
+
hashdiff (>= 0.4.0, < 2.0.0)
|
242
|
+
websocket-driver (0.7.3)
|
243
|
+
websocket-extensions (>= 0.1.0)
|
244
|
+
websocket-extensions (0.1.5)
|
245
|
+
zeitwerk (2.4.0)
|
246
|
+
|
247
|
+
PLATFORMS
|
248
|
+
ruby
|
249
|
+
|
250
|
+
DEPENDENCIES
|
251
|
+
appraisal
|
252
|
+
cloudenvoy!
|
253
|
+
rails
|
254
|
+
rake (>= 12.3.3)
|
255
|
+
rspec (~> 3.0)
|
256
|
+
rspec-rails
|
257
|
+
rubocop (= 0.76.0)
|
258
|
+
rubocop-rspec (= 1.37.0)
|
259
|
+
semantic_logger (= 3.4.1)
|
260
|
+
sqlite3
|
261
|
+
timecop
|
262
|
+
webmock
|
263
|
+
|
264
|
+
BUNDLED WITH
|
265
|
+
2.1.4
|
@@ -0,0 +1,265 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
cloudenvoy (0.3.1)
|
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.3.3)
|
14
|
+
actionpack (= 6.0.3.3)
|
15
|
+
nio4r (~> 2.0)
|
16
|
+
websocket-driver (>= 0.6.1)
|
17
|
+
actionmailbox (6.0.3.3)
|
18
|
+
actionpack (= 6.0.3.3)
|
19
|
+
activejob (= 6.0.3.3)
|
20
|
+
activerecord (= 6.0.3.3)
|
21
|
+
activestorage (= 6.0.3.3)
|
22
|
+
activesupport (= 6.0.3.3)
|
23
|
+
mail (>= 2.7.1)
|
24
|
+
actionmailer (6.0.3.3)
|
25
|
+
actionpack (= 6.0.3.3)
|
26
|
+
actionview (= 6.0.3.3)
|
27
|
+
activejob (= 6.0.3.3)
|
28
|
+
mail (~> 2.5, >= 2.5.4)
|
29
|
+
rails-dom-testing (~> 2.0)
|
30
|
+
actionpack (6.0.3.3)
|
31
|
+
actionview (= 6.0.3.3)
|
32
|
+
activesupport (= 6.0.3.3)
|
33
|
+
rack (~> 2.0, >= 2.0.8)
|
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.3.3)
|
38
|
+
actionpack (= 6.0.3.3)
|
39
|
+
activerecord (= 6.0.3.3)
|
40
|
+
activestorage (= 6.0.3.3)
|
41
|
+
activesupport (= 6.0.3.3)
|
42
|
+
nokogiri (>= 1.8.5)
|
43
|
+
actionview (6.0.3.3)
|
44
|
+
activesupport (= 6.0.3.3)
|
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.3.3)
|
50
|
+
activesupport (= 6.0.3.3)
|
51
|
+
globalid (>= 0.3.6)
|
52
|
+
activemodel (6.0.3.3)
|
53
|
+
activesupport (= 6.0.3.3)
|
54
|
+
activerecord (6.0.3.3)
|
55
|
+
activemodel (= 6.0.3.3)
|
56
|
+
activesupport (= 6.0.3.3)
|
57
|
+
activestorage (6.0.3.3)
|
58
|
+
actionpack (= 6.0.3.3)
|
59
|
+
activejob (= 6.0.3.3)
|
60
|
+
activerecord (= 6.0.3.3)
|
61
|
+
marcel (~> 0.3.1)
|
62
|
+
activesupport (6.0.3.3)
|
63
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
64
|
+
i18n (>= 0.7, < 2)
|
65
|
+
minitest (~> 5.1)
|
66
|
+
tzinfo (~> 1.1)
|
67
|
+
zeitwerk (~> 2.2, >= 2.2.2)
|
68
|
+
addressable (2.7.0)
|
69
|
+
public_suffix (>= 2.0.2, < 5.0)
|
70
|
+
appraisal (2.3.0)
|
71
|
+
bundler
|
72
|
+
rake
|
73
|
+
thor (>= 0.14.0)
|
74
|
+
ast (2.4.1)
|
75
|
+
builder (3.2.4)
|
76
|
+
concurrent-ruby (1.1.7)
|
77
|
+
crack (0.4.4)
|
78
|
+
crass (1.0.6)
|
79
|
+
diff-lcs (1.4.4)
|
80
|
+
erubi (1.9.0)
|
81
|
+
faraday (1.0.1)
|
82
|
+
multipart-post (>= 1.2, < 3)
|
83
|
+
gapic-common (0.3.4)
|
84
|
+
google-protobuf (~> 3.12, >= 3.12.2)
|
85
|
+
googleapis-common-protos (>= 1.3.9, < 2.0)
|
86
|
+
googleapis-common-protos-types (>= 1.0.4, < 2.0)
|
87
|
+
googleauth (~> 0.9)
|
88
|
+
grpc (~> 1.25)
|
89
|
+
globalid (0.4.2)
|
90
|
+
activesupport (>= 4.2.0)
|
91
|
+
google-cloud-core (1.5.0)
|
92
|
+
google-cloud-env (~> 1.0)
|
93
|
+
google-cloud-errors (~> 1.0)
|
94
|
+
google-cloud-env (1.3.3)
|
95
|
+
faraday (>= 0.17.3, < 2.0)
|
96
|
+
google-cloud-errors (1.0.1)
|
97
|
+
google-cloud-pubsub (2.0.0)
|
98
|
+
concurrent-ruby (~> 1.1)
|
99
|
+
google-cloud-core (~> 1.5)
|
100
|
+
google-cloud-pubsub-v1 (~> 0.0)
|
101
|
+
google-cloud-pubsub-v1 (0.1.2)
|
102
|
+
gapic-common (~> 0.3)
|
103
|
+
google-cloud-errors (~> 1.0)
|
104
|
+
grpc-google-iam-v1 (>= 0.6.10, < 2.0)
|
105
|
+
google-protobuf (3.13.0-universal-darwin)
|
106
|
+
googleapis-common-protos (1.3.10)
|
107
|
+
google-protobuf (~> 3.11)
|
108
|
+
googleapis-common-protos-types (>= 1.0.5, < 2.0)
|
109
|
+
grpc (~> 1.27)
|
110
|
+
googleapis-common-protos-types (1.0.5)
|
111
|
+
google-protobuf (~> 3.11)
|
112
|
+
googleauth (0.13.1)
|
113
|
+
faraday (>= 0.17.3, < 2.0)
|
114
|
+
jwt (>= 1.4, < 3.0)
|
115
|
+
memoist (~> 0.16)
|
116
|
+
multi_json (~> 1.11)
|
117
|
+
os (>= 0.9, < 2.0)
|
118
|
+
signet (~> 0.14)
|
119
|
+
grpc (1.32.0-universal-darwin)
|
120
|
+
google-protobuf (~> 3.13)
|
121
|
+
googleapis-common-protos-types (~> 1.0)
|
122
|
+
grpc-google-iam-v1 (0.6.10)
|
123
|
+
google-protobuf (~> 3.11)
|
124
|
+
googleapis-common-protos (>= 1.3.10, < 2.0)
|
125
|
+
grpc (~> 1.27)
|
126
|
+
hashdiff (1.0.1)
|
127
|
+
i18n (1.8.5)
|
128
|
+
concurrent-ruby (~> 1.0)
|
129
|
+
jaro_winkler (1.5.4)
|
130
|
+
jwt (2.2.2)
|
131
|
+
loofah (2.7.0)
|
132
|
+
crass (~> 1.0.2)
|
133
|
+
nokogiri (>= 1.5.9)
|
134
|
+
mail (2.7.1)
|
135
|
+
mini_mime (>= 0.1.1)
|
136
|
+
marcel (0.3.3)
|
137
|
+
mimemagic (~> 0.3.2)
|
138
|
+
memoist (0.16.2)
|
139
|
+
method_source (1.0.0)
|
140
|
+
mimemagic (0.3.5)
|
141
|
+
mini_mime (1.0.2)
|
142
|
+
mini_portile2 (2.4.0)
|
143
|
+
minitest (5.14.2)
|
144
|
+
multi_json (1.15.0)
|
145
|
+
multipart-post (2.1.1)
|
146
|
+
nio4r (2.5.4)
|
147
|
+
nokogiri (1.10.10)
|
148
|
+
mini_portile2 (~> 2.4.0)
|
149
|
+
os (1.1.1)
|
150
|
+
parallel (1.19.2)
|
151
|
+
parser (2.7.1.5)
|
152
|
+
ast (~> 2.4.1)
|
153
|
+
public_suffix (4.0.6)
|
154
|
+
rack (2.2.3)
|
155
|
+
rack-test (1.1.0)
|
156
|
+
rack (>= 1.0, < 3)
|
157
|
+
rails (6.0.3.3)
|
158
|
+
actioncable (= 6.0.3.3)
|
159
|
+
actionmailbox (= 6.0.3.3)
|
160
|
+
actionmailer (= 6.0.3.3)
|
161
|
+
actionpack (= 6.0.3.3)
|
162
|
+
actiontext (= 6.0.3.3)
|
163
|
+
actionview (= 6.0.3.3)
|
164
|
+
activejob (= 6.0.3.3)
|
165
|
+
activemodel (= 6.0.3.3)
|
166
|
+
activerecord (= 6.0.3.3)
|
167
|
+
activestorage (= 6.0.3.3)
|
168
|
+
activesupport (= 6.0.3.3)
|
169
|
+
bundler (>= 1.3.0)
|
170
|
+
railties (= 6.0.3.3)
|
171
|
+
sprockets-rails (>= 2.0.0)
|
172
|
+
rails-dom-testing (2.0.3)
|
173
|
+
activesupport (>= 4.2.0)
|
174
|
+
nokogiri (>= 1.6)
|
175
|
+
rails-html-sanitizer (1.3.0)
|
176
|
+
loofah (~> 2.3)
|
177
|
+
railties (6.0.3.3)
|
178
|
+
actionpack (= 6.0.3.3)
|
179
|
+
activesupport (= 6.0.3.3)
|
180
|
+
method_source
|
181
|
+
rake (>= 0.8.7)
|
182
|
+
thor (>= 0.20.3, < 2.0)
|
183
|
+
rainbow (3.0.0)
|
184
|
+
rake (13.0.1)
|
185
|
+
retriable (3.1.2)
|
186
|
+
rspec (3.9.0)
|
187
|
+
rspec-core (~> 3.9.0)
|
188
|
+
rspec-expectations (~> 3.9.0)
|
189
|
+
rspec-mocks (~> 3.9.0)
|
190
|
+
rspec-core (3.9.3)
|
191
|
+
rspec-support (~> 3.9.3)
|
192
|
+
rspec-expectations (3.9.2)
|
193
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
194
|
+
rspec-support (~> 3.9.0)
|
195
|
+
rspec-mocks (3.9.1)
|
196
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
197
|
+
rspec-support (~> 3.9.0)
|
198
|
+
rspec-rails (4.0.1)
|
199
|
+
actionpack (>= 4.2)
|
200
|
+
activesupport (>= 4.2)
|
201
|
+
railties (>= 4.2)
|
202
|
+
rspec-core (~> 3.9)
|
203
|
+
rspec-expectations (~> 3.9)
|
204
|
+
rspec-mocks (~> 3.9)
|
205
|
+
rspec-support (~> 3.9)
|
206
|
+
rspec-support (3.9.3)
|
207
|
+
rubocop (0.76.0)
|
208
|
+
jaro_winkler (~> 1.5.1)
|
209
|
+
parallel (~> 1.10)
|
210
|
+
parser (>= 2.6)
|
211
|
+
rainbow (>= 2.2.2, < 4.0)
|
212
|
+
ruby-progressbar (~> 1.7)
|
213
|
+
unicode-display_width (>= 1.4.0, < 1.7)
|
214
|
+
rubocop-rspec (1.37.0)
|
215
|
+
rubocop (>= 0.68.1)
|
216
|
+
ruby-progressbar (1.10.1)
|
217
|
+
semantic_logger (4.6.1)
|
218
|
+
concurrent-ruby (~> 1.0)
|
219
|
+
signet (0.14.0)
|
220
|
+
addressable (~> 2.3)
|
221
|
+
faraday (>= 0.17.3, < 2.0)
|
222
|
+
jwt (>= 1.5, < 3.0)
|
223
|
+
multi_json (~> 1.10)
|
224
|
+
sprockets (4.0.2)
|
225
|
+
concurrent-ruby (~> 1.0)
|
226
|
+
rack (> 1, < 3)
|
227
|
+
sprockets-rails (3.2.2)
|
228
|
+
actionpack (>= 4.0)
|
229
|
+
activesupport (>= 4.0)
|
230
|
+
sprockets (>= 3.0.0)
|
231
|
+
sqlite3 (1.4.2)
|
232
|
+
thor (1.0.1)
|
233
|
+
thread_safe (0.3.6)
|
234
|
+
timecop (0.9.1)
|
235
|
+
tzinfo (1.2.7)
|
236
|
+
thread_safe (~> 0.1)
|
237
|
+
unicode-display_width (1.6.1)
|
238
|
+
webmock (3.9.1)
|
239
|
+
addressable (>= 2.3.6)
|
240
|
+
crack (>= 0.3.2)
|
241
|
+
hashdiff (>= 0.4.0, < 2.0.0)
|
242
|
+
websocket-driver (0.7.3)
|
243
|
+
websocket-extensions (>= 0.1.0)
|
244
|
+
websocket-extensions (0.1.5)
|
245
|
+
zeitwerk (2.4.0)
|
246
|
+
|
247
|
+
PLATFORMS
|
248
|
+
ruby
|
249
|
+
|
250
|
+
DEPENDENCIES
|
251
|
+
appraisal
|
252
|
+
cloudenvoy!
|
253
|
+
rails
|
254
|
+
rake (>= 12.3.3)
|
255
|
+
rspec (~> 3.0)
|
256
|
+
rspec-rails
|
257
|
+
rubocop (= 0.76.0)
|
258
|
+
rubocop-rspec (= 1.37.0)
|
259
|
+
semantic_logger (= 4.6.1)
|
260
|
+
sqlite3
|
261
|
+
timecop
|
262
|
+
webmock
|
263
|
+
|
264
|
+
BUNDLED WITH
|
265
|
+
2.1.4
|
@@ -0,0 +1,265 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
cloudenvoy (0.3.1)
|
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.3.3)
|
14
|
+
actionpack (= 6.0.3.3)
|
15
|
+
nio4r (~> 2.0)
|
16
|
+
websocket-driver (>= 0.6.1)
|
17
|
+
actionmailbox (6.0.3.3)
|
18
|
+
actionpack (= 6.0.3.3)
|
19
|
+
activejob (= 6.0.3.3)
|
20
|
+
activerecord (= 6.0.3.3)
|
21
|
+
activestorage (= 6.0.3.3)
|
22
|
+
activesupport (= 6.0.3.3)
|
23
|
+
mail (>= 2.7.1)
|
24
|
+
actionmailer (6.0.3.3)
|
25
|
+
actionpack (= 6.0.3.3)
|
26
|
+
actionview (= 6.0.3.3)
|
27
|
+
activejob (= 6.0.3.3)
|
28
|
+
mail (~> 2.5, >= 2.5.4)
|
29
|
+
rails-dom-testing (~> 2.0)
|
30
|
+
actionpack (6.0.3.3)
|
31
|
+
actionview (= 6.0.3.3)
|
32
|
+
activesupport (= 6.0.3.3)
|
33
|
+
rack (~> 2.0, >= 2.0.8)
|
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.3.3)
|
38
|
+
actionpack (= 6.0.3.3)
|
39
|
+
activerecord (= 6.0.3.3)
|
40
|
+
activestorage (= 6.0.3.3)
|
41
|
+
activesupport (= 6.0.3.3)
|
42
|
+
nokogiri (>= 1.8.5)
|
43
|
+
actionview (6.0.3.3)
|
44
|
+
activesupport (= 6.0.3.3)
|
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.3.3)
|
50
|
+
activesupport (= 6.0.3.3)
|
51
|
+
globalid (>= 0.3.6)
|
52
|
+
activemodel (6.0.3.3)
|
53
|
+
activesupport (= 6.0.3.3)
|
54
|
+
activerecord (6.0.3.3)
|
55
|
+
activemodel (= 6.0.3.3)
|
56
|
+
activesupport (= 6.0.3.3)
|
57
|
+
activestorage (6.0.3.3)
|
58
|
+
actionpack (= 6.0.3.3)
|
59
|
+
activejob (= 6.0.3.3)
|
60
|
+
activerecord (= 6.0.3.3)
|
61
|
+
marcel (~> 0.3.1)
|
62
|
+
activesupport (6.0.3.3)
|
63
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
64
|
+
i18n (>= 0.7, < 2)
|
65
|
+
minitest (~> 5.1)
|
66
|
+
tzinfo (~> 1.1)
|
67
|
+
zeitwerk (~> 2.2, >= 2.2.2)
|
68
|
+
addressable (2.7.0)
|
69
|
+
public_suffix (>= 2.0.2, < 5.0)
|
70
|
+
appraisal (2.3.0)
|
71
|
+
bundler
|
72
|
+
rake
|
73
|
+
thor (>= 0.14.0)
|
74
|
+
ast (2.4.1)
|
75
|
+
builder (3.2.4)
|
76
|
+
concurrent-ruby (1.1.7)
|
77
|
+
crack (0.4.4)
|
78
|
+
crass (1.0.6)
|
79
|
+
diff-lcs (1.4.4)
|
80
|
+
erubi (1.9.0)
|
81
|
+
faraday (1.0.1)
|
82
|
+
multipart-post (>= 1.2, < 3)
|
83
|
+
gapic-common (0.3.4)
|
84
|
+
google-protobuf (~> 3.12, >= 3.12.2)
|
85
|
+
googleapis-common-protos (>= 1.3.9, < 2.0)
|
86
|
+
googleapis-common-protos-types (>= 1.0.4, < 2.0)
|
87
|
+
googleauth (~> 0.9)
|
88
|
+
grpc (~> 1.25)
|
89
|
+
globalid (0.4.2)
|
90
|
+
activesupport (>= 4.2.0)
|
91
|
+
google-cloud-core (1.5.0)
|
92
|
+
google-cloud-env (~> 1.0)
|
93
|
+
google-cloud-errors (~> 1.0)
|
94
|
+
google-cloud-env (1.3.3)
|
95
|
+
faraday (>= 0.17.3, < 2.0)
|
96
|
+
google-cloud-errors (1.0.1)
|
97
|
+
google-cloud-pubsub (2.0.0)
|
98
|
+
concurrent-ruby (~> 1.1)
|
99
|
+
google-cloud-core (~> 1.5)
|
100
|
+
google-cloud-pubsub-v1 (~> 0.0)
|
101
|
+
google-cloud-pubsub-v1 (0.1.2)
|
102
|
+
gapic-common (~> 0.3)
|
103
|
+
google-cloud-errors (~> 1.0)
|
104
|
+
grpc-google-iam-v1 (>= 0.6.10, < 2.0)
|
105
|
+
google-protobuf (3.13.0-universal-darwin)
|
106
|
+
googleapis-common-protos (1.3.10)
|
107
|
+
google-protobuf (~> 3.11)
|
108
|
+
googleapis-common-protos-types (>= 1.0.5, < 2.0)
|
109
|
+
grpc (~> 1.27)
|
110
|
+
googleapis-common-protos-types (1.0.5)
|
111
|
+
google-protobuf (~> 3.11)
|
112
|
+
googleauth (0.13.1)
|
113
|
+
faraday (>= 0.17.3, < 2.0)
|
114
|
+
jwt (>= 1.4, < 3.0)
|
115
|
+
memoist (~> 0.16)
|
116
|
+
multi_json (~> 1.11)
|
117
|
+
os (>= 0.9, < 2.0)
|
118
|
+
signet (~> 0.14)
|
119
|
+
grpc (1.32.0-universal-darwin)
|
120
|
+
google-protobuf (~> 3.13)
|
121
|
+
googleapis-common-protos-types (~> 1.0)
|
122
|
+
grpc-google-iam-v1 (0.6.10)
|
123
|
+
google-protobuf (~> 3.11)
|
124
|
+
googleapis-common-protos (>= 1.3.10, < 2.0)
|
125
|
+
grpc (~> 1.27)
|
126
|
+
hashdiff (1.0.1)
|
127
|
+
i18n (1.8.5)
|
128
|
+
concurrent-ruby (~> 1.0)
|
129
|
+
jaro_winkler (1.5.4)
|
130
|
+
jwt (2.2.2)
|
131
|
+
loofah (2.7.0)
|
132
|
+
crass (~> 1.0.2)
|
133
|
+
nokogiri (>= 1.5.9)
|
134
|
+
mail (2.7.1)
|
135
|
+
mini_mime (>= 0.1.1)
|
136
|
+
marcel (0.3.3)
|
137
|
+
mimemagic (~> 0.3.2)
|
138
|
+
memoist (0.16.2)
|
139
|
+
method_source (1.0.0)
|
140
|
+
mimemagic (0.3.5)
|
141
|
+
mini_mime (1.0.2)
|
142
|
+
mini_portile2 (2.4.0)
|
143
|
+
minitest (5.14.2)
|
144
|
+
multi_json (1.15.0)
|
145
|
+
multipart-post (2.1.1)
|
146
|
+
nio4r (2.5.4)
|
147
|
+
nokogiri (1.10.10)
|
148
|
+
mini_portile2 (~> 2.4.0)
|
149
|
+
os (1.1.1)
|
150
|
+
parallel (1.19.2)
|
151
|
+
parser (2.7.1.5)
|
152
|
+
ast (~> 2.4.1)
|
153
|
+
public_suffix (4.0.6)
|
154
|
+
rack (2.2.3)
|
155
|
+
rack-test (1.1.0)
|
156
|
+
rack (>= 1.0, < 3)
|
157
|
+
rails (6.0.3.3)
|
158
|
+
actioncable (= 6.0.3.3)
|
159
|
+
actionmailbox (= 6.0.3.3)
|
160
|
+
actionmailer (= 6.0.3.3)
|
161
|
+
actionpack (= 6.0.3.3)
|
162
|
+
actiontext (= 6.0.3.3)
|
163
|
+
actionview (= 6.0.3.3)
|
164
|
+
activejob (= 6.0.3.3)
|
165
|
+
activemodel (= 6.0.3.3)
|
166
|
+
activerecord (= 6.0.3.3)
|
167
|
+
activestorage (= 6.0.3.3)
|
168
|
+
activesupport (= 6.0.3.3)
|
169
|
+
bundler (>= 1.3.0)
|
170
|
+
railties (= 6.0.3.3)
|
171
|
+
sprockets-rails (>= 2.0.0)
|
172
|
+
rails-dom-testing (2.0.3)
|
173
|
+
activesupport (>= 4.2.0)
|
174
|
+
nokogiri (>= 1.6)
|
175
|
+
rails-html-sanitizer (1.3.0)
|
176
|
+
loofah (~> 2.3)
|
177
|
+
railties (6.0.3.3)
|
178
|
+
actionpack (= 6.0.3.3)
|
179
|
+
activesupport (= 6.0.3.3)
|
180
|
+
method_source
|
181
|
+
rake (>= 0.8.7)
|
182
|
+
thor (>= 0.20.3, < 2.0)
|
183
|
+
rainbow (3.0.0)
|
184
|
+
rake (13.0.1)
|
185
|
+
retriable (3.1.2)
|
186
|
+
rspec (3.9.0)
|
187
|
+
rspec-core (~> 3.9.0)
|
188
|
+
rspec-expectations (~> 3.9.0)
|
189
|
+
rspec-mocks (~> 3.9.0)
|
190
|
+
rspec-core (3.9.3)
|
191
|
+
rspec-support (~> 3.9.3)
|
192
|
+
rspec-expectations (3.9.2)
|
193
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
194
|
+
rspec-support (~> 3.9.0)
|
195
|
+
rspec-mocks (3.9.1)
|
196
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
197
|
+
rspec-support (~> 3.9.0)
|
198
|
+
rspec-rails (4.0.1)
|
199
|
+
actionpack (>= 4.2)
|
200
|
+
activesupport (>= 4.2)
|
201
|
+
railties (>= 4.2)
|
202
|
+
rspec-core (~> 3.9)
|
203
|
+
rspec-expectations (~> 3.9)
|
204
|
+
rspec-mocks (~> 3.9)
|
205
|
+
rspec-support (~> 3.9)
|
206
|
+
rspec-support (3.9.3)
|
207
|
+
rubocop (0.76.0)
|
208
|
+
jaro_winkler (~> 1.5.1)
|
209
|
+
parallel (~> 1.10)
|
210
|
+
parser (>= 2.6)
|
211
|
+
rainbow (>= 2.2.2, < 4.0)
|
212
|
+
ruby-progressbar (~> 1.7)
|
213
|
+
unicode-display_width (>= 1.4.0, < 1.7)
|
214
|
+
rubocop-rspec (1.37.0)
|
215
|
+
rubocop (>= 0.68.1)
|
216
|
+
ruby-progressbar (1.10.1)
|
217
|
+
semantic_logger (4.7.0)
|
218
|
+
concurrent-ruby (~> 1.0)
|
219
|
+
signet (0.14.0)
|
220
|
+
addressable (~> 2.3)
|
221
|
+
faraday (>= 0.17.3, < 2.0)
|
222
|
+
jwt (>= 1.5, < 3.0)
|
223
|
+
multi_json (~> 1.10)
|
224
|
+
sprockets (4.0.2)
|
225
|
+
concurrent-ruby (~> 1.0)
|
226
|
+
rack (> 1, < 3)
|
227
|
+
sprockets-rails (3.2.2)
|
228
|
+
actionpack (>= 4.0)
|
229
|
+
activesupport (>= 4.0)
|
230
|
+
sprockets (>= 3.0.0)
|
231
|
+
sqlite3 (1.4.2)
|
232
|
+
thor (1.0.1)
|
233
|
+
thread_safe (0.3.6)
|
234
|
+
timecop (0.9.1)
|
235
|
+
tzinfo (1.2.7)
|
236
|
+
thread_safe (~> 0.1)
|
237
|
+
unicode-display_width (1.6.1)
|
238
|
+
webmock (3.9.1)
|
239
|
+
addressable (>= 2.3.6)
|
240
|
+
crack (>= 0.3.2)
|
241
|
+
hashdiff (>= 0.4.0, < 2.0.0)
|
242
|
+
websocket-driver (0.7.3)
|
243
|
+
websocket-extensions (>= 0.1.0)
|
244
|
+
websocket-extensions (0.1.5)
|
245
|
+
zeitwerk (2.4.0)
|
246
|
+
|
247
|
+
PLATFORMS
|
248
|
+
ruby
|
249
|
+
|
250
|
+
DEPENDENCIES
|
251
|
+
appraisal
|
252
|
+
cloudenvoy!
|
253
|
+
rails
|
254
|
+
rake (>= 12.3.3)
|
255
|
+
rspec (~> 3.0)
|
256
|
+
rspec-rails
|
257
|
+
rubocop (= 0.76.0)
|
258
|
+
rubocop-rspec (= 1.37.0)
|
259
|
+
semantic_logger (= 4.7.0)
|
260
|
+
sqlite3
|
261
|
+
timecop
|
262
|
+
webmock
|
263
|
+
|
264
|
+
BUNDLED WITH
|
265
|
+
2.1.4
|
@@ -0,0 +1,265 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
cloudenvoy (0.3.1)
|
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.3.3)
|
14
|
+
actionpack (= 6.0.3.3)
|
15
|
+
nio4r (~> 2.0)
|
16
|
+
websocket-driver (>= 0.6.1)
|
17
|
+
actionmailbox (6.0.3.3)
|
18
|
+
actionpack (= 6.0.3.3)
|
19
|
+
activejob (= 6.0.3.3)
|
20
|
+
activerecord (= 6.0.3.3)
|
21
|
+
activestorage (= 6.0.3.3)
|
22
|
+
activesupport (= 6.0.3.3)
|
23
|
+
mail (>= 2.7.1)
|
24
|
+
actionmailer (6.0.3.3)
|
25
|
+
actionpack (= 6.0.3.3)
|
26
|
+
actionview (= 6.0.3.3)
|
27
|
+
activejob (= 6.0.3.3)
|
28
|
+
mail (~> 2.5, >= 2.5.4)
|
29
|
+
rails-dom-testing (~> 2.0)
|
30
|
+
actionpack (6.0.3.3)
|
31
|
+
actionview (= 6.0.3.3)
|
32
|
+
activesupport (= 6.0.3.3)
|
33
|
+
rack (~> 2.0, >= 2.0.8)
|
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.3.3)
|
38
|
+
actionpack (= 6.0.3.3)
|
39
|
+
activerecord (= 6.0.3.3)
|
40
|
+
activestorage (= 6.0.3.3)
|
41
|
+
activesupport (= 6.0.3.3)
|
42
|
+
nokogiri (>= 1.8.5)
|
43
|
+
actionview (6.0.3.3)
|
44
|
+
activesupport (= 6.0.3.3)
|
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.3.3)
|
50
|
+
activesupport (= 6.0.3.3)
|
51
|
+
globalid (>= 0.3.6)
|
52
|
+
activemodel (6.0.3.3)
|
53
|
+
activesupport (= 6.0.3.3)
|
54
|
+
activerecord (6.0.3.3)
|
55
|
+
activemodel (= 6.0.3.3)
|
56
|
+
activesupport (= 6.0.3.3)
|
57
|
+
activestorage (6.0.3.3)
|
58
|
+
actionpack (= 6.0.3.3)
|
59
|
+
activejob (= 6.0.3.3)
|
60
|
+
activerecord (= 6.0.3.3)
|
61
|
+
marcel (~> 0.3.1)
|
62
|
+
activesupport (6.0.3.3)
|
63
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
64
|
+
i18n (>= 0.7, < 2)
|
65
|
+
minitest (~> 5.1)
|
66
|
+
tzinfo (~> 1.1)
|
67
|
+
zeitwerk (~> 2.2, >= 2.2.2)
|
68
|
+
addressable (2.7.0)
|
69
|
+
public_suffix (>= 2.0.2, < 5.0)
|
70
|
+
appraisal (2.3.0)
|
71
|
+
bundler
|
72
|
+
rake
|
73
|
+
thor (>= 0.14.0)
|
74
|
+
ast (2.4.1)
|
75
|
+
builder (3.2.4)
|
76
|
+
concurrent-ruby (1.1.7)
|
77
|
+
crack (0.4.4)
|
78
|
+
crass (1.0.6)
|
79
|
+
diff-lcs (1.4.4)
|
80
|
+
erubi (1.9.0)
|
81
|
+
faraday (1.0.1)
|
82
|
+
multipart-post (>= 1.2, < 3)
|
83
|
+
gapic-common (0.3.4)
|
84
|
+
google-protobuf (~> 3.12, >= 3.12.2)
|
85
|
+
googleapis-common-protos (>= 1.3.9, < 2.0)
|
86
|
+
googleapis-common-protos-types (>= 1.0.4, < 2.0)
|
87
|
+
googleauth (~> 0.9)
|
88
|
+
grpc (~> 1.25)
|
89
|
+
globalid (0.4.2)
|
90
|
+
activesupport (>= 4.2.0)
|
91
|
+
google-cloud-core (1.5.0)
|
92
|
+
google-cloud-env (~> 1.0)
|
93
|
+
google-cloud-errors (~> 1.0)
|
94
|
+
google-cloud-env (1.3.3)
|
95
|
+
faraday (>= 0.17.3, < 2.0)
|
96
|
+
google-cloud-errors (1.0.1)
|
97
|
+
google-cloud-pubsub (2.0.0)
|
98
|
+
concurrent-ruby (~> 1.1)
|
99
|
+
google-cloud-core (~> 1.5)
|
100
|
+
google-cloud-pubsub-v1 (~> 0.0)
|
101
|
+
google-cloud-pubsub-v1 (0.1.2)
|
102
|
+
gapic-common (~> 0.3)
|
103
|
+
google-cloud-errors (~> 1.0)
|
104
|
+
grpc-google-iam-v1 (>= 0.6.10, < 2.0)
|
105
|
+
google-protobuf (3.13.0-universal-darwin)
|
106
|
+
googleapis-common-protos (1.3.10)
|
107
|
+
google-protobuf (~> 3.11)
|
108
|
+
googleapis-common-protos-types (>= 1.0.5, < 2.0)
|
109
|
+
grpc (~> 1.27)
|
110
|
+
googleapis-common-protos-types (1.0.5)
|
111
|
+
google-protobuf (~> 3.11)
|
112
|
+
googleauth (0.13.1)
|
113
|
+
faraday (>= 0.17.3, < 2.0)
|
114
|
+
jwt (>= 1.4, < 3.0)
|
115
|
+
memoist (~> 0.16)
|
116
|
+
multi_json (~> 1.11)
|
117
|
+
os (>= 0.9, < 2.0)
|
118
|
+
signet (~> 0.14)
|
119
|
+
grpc (1.32.0-universal-darwin)
|
120
|
+
google-protobuf (~> 3.13)
|
121
|
+
googleapis-common-protos-types (~> 1.0)
|
122
|
+
grpc-google-iam-v1 (0.6.10)
|
123
|
+
google-protobuf (~> 3.11)
|
124
|
+
googleapis-common-protos (>= 1.3.10, < 2.0)
|
125
|
+
grpc (~> 1.27)
|
126
|
+
hashdiff (1.0.1)
|
127
|
+
i18n (1.8.5)
|
128
|
+
concurrent-ruby (~> 1.0)
|
129
|
+
jaro_winkler (1.5.4)
|
130
|
+
jwt (2.2.2)
|
131
|
+
loofah (2.7.0)
|
132
|
+
crass (~> 1.0.2)
|
133
|
+
nokogiri (>= 1.5.9)
|
134
|
+
mail (2.7.1)
|
135
|
+
mini_mime (>= 0.1.1)
|
136
|
+
marcel (0.3.3)
|
137
|
+
mimemagic (~> 0.3.2)
|
138
|
+
memoist (0.16.2)
|
139
|
+
method_source (1.0.0)
|
140
|
+
mimemagic (0.3.5)
|
141
|
+
mini_mime (1.0.2)
|
142
|
+
mini_portile2 (2.4.0)
|
143
|
+
minitest (5.14.2)
|
144
|
+
multi_json (1.15.0)
|
145
|
+
multipart-post (2.1.1)
|
146
|
+
nio4r (2.5.4)
|
147
|
+
nokogiri (1.10.10)
|
148
|
+
mini_portile2 (~> 2.4.0)
|
149
|
+
os (1.1.1)
|
150
|
+
parallel (1.19.2)
|
151
|
+
parser (2.7.1.5)
|
152
|
+
ast (~> 2.4.1)
|
153
|
+
public_suffix (4.0.6)
|
154
|
+
rack (2.2.3)
|
155
|
+
rack-test (1.1.0)
|
156
|
+
rack (>= 1.0, < 3)
|
157
|
+
rails (6.0.3.3)
|
158
|
+
actioncable (= 6.0.3.3)
|
159
|
+
actionmailbox (= 6.0.3.3)
|
160
|
+
actionmailer (= 6.0.3.3)
|
161
|
+
actionpack (= 6.0.3.3)
|
162
|
+
actiontext (= 6.0.3.3)
|
163
|
+
actionview (= 6.0.3.3)
|
164
|
+
activejob (= 6.0.3.3)
|
165
|
+
activemodel (= 6.0.3.3)
|
166
|
+
activerecord (= 6.0.3.3)
|
167
|
+
activestorage (= 6.0.3.3)
|
168
|
+
activesupport (= 6.0.3.3)
|
169
|
+
bundler (>= 1.3.0)
|
170
|
+
railties (= 6.0.3.3)
|
171
|
+
sprockets-rails (>= 2.0.0)
|
172
|
+
rails-dom-testing (2.0.3)
|
173
|
+
activesupport (>= 4.2.0)
|
174
|
+
nokogiri (>= 1.6)
|
175
|
+
rails-html-sanitizer (1.3.0)
|
176
|
+
loofah (~> 2.3)
|
177
|
+
railties (6.0.3.3)
|
178
|
+
actionpack (= 6.0.3.3)
|
179
|
+
activesupport (= 6.0.3.3)
|
180
|
+
method_source
|
181
|
+
rake (>= 0.8.7)
|
182
|
+
thor (>= 0.20.3, < 2.0)
|
183
|
+
rainbow (3.0.0)
|
184
|
+
rake (13.0.1)
|
185
|
+
retriable (3.1.2)
|
186
|
+
rspec (3.9.0)
|
187
|
+
rspec-core (~> 3.9.0)
|
188
|
+
rspec-expectations (~> 3.9.0)
|
189
|
+
rspec-mocks (~> 3.9.0)
|
190
|
+
rspec-core (3.9.3)
|
191
|
+
rspec-support (~> 3.9.3)
|
192
|
+
rspec-expectations (3.9.2)
|
193
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
194
|
+
rspec-support (~> 3.9.0)
|
195
|
+
rspec-mocks (3.9.1)
|
196
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
197
|
+
rspec-support (~> 3.9.0)
|
198
|
+
rspec-rails (4.0.1)
|
199
|
+
actionpack (>= 4.2)
|
200
|
+
activesupport (>= 4.2)
|
201
|
+
railties (>= 4.2)
|
202
|
+
rspec-core (~> 3.9)
|
203
|
+
rspec-expectations (~> 3.9)
|
204
|
+
rspec-mocks (~> 3.9)
|
205
|
+
rspec-support (~> 3.9)
|
206
|
+
rspec-support (3.9.3)
|
207
|
+
rubocop (0.76.0)
|
208
|
+
jaro_winkler (~> 1.5.1)
|
209
|
+
parallel (~> 1.10)
|
210
|
+
parser (>= 2.6)
|
211
|
+
rainbow (>= 2.2.2, < 4.0)
|
212
|
+
ruby-progressbar (~> 1.7)
|
213
|
+
unicode-display_width (>= 1.4.0, < 1.7)
|
214
|
+
rubocop-rspec (1.37.0)
|
215
|
+
rubocop (>= 0.68.1)
|
216
|
+
ruby-progressbar (1.10.1)
|
217
|
+
semantic_logger (4.7.2)
|
218
|
+
concurrent-ruby (~> 1.0)
|
219
|
+
signet (0.14.0)
|
220
|
+
addressable (~> 2.3)
|
221
|
+
faraday (>= 0.17.3, < 2.0)
|
222
|
+
jwt (>= 1.5, < 3.0)
|
223
|
+
multi_json (~> 1.10)
|
224
|
+
sprockets (4.0.2)
|
225
|
+
concurrent-ruby (~> 1.0)
|
226
|
+
rack (> 1, < 3)
|
227
|
+
sprockets-rails (3.2.2)
|
228
|
+
actionpack (>= 4.0)
|
229
|
+
activesupport (>= 4.0)
|
230
|
+
sprockets (>= 3.0.0)
|
231
|
+
sqlite3 (1.4.2)
|
232
|
+
thor (1.0.1)
|
233
|
+
thread_safe (0.3.6)
|
234
|
+
timecop (0.9.1)
|
235
|
+
tzinfo (1.2.7)
|
236
|
+
thread_safe (~> 0.1)
|
237
|
+
unicode-display_width (1.6.1)
|
238
|
+
webmock (3.9.1)
|
239
|
+
addressable (>= 2.3.6)
|
240
|
+
crack (>= 0.3.2)
|
241
|
+
hashdiff (>= 0.4.0, < 2.0.0)
|
242
|
+
websocket-driver (0.7.3)
|
243
|
+
websocket-extensions (>= 0.1.0)
|
244
|
+
websocket-extensions (0.1.5)
|
245
|
+
zeitwerk (2.4.0)
|
246
|
+
|
247
|
+
PLATFORMS
|
248
|
+
ruby
|
249
|
+
|
250
|
+
DEPENDENCIES
|
251
|
+
appraisal
|
252
|
+
cloudenvoy!
|
253
|
+
rails
|
254
|
+
rake (>= 12.3.3)
|
255
|
+
rspec (~> 3.0)
|
256
|
+
rspec-rails
|
257
|
+
rubocop (= 0.76.0)
|
258
|
+
rubocop-rspec (= 1.37.0)
|
259
|
+
semantic_logger (= 4.7.2)
|
260
|
+
sqlite3
|
261
|
+
timecop
|
262
|
+
webmock
|
263
|
+
|
264
|
+
BUNDLED WITH
|
265
|
+
2.1.4
|
@@ -153,7 +153,7 @@ module Cloudenvoy
|
|
153
153
|
#
|
154
154
|
def log_message(level, msg, &block)
|
155
155
|
# Merge log-specific context into object-specific context
|
156
|
-
payload_block = -> { log_block.call.merge(block&.call || {}) }
|
156
|
+
payload_block = ->(*_args) { log_block.call.merge(block&.call || {}) }
|
157
157
|
|
158
158
|
# ActiveSupport::Logger does not support passing a payload through a block on top
|
159
159
|
# of a message.
|
data/lib/cloudenvoy/version.rb
CHANGED
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.3.
|
4
|
+
version: 0.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Arnaud Lachaume
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-10-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -136,6 +136,20 @@ dependencies:
|
|
136
136
|
- - '='
|
137
137
|
- !ruby/object:Gem::Version
|
138
138
|
version: 1.37.0
|
139
|
+
- !ruby/object:Gem::Dependency
|
140
|
+
name: semantic_logger
|
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'
|
139
153
|
- !ruby/object:Gem::Dependency
|
140
154
|
name: timecop
|
141
155
|
requirement: !ruby/object:Gem::Requirement
|
@@ -301,6 +315,14 @@ files:
|
|
301
315
|
- gemfiles/rails_5.2.gemfile.lock
|
302
316
|
- gemfiles/rails_6.0.gemfile
|
303
317
|
- gemfiles/rails_6.0.gemfile.lock
|
318
|
+
- gemfiles/semantic_logger_3.4.gemfile
|
319
|
+
- gemfiles/semantic_logger_3.4.gemfile.lock
|
320
|
+
- gemfiles/semantic_logger_4.6.gemfile
|
321
|
+
- gemfiles/semantic_logger_4.6.gemfile.lock
|
322
|
+
- gemfiles/semantic_logger_4.7.0.gemfile
|
323
|
+
- gemfiles/semantic_logger_4.7.0.gemfile.lock
|
324
|
+
- gemfiles/semantic_logger_4.7.2.gemfile
|
325
|
+
- gemfiles/semantic_logger_4.7.2.gemfile.lock
|
304
326
|
- lib/cloudenvoy.rb
|
305
327
|
- lib/cloudenvoy/authentication_error.rb
|
306
328
|
- lib/cloudenvoy/authenticator.rb
|