cloudenvoy 0.4.1 → 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/lint_rubocop.yml +20 -0
- data/.github/workflows/{test.yml → test_ruby_2.5_2.6.yml} +8 -13
- data/.github/workflows/test_ruby_2.7.yml +36 -0
- data/.github/workflows/test_ruby_3.x.yml +35 -0
- data/.gitignore +3 -0
- data/.rubocop.yml +5 -0
- data/Appraisals +24 -4
- data/CHANGELOG.md +16 -0
- data/README.md +7 -4
- data/app/controllers/cloudenvoy/subscriber_controller.rb +5 -2
- data/cloudenvoy.gemspec +0 -4
- data/examples/rails/.ruby-version +1 -1
- data/examples/rails/Gemfile +4 -1
- data/examples/rails/Gemfile.lock +139 -113
- data/examples/rails/README.md +1 -1
- data/examples/sinatra/Gemfile +18 -0
- data/examples/sinatra/Gemfile.lock +139 -0
- data/examples/sinatra/Procfile +1 -0
- data/examples/sinatra/README.md +41 -0
- data/examples/sinatra/app/publishers/hello_publisher.rb +34 -0
- data/examples/sinatra/app/subscribers/hello_subscriber.rb +16 -0
- data/examples/sinatra/app.rb +40 -0
- data/examples/sinatra/bin/console +8 -0
- data/examples/sinatra/config/initializers/cloudenvoy.rb +30 -0
- data/gemfiles/.bundle/config +2 -0
- data/gemfiles/rails_5.2.gemfile +1 -0
- data/gemfiles/rails_5.2.gemfile.lock +117 -92
- data/gemfiles/rails_6.0.gemfile +1 -0
- data/gemfiles/rails_6.0.gemfile.lock +118 -93
- data/gemfiles/rails_6.1.gemfile +8 -0
- data/gemfiles/rails_7.0.gemfile +8 -0
- data/gemfiles/semantic_logger_3.4.gemfile +1 -0
- data/gemfiles/semantic_logger_3.4.gemfile.lock +95 -189
- data/gemfiles/semantic_logger_4.6.gemfile +1 -0
- data/gemfiles/semantic_logger_4.6.gemfile.lock +95 -189
- data/gemfiles/semantic_logger_4.7.0.gemfile +1 -0
- data/gemfiles/semantic_logger_4.7.0.gemfile.lock +95 -189
- data/gemfiles/semantic_logger_4.7.2.gemfile +1 -0
- data/gemfiles/semantic_logger_4.7.2.gemfile.lock +95 -189
- data/lib/cloudenvoy/backend/google_pub_sub.rb +2 -2
- data/lib/cloudenvoy/message.rb +2 -2
- data/lib/cloudenvoy/subscriber.rb +1 -1
- data/lib/cloudenvoy/version.rb +1 -1
- data/lib/cloudenvoy.rb +1 -0
- data/lib/generators/cloudenvoy/publisher_generator.rb +46 -0
- data/lib/generators/cloudenvoy/subscriber_generator.rb +46 -0
- data/lib/generators/cloudenvoy/templates/publisher.rb.erb +11 -0
- data/lib/generators/cloudenvoy/templates/publisher_spec.rb.erb +6 -0
- data/lib/generators/cloudenvoy/templates/subscriber.rb.erb +11 -0
- data/lib/generators/cloudenvoy/templates/subscriber_spec.rb.erb +6 -0
- metadata +28 -51
- data/Gemfile.lock +0 -267
- data/app/controllers/cloudenvoy/application_controller.rb +0 -8
@@ -0,0 +1,30 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Require cloudenvoy and its extensions
|
4
|
+
require 'cloudenvoy'
|
5
|
+
|
6
|
+
Cloudenvoy.configure do |config|
|
7
|
+
#
|
8
|
+
# Secret used to authenticate job requests
|
9
|
+
#
|
10
|
+
config.secret = 'some-secret'
|
11
|
+
|
12
|
+
#
|
13
|
+
# GCP Configuration
|
14
|
+
#
|
15
|
+
config.gcp_project_id = 'some-project'
|
16
|
+
config.gcp_sub_prefix = 'my-app'
|
17
|
+
|
18
|
+
#
|
19
|
+
# Domain
|
20
|
+
#
|
21
|
+
# config.processor_host = 'https://xxxx.ngrok.io'
|
22
|
+
#
|
23
|
+
config.processor_host = 'http://localhost:3000'
|
24
|
+
|
25
|
+
#
|
26
|
+
# Uncomment to process messages via Pub/Sub.
|
27
|
+
# Requires a ngrok tunnel.
|
28
|
+
#
|
29
|
+
# config.mode = :production
|
30
|
+
end
|
data/gemfiles/rails_5.2.gemfile
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
cloudenvoy (0.
|
4
|
+
cloudenvoy (0.5.0)
|
5
5
|
activesupport
|
6
6
|
google-cloud-pubsub (~> 2.0)
|
7
7
|
jwt
|
@@ -51,72 +51,94 @@ GEM
|
|
51
51
|
i18n (>= 0.7, < 2)
|
52
52
|
minitest (~> 5.1)
|
53
53
|
tzinfo (~> 1.1)
|
54
|
-
addressable (2.
|
54
|
+
addressable (2.8.0)
|
55
55
|
public_suffix (>= 2.0.2, < 5.0)
|
56
|
-
appraisal (2.
|
56
|
+
appraisal (2.4.1)
|
57
57
|
bundler
|
58
58
|
rake
|
59
59
|
thor (>= 0.14.0)
|
60
60
|
arel (9.0.0)
|
61
|
-
ast (2.4.
|
61
|
+
ast (2.4.2)
|
62
62
|
builder (3.2.4)
|
63
|
-
concurrent-ruby (1.1.
|
64
|
-
crack (0.4.
|
65
|
-
|
63
|
+
concurrent-ruby (1.1.9)
|
64
|
+
crack (0.4.5)
|
65
|
+
rexml
|
66
66
|
crass (1.0.6)
|
67
|
-
diff-lcs (1.
|
68
|
-
erubi (1.
|
69
|
-
faraday (1.0
|
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)
|
70
86
|
multipart-post (>= 1.2, < 3)
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
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)
|
80
102
|
google-cloud-env (~> 1.0)
|
81
103
|
google-cloud-errors (~> 1.0)
|
82
|
-
google-cloud-env (1.
|
104
|
+
google-cloud-env (1.5.0)
|
83
105
|
faraday (>= 0.17.3, < 2.0)
|
84
|
-
google-cloud-errors (1.0
|
85
|
-
google-cloud-pubsub (2.1
|
106
|
+
google-cloud-errors (1.2.0)
|
107
|
+
google-cloud-pubsub (2.9.1)
|
86
108
|
concurrent-ruby (~> 1.1)
|
87
109
|
google-cloud-core (~> 1.5)
|
88
110
|
google-cloud-pubsub-v1 (~> 0.0)
|
89
|
-
google-cloud-pubsub-v1 (0.1
|
90
|
-
gapic-common (
|
111
|
+
google-cloud-pubsub-v1 (0.7.1)
|
112
|
+
gapic-common (>= 0.7, < 2.a)
|
91
113
|
google-cloud-errors (~> 1.0)
|
92
|
-
grpc-google-iam-v1 (>= 0.6.10, < 2.
|
93
|
-
google-protobuf (3.
|
94
|
-
googleapis-common-protos (1.3.
|
95
|
-
google-protobuf (~> 3.
|
96
|
-
googleapis-common-protos-types (
|
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)
|
97
119
|
grpc (~> 1.27)
|
98
|
-
googleapis-common-protos-types (1.0
|
99
|
-
google-protobuf (~> 3.
|
100
|
-
googleauth (
|
101
|
-
faraday (>= 0.17.3, <
|
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)
|
102
124
|
jwt (>= 1.4, < 3.0)
|
103
125
|
memoist (~> 0.16)
|
104
126
|
multi_json (~> 1.11)
|
105
127
|
os (>= 0.9, < 2.0)
|
106
|
-
signet (
|
107
|
-
grpc (1.
|
108
|
-
google-protobuf (~> 3.
|
128
|
+
signet (>= 0.16, < 2.a)
|
129
|
+
grpc (1.43.1-universal-darwin)
|
130
|
+
google-protobuf (~> 3.18)
|
109
131
|
googleapis-common-protos-types (~> 1.0)
|
110
|
-
grpc-google-iam-v1 (0.
|
111
|
-
google-protobuf (~> 3.
|
112
|
-
googleapis-common-protos (>= 1.3.
|
132
|
+
grpc-google-iam-v1 (1.0.0)
|
133
|
+
google-protobuf (~> 3.14)
|
134
|
+
googleapis-common-protos (>= 1.3.12, < 2.0)
|
113
135
|
grpc (~> 1.27)
|
114
136
|
hashdiff (1.0.1)
|
115
|
-
i18n (1.8.
|
137
|
+
i18n (1.8.11)
|
116
138
|
concurrent-ruby (~> 1.0)
|
117
139
|
jaro_winkler (1.5.4)
|
118
|
-
jwt (2.
|
119
|
-
loofah (2.
|
140
|
+
jwt (2.3.0)
|
141
|
+
loofah (2.13.0)
|
120
142
|
crass (~> 1.0.2)
|
121
143
|
nokogiri (>= 1.5.9)
|
122
144
|
mail (2.7.1)
|
@@ -125,20 +147,24 @@ GEM
|
|
125
147
|
mimemagic (~> 0.3.2)
|
126
148
|
memoist (0.16.2)
|
127
149
|
method_source (1.0.0)
|
128
|
-
mimemagic (0.3.
|
129
|
-
|
130
|
-
|
131
|
-
|
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)
|
132
156
|
multi_json (1.15.0)
|
133
157
|
multipart-post (2.1.1)
|
134
|
-
nio4r (2.5.
|
135
|
-
nokogiri (1.
|
136
|
-
mini_portile2 (~> 2.
|
137
|
-
|
138
|
-
|
139
|
-
|
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)
|
140
165
|
ast (~> 2.4.1)
|
141
|
-
public_suffix (4.0.
|
166
|
+
public_suffix (4.0.6)
|
167
|
+
racc (1.6.0)
|
142
168
|
rack (2.2.3)
|
143
169
|
rack-test (1.1.0)
|
144
170
|
rack (>= 1.0, < 3)
|
@@ -158,7 +184,7 @@ GEM
|
|
158
184
|
rails-dom-testing (2.0.3)
|
159
185
|
activesupport (>= 4.2.0)
|
160
186
|
nokogiri (>= 1.6)
|
161
|
-
rails-html-sanitizer (1.
|
187
|
+
rails-html-sanitizer (1.4.2)
|
162
188
|
loofah (~> 2.3)
|
163
189
|
railties (5.2.0)
|
164
190
|
actionpack (= 5.2.0)
|
@@ -167,29 +193,30 @@ GEM
|
|
167
193
|
rake (>= 0.8.7)
|
168
194
|
thor (>= 0.18.1, < 2.0)
|
169
195
|
rainbow (3.0.0)
|
170
|
-
rake (13.0.
|
196
|
+
rake (13.0.6)
|
171
197
|
retriable (3.1.2)
|
172
|
-
|
173
|
-
|
174
|
-
rspec-
|
175
|
-
rspec-
|
176
|
-
|
177
|
-
|
178
|
-
|
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)
|
179
206
|
diff-lcs (>= 1.2.0, < 2.0)
|
180
|
-
rspec-support (~> 3.
|
181
|
-
rspec-mocks (3.
|
207
|
+
rspec-support (~> 3.10.0)
|
208
|
+
rspec-mocks (3.10.2)
|
182
209
|
diff-lcs (>= 1.2.0, < 2.0)
|
183
|
-
rspec-support (~> 3.
|
184
|
-
rspec-rails (
|
185
|
-
actionpack (>=
|
186
|
-
activesupport (>=
|
187
|
-
railties (>=
|
188
|
-
rspec-core (~> 3.
|
189
|
-
rspec-expectations (~> 3.
|
190
|
-
rspec-mocks (~> 3.
|
191
|
-
rspec-support (~> 3.
|
192
|
-
rspec-support (3.
|
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)
|
193
220
|
rubocop (0.76.0)
|
194
221
|
jaro_winkler (~> 1.5.1)
|
195
222
|
parallel (~> 1.10)
|
@@ -199,34 +226,33 @@ GEM
|
|
199
226
|
unicode-display_width (>= 1.4.0, < 1.7)
|
200
227
|
rubocop-rspec (1.37.0)
|
201
228
|
rubocop (>= 0.68.1)
|
202
|
-
ruby-progressbar (1.
|
203
|
-
|
204
|
-
semantic_logger (4.
|
229
|
+
ruby-progressbar (1.11.0)
|
230
|
+
ruby2_keywords (0.0.5)
|
231
|
+
semantic_logger (4.9.0)
|
205
232
|
concurrent-ruby (~> 1.0)
|
206
|
-
signet (0.
|
207
|
-
addressable (~> 2.
|
208
|
-
faraday (>= 0.17.
|
233
|
+
signet (0.16.1)
|
234
|
+
addressable (~> 2.8)
|
235
|
+
faraday (>= 0.17.5, < 3.0)
|
209
236
|
jwt (>= 1.5, < 3.0)
|
210
237
|
multi_json (~> 1.10)
|
211
238
|
sprockets (4.0.2)
|
212
239
|
concurrent-ruby (~> 1.0)
|
213
240
|
rack (> 1, < 3)
|
214
|
-
sprockets-rails (3.2
|
215
|
-
actionpack (>=
|
216
|
-
activesupport (>=
|
241
|
+
sprockets-rails (3.4.2)
|
242
|
+
actionpack (>= 5.2)
|
243
|
+
activesupport (>= 5.2)
|
217
244
|
sprockets (>= 3.0.0)
|
218
|
-
|
219
|
-
thor (1.0.1)
|
245
|
+
thor (1.1.0)
|
220
246
|
thread_safe (0.3.6)
|
221
|
-
timecop (0.9.
|
222
|
-
tzinfo (1.2.
|
247
|
+
timecop (0.9.4)
|
248
|
+
tzinfo (1.2.9)
|
223
249
|
thread_safe (~> 0.1)
|
224
250
|
unicode-display_width (1.6.1)
|
225
|
-
webmock (3.
|
226
|
-
addressable (>= 2.
|
251
|
+
webmock (3.14.0)
|
252
|
+
addressable (>= 2.8.0)
|
227
253
|
crack (>= 0.3.2)
|
228
254
|
hashdiff (>= 0.4.0, < 2.0.0)
|
229
|
-
websocket-driver (0.7.
|
255
|
+
websocket-driver (0.7.5)
|
230
256
|
websocket-extensions (>= 0.1.0)
|
231
257
|
websocket-extensions (0.1.5)
|
232
258
|
|
@@ -243,9 +269,8 @@ DEPENDENCIES
|
|
243
269
|
rubocop (= 0.76.0)
|
244
270
|
rubocop-rspec (= 1.37.0)
|
245
271
|
semantic_logger
|
246
|
-
sqlite3
|
247
272
|
timecop
|
248
273
|
webmock
|
249
274
|
|
250
275
|
BUNDLED WITH
|
251
|
-
2.
|
276
|
+
2.3.6
|
data/gemfiles/rails_6.0.gemfile
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
cloudenvoy (0.
|
4
|
+
cloudenvoy (0.5.0)
|
5
5
|
activesupport
|
6
6
|
google-cloud-pubsub (~> 2.0)
|
7
7
|
jwt
|
@@ -65,71 +65,93 @@ GEM
|
|
65
65
|
minitest (~> 5.1)
|
66
66
|
tzinfo (~> 1.1)
|
67
67
|
zeitwerk (~> 2.1, >= 2.1.8)
|
68
|
-
addressable (2.
|
68
|
+
addressable (2.8.0)
|
69
69
|
public_suffix (>= 2.0.2, < 5.0)
|
70
|
-
appraisal (2.
|
70
|
+
appraisal (2.4.1)
|
71
71
|
bundler
|
72
72
|
rake
|
73
73
|
thor (>= 0.14.0)
|
74
|
-
ast (2.4.
|
74
|
+
ast (2.4.2)
|
75
75
|
builder (3.2.4)
|
76
|
-
concurrent-ruby (1.1.
|
77
|
-
crack (0.4.
|
78
|
-
|
76
|
+
concurrent-ruby (1.1.9)
|
77
|
+
crack (0.4.5)
|
78
|
+
rexml
|
79
79
|
crass (1.0.6)
|
80
|
-
diff-lcs (1.
|
81
|
-
erubi (1.
|
82
|
-
faraday (1.0
|
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)
|
83
99
|
multipart-post (>= 1.2, < 3)
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
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)
|
93
115
|
google-cloud-env (~> 1.0)
|
94
116
|
google-cloud-errors (~> 1.0)
|
95
|
-
google-cloud-env (1.
|
117
|
+
google-cloud-env (1.5.0)
|
96
118
|
faraday (>= 0.17.3, < 2.0)
|
97
|
-
google-cloud-errors (1.0
|
98
|
-
google-cloud-pubsub (2.1
|
119
|
+
google-cloud-errors (1.2.0)
|
120
|
+
google-cloud-pubsub (2.9.1)
|
99
121
|
concurrent-ruby (~> 1.1)
|
100
122
|
google-cloud-core (~> 1.5)
|
101
123
|
google-cloud-pubsub-v1 (~> 0.0)
|
102
|
-
google-cloud-pubsub-v1 (0.1
|
103
|
-
gapic-common (
|
124
|
+
google-cloud-pubsub-v1 (0.7.1)
|
125
|
+
gapic-common (>= 0.7, < 2.a)
|
104
126
|
google-cloud-errors (~> 1.0)
|
105
|
-
grpc-google-iam-v1 (>= 0.6.10, < 2.
|
106
|
-
google-protobuf (3.
|
107
|
-
googleapis-common-protos (1.3.
|
108
|
-
google-protobuf (~> 3.
|
109
|
-
googleapis-common-protos-types (
|
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)
|
110
132
|
grpc (~> 1.27)
|
111
|
-
googleapis-common-protos-types (1.0
|
112
|
-
google-protobuf (~> 3.
|
113
|
-
googleauth (
|
114
|
-
faraday (>= 0.17.3, <
|
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)
|
115
137
|
jwt (>= 1.4, < 3.0)
|
116
138
|
memoist (~> 0.16)
|
117
139
|
multi_json (~> 1.11)
|
118
140
|
os (>= 0.9, < 2.0)
|
119
|
-
signet (
|
120
|
-
grpc (1.
|
121
|
-
google-protobuf (~> 3.
|
141
|
+
signet (>= 0.16, < 2.a)
|
142
|
+
grpc (1.43.1-universal-darwin)
|
143
|
+
google-protobuf (~> 3.18)
|
122
144
|
googleapis-common-protos-types (~> 1.0)
|
123
|
-
grpc-google-iam-v1 (0.
|
124
|
-
google-protobuf (~> 3.
|
125
|
-
googleapis-common-protos (>= 1.3.
|
145
|
+
grpc-google-iam-v1 (1.0.0)
|
146
|
+
google-protobuf (~> 3.14)
|
147
|
+
googleapis-common-protos (>= 1.3.12, < 2.0)
|
126
148
|
grpc (~> 1.27)
|
127
149
|
hashdiff (1.0.1)
|
128
|
-
i18n (1.8.
|
150
|
+
i18n (1.8.11)
|
129
151
|
concurrent-ruby (~> 1.0)
|
130
152
|
jaro_winkler (1.5.4)
|
131
|
-
jwt (2.
|
132
|
-
loofah (2.
|
153
|
+
jwt (2.3.0)
|
154
|
+
loofah (2.13.0)
|
133
155
|
crass (~> 1.0.2)
|
134
156
|
nokogiri (>= 1.5.9)
|
135
157
|
mail (2.7.1)
|
@@ -138,20 +160,24 @@ GEM
|
|
138
160
|
mimemagic (~> 0.3.2)
|
139
161
|
memoist (0.16.2)
|
140
162
|
method_source (1.0.0)
|
141
|
-
mimemagic (0.3.
|
142
|
-
|
143
|
-
|
144
|
-
|
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)
|
145
169
|
multi_json (1.15.0)
|
146
170
|
multipart-post (2.1.1)
|
147
|
-
nio4r (2.5.
|
148
|
-
nokogiri (1.
|
149
|
-
mini_portile2 (~> 2.
|
150
|
-
|
151
|
-
|
152
|
-
|
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)
|
153
178
|
ast (~> 2.4.1)
|
154
|
-
public_suffix (4.0.
|
179
|
+
public_suffix (4.0.6)
|
180
|
+
racc (1.6.0)
|
155
181
|
rack (2.2.3)
|
156
182
|
rack-test (1.1.0)
|
157
183
|
rack (>= 1.0, < 3)
|
@@ -173,7 +199,7 @@ GEM
|
|
173
199
|
rails-dom-testing (2.0.3)
|
174
200
|
activesupport (>= 4.2.0)
|
175
201
|
nokogiri (>= 1.6)
|
176
|
-
rails-html-sanitizer (1.
|
202
|
+
rails-html-sanitizer (1.4.2)
|
177
203
|
loofah (~> 2.3)
|
178
204
|
railties (6.0.0)
|
179
205
|
actionpack (= 6.0.0)
|
@@ -182,29 +208,30 @@ GEM
|
|
182
208
|
rake (>= 0.8.7)
|
183
209
|
thor (>= 0.20.3, < 2.0)
|
184
210
|
rainbow (3.0.0)
|
185
|
-
rake (13.0.
|
211
|
+
rake (13.0.6)
|
186
212
|
retriable (3.1.2)
|
187
|
-
|
188
|
-
|
189
|
-
rspec-
|
190
|
-
rspec-
|
191
|
-
|
192
|
-
|
193
|
-
|
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)
|
194
221
|
diff-lcs (>= 1.2.0, < 2.0)
|
195
|
-
rspec-support (~> 3.
|
196
|
-
rspec-mocks (3.
|
222
|
+
rspec-support (~> 3.10.0)
|
223
|
+
rspec-mocks (3.10.2)
|
197
224
|
diff-lcs (>= 1.2.0, < 2.0)
|
198
|
-
rspec-support (~> 3.
|
199
|
-
rspec-rails (
|
200
|
-
actionpack (>=
|
201
|
-
activesupport (>=
|
202
|
-
railties (>=
|
203
|
-
rspec-core (~> 3.
|
204
|
-
rspec-expectations (~> 3.
|
205
|
-
rspec-mocks (~> 3.
|
206
|
-
rspec-support (~> 3.
|
207
|
-
rspec-support (3.
|
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)
|
208
235
|
rubocop (0.76.0)
|
209
236
|
jaro_winkler (~> 1.5.1)
|
210
237
|
parallel (~> 1.10)
|
@@ -214,37 +241,36 @@ GEM
|
|
214
241
|
unicode-display_width (>= 1.4.0, < 1.7)
|
215
242
|
rubocop-rspec (1.37.0)
|
216
243
|
rubocop (>= 0.68.1)
|
217
|
-
ruby-progressbar (1.
|
218
|
-
|
219
|
-
semantic_logger (4.
|
244
|
+
ruby-progressbar (1.11.0)
|
245
|
+
ruby2_keywords (0.0.5)
|
246
|
+
semantic_logger (4.9.0)
|
220
247
|
concurrent-ruby (~> 1.0)
|
221
|
-
signet (0.
|
222
|
-
addressable (~> 2.
|
223
|
-
faraday (>= 0.17.
|
248
|
+
signet (0.16.1)
|
249
|
+
addressable (~> 2.8)
|
250
|
+
faraday (>= 0.17.5, < 3.0)
|
224
251
|
jwt (>= 1.5, < 3.0)
|
225
252
|
multi_json (~> 1.10)
|
226
253
|
sprockets (4.0.2)
|
227
254
|
concurrent-ruby (~> 1.0)
|
228
255
|
rack (> 1, < 3)
|
229
|
-
sprockets-rails (3.2
|
230
|
-
actionpack (>=
|
231
|
-
activesupport (>=
|
256
|
+
sprockets-rails (3.4.2)
|
257
|
+
actionpack (>= 5.2)
|
258
|
+
activesupport (>= 5.2)
|
232
259
|
sprockets (>= 3.0.0)
|
233
|
-
|
234
|
-
thor (1.0.1)
|
260
|
+
thor (1.1.0)
|
235
261
|
thread_safe (0.3.6)
|
236
|
-
timecop (0.9.
|
237
|
-
tzinfo (1.2.
|
262
|
+
timecop (0.9.4)
|
263
|
+
tzinfo (1.2.9)
|
238
264
|
thread_safe (~> 0.1)
|
239
265
|
unicode-display_width (1.6.1)
|
240
|
-
webmock (3.
|
241
|
-
addressable (>= 2.
|
266
|
+
webmock (3.14.0)
|
267
|
+
addressable (>= 2.8.0)
|
242
268
|
crack (>= 0.3.2)
|
243
269
|
hashdiff (>= 0.4.0, < 2.0.0)
|
244
|
-
websocket-driver (0.7.
|
270
|
+
websocket-driver (0.7.5)
|
245
271
|
websocket-extensions (>= 0.1.0)
|
246
272
|
websocket-extensions (0.1.5)
|
247
|
-
zeitwerk (2.
|
273
|
+
zeitwerk (2.5.3)
|
248
274
|
|
249
275
|
PLATFORMS
|
250
276
|
ruby
|
@@ -259,9 +285,8 @@ DEPENDENCIES
|
|
259
285
|
rubocop (= 0.76.0)
|
260
286
|
rubocop-rspec (= 1.37.0)
|
261
287
|
semantic_logger
|
262
|
-
sqlite3
|
263
288
|
timecop
|
264
289
|
webmock
|
265
290
|
|
266
291
|
BUNDLED WITH
|
267
|
-
2.
|
292
|
+
2.3.6
|