cloudenvoy 0.4.1 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (54) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/lint_rubocop.yml +20 -0
  3. data/.github/workflows/{test.yml → test_ruby_2.5_2.6.yml} +8 -13
  4. data/.github/workflows/test_ruby_2.7.yml +36 -0
  5. data/.github/workflows/test_ruby_3.x.yml +35 -0
  6. data/.gitignore +3 -0
  7. data/.rubocop.yml +5 -0
  8. data/Appraisals +24 -4
  9. data/CHANGELOG.md +16 -0
  10. data/README.md +7 -4
  11. data/app/controllers/cloudenvoy/subscriber_controller.rb +5 -2
  12. data/cloudenvoy.gemspec +0 -4
  13. data/examples/rails/.ruby-version +1 -1
  14. data/examples/rails/Gemfile +4 -1
  15. data/examples/rails/Gemfile.lock +139 -113
  16. data/examples/rails/README.md +1 -1
  17. data/examples/sinatra/Gemfile +18 -0
  18. data/examples/sinatra/Gemfile.lock +139 -0
  19. data/examples/sinatra/Procfile +1 -0
  20. data/examples/sinatra/README.md +41 -0
  21. data/examples/sinatra/app/publishers/hello_publisher.rb +34 -0
  22. data/examples/sinatra/app/subscribers/hello_subscriber.rb +16 -0
  23. data/examples/sinatra/app.rb +40 -0
  24. data/examples/sinatra/bin/console +8 -0
  25. data/examples/sinatra/config/initializers/cloudenvoy.rb +30 -0
  26. data/gemfiles/.bundle/config +2 -0
  27. data/gemfiles/rails_5.2.gemfile +1 -0
  28. data/gemfiles/rails_5.2.gemfile.lock +117 -92
  29. data/gemfiles/rails_6.0.gemfile +1 -0
  30. data/gemfiles/rails_6.0.gemfile.lock +118 -93
  31. data/gemfiles/rails_6.1.gemfile +8 -0
  32. data/gemfiles/rails_7.0.gemfile +8 -0
  33. data/gemfiles/semantic_logger_3.4.gemfile +1 -0
  34. data/gemfiles/semantic_logger_3.4.gemfile.lock +95 -189
  35. data/gemfiles/semantic_logger_4.6.gemfile +1 -0
  36. data/gemfiles/semantic_logger_4.6.gemfile.lock +95 -189
  37. data/gemfiles/semantic_logger_4.7.0.gemfile +1 -0
  38. data/gemfiles/semantic_logger_4.7.0.gemfile.lock +95 -189
  39. data/gemfiles/semantic_logger_4.7.2.gemfile +1 -0
  40. data/gemfiles/semantic_logger_4.7.2.gemfile.lock +95 -189
  41. data/lib/cloudenvoy/backend/google_pub_sub.rb +2 -2
  42. data/lib/cloudenvoy/message.rb +2 -2
  43. data/lib/cloudenvoy/subscriber.rb +1 -1
  44. data/lib/cloudenvoy/version.rb +1 -1
  45. data/lib/cloudenvoy.rb +1 -0
  46. data/lib/generators/cloudenvoy/publisher_generator.rb +46 -0
  47. data/lib/generators/cloudenvoy/subscriber_generator.rb +46 -0
  48. data/lib/generators/cloudenvoy/templates/publisher.rb.erb +11 -0
  49. data/lib/generators/cloudenvoy/templates/publisher_spec.rb.erb +6 -0
  50. data/lib/generators/cloudenvoy/templates/subscriber.rb.erb +11 -0
  51. data/lib/generators/cloudenvoy/templates/subscriber_spec.rb.erb +6 -0
  52. metadata +28 -51
  53. data/Gemfile.lock +0 -267
  54. 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
@@ -0,0 +1,2 @@
1
+ ---
2
+ BUNDLE_RETRY: "1"
@@ -3,5 +3,6 @@
3
3
  source "https://rubygems.org"
4
4
 
5
5
  gem "rails", "5.2"
6
+ gem "rspec-rails"
6
7
 
7
8
  gemspec path: "../"
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- cloudenvoy (0.4.1)
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.7.0)
54
+ addressable (2.8.0)
55
55
  public_suffix (>= 2.0.2, < 5.0)
56
- appraisal (2.3.0)
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.1)
61
+ ast (2.4.2)
62
62
  builder (3.2.4)
63
- concurrent-ruby (1.1.6)
64
- crack (0.4.3)
65
- safe_yaml (~> 1.0.0)
63
+ concurrent-ruby (1.1.9)
64
+ crack (0.4.5)
65
+ rexml
66
66
  crass (1.0.6)
67
- diff-lcs (1.4.2)
68
- erubi (1.9.0)
69
- faraday (1.0.1)
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
- gapic-common (0.3.4)
72
- google-protobuf (~> 3.12, >= 3.12.2)
73
- googleapis-common-protos (>= 1.3.9, < 2.0)
74
- googleapis-common-protos-types (>= 1.0.4, < 2.0)
75
- googleauth (~> 0.9)
76
- grpc (~> 1.25)
77
- globalid (0.4.2)
78
- activesupport (>= 4.2.0)
79
- google-cloud-core (1.5.0)
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.3.3)
104
+ google-cloud-env (1.5.0)
83
105
  faraday (>= 0.17.3, < 2.0)
84
- google-cloud-errors (1.0.1)
85
- google-cloud-pubsub (2.1.0)
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.2)
90
- gapic-common (~> 0.3)
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.0)
93
- google-protobuf (3.13.0-universal-darwin)
94
- googleapis-common-protos (1.3.10)
95
- google-protobuf (~> 3.11)
96
- googleapis-common-protos-types (>= 1.0.5, < 2.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)
97
119
  grpc (~> 1.27)
98
- googleapis-common-protos-types (1.0.5)
99
- google-protobuf (~> 3.11)
100
- googleauth (0.13.1)
101
- faraday (>= 0.17.3, < 2.0)
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 (~> 0.14)
107
- grpc (1.32.0-universal-darwin)
108
- google-protobuf (~> 3.13)
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.6.10)
111
- google-protobuf (~> 3.11)
112
- googleapis-common-protos (>= 1.3.10, < 2.0)
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.5)
137
+ i18n (1.8.11)
116
138
  concurrent-ruby (~> 1.0)
117
139
  jaro_winkler (1.5.4)
118
- jwt (2.2.2)
119
- loofah (2.6.0)
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.5)
129
- mini_mime (1.0.2)
130
- mini_portile2 (2.4.0)
131
- minitest (5.14.1)
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.2)
135
- nokogiri (1.10.10)
136
- mini_portile2 (~> 2.4.0)
137
- os (1.1.1)
138
- parallel (1.19.2)
139
- parser (2.7.1.4)
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.5)
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.3.0)
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.1)
196
+ rake (13.0.6)
171
197
  retriable (3.1.2)
172
- rspec (3.9.0)
173
- rspec-core (~> 3.9.0)
174
- rspec-expectations (~> 3.9.0)
175
- rspec-mocks (~> 3.9.0)
176
- rspec-core (3.9.2)
177
- rspec-support (~> 3.9.3)
178
- rspec-expectations (3.9.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)
179
206
  diff-lcs (>= 1.2.0, < 2.0)
180
- rspec-support (~> 3.9.0)
181
- rspec-mocks (3.9.1)
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.9.0)
184
- rspec-rails (4.0.1)
185
- actionpack (>= 4.2)
186
- activesupport (>= 4.2)
187
- railties (>= 4.2)
188
- rspec-core (~> 3.9)
189
- rspec-expectations (~> 3.9)
190
- rspec-mocks (~> 3.9)
191
- rspec-support (~> 3.9)
192
- rspec-support (3.9.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.10.1)
203
- safe_yaml (1.0.5)
204
- semantic_logger (4.7.2)
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.14.0)
207
- addressable (~> 2.3)
208
- faraday (>= 0.17.3, < 2.0)
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.1)
215
- actionpack (>= 4.0)
216
- activesupport (>= 4.0)
241
+ sprockets-rails (3.4.2)
242
+ actionpack (>= 5.2)
243
+ activesupport (>= 5.2)
217
244
  sprockets (>= 3.0.0)
218
- sqlite3 (1.4.2)
219
- thor (1.0.1)
245
+ thor (1.1.0)
220
246
  thread_safe (0.3.6)
221
- timecop (0.9.1)
222
- tzinfo (1.2.7)
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.8.3)
226
- addressable (>= 2.3.6)
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.3)
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.1.4
276
+ 2.3.6
@@ -3,5 +3,6 @@
3
3
  source "https://rubygems.org"
4
4
 
5
5
  gem "rails", "6.0"
6
+ gem "rspec-rails"
6
7
 
7
8
  gemspec path: "../"
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- cloudenvoy (0.4.1)
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.7.0)
68
+ addressable (2.8.0)
69
69
  public_suffix (>= 2.0.2, < 5.0)
70
- appraisal (2.3.0)
70
+ appraisal (2.4.1)
71
71
  bundler
72
72
  rake
73
73
  thor (>= 0.14.0)
74
- ast (2.4.1)
74
+ ast (2.4.2)
75
75
  builder (3.2.4)
76
- concurrent-ruby (1.1.6)
77
- crack (0.4.3)
78
- safe_yaml (~> 1.0.0)
76
+ concurrent-ruby (1.1.9)
77
+ crack (0.4.5)
78
+ rexml
79
79
  crass (1.0.6)
80
- diff-lcs (1.4.2)
81
- erubi (1.9.0)
82
- faraday (1.0.1)
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
- gapic-common (0.3.4)
85
- google-protobuf (~> 3.12, >= 3.12.2)
86
- googleapis-common-protos (>= 1.3.9, < 2.0)
87
- googleapis-common-protos-types (>= 1.0.4, < 2.0)
88
- googleauth (~> 0.9)
89
- grpc (~> 1.25)
90
- globalid (0.4.2)
91
- activesupport (>= 4.2.0)
92
- google-cloud-core (1.5.0)
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.3.3)
117
+ google-cloud-env (1.5.0)
96
118
  faraday (>= 0.17.3, < 2.0)
97
- google-cloud-errors (1.0.1)
98
- google-cloud-pubsub (2.1.0)
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.2)
103
- gapic-common (~> 0.3)
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.0)
106
- google-protobuf (3.13.0-universal-darwin)
107
- googleapis-common-protos (1.3.10)
108
- google-protobuf (~> 3.11)
109
- googleapis-common-protos-types (>= 1.0.5, < 2.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)
110
132
  grpc (~> 1.27)
111
- googleapis-common-protos-types (1.0.5)
112
- google-protobuf (~> 3.11)
113
- googleauth (0.13.1)
114
- faraday (>= 0.17.3, < 2.0)
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 (~> 0.14)
120
- grpc (1.32.0-universal-darwin)
121
- google-protobuf (~> 3.13)
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.6.10)
124
- google-protobuf (~> 3.11)
125
- googleapis-common-protos (>= 1.3.10, < 2.0)
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.5)
150
+ i18n (1.8.11)
129
151
  concurrent-ruby (~> 1.0)
130
152
  jaro_winkler (1.5.4)
131
- jwt (2.2.2)
132
- loofah (2.6.0)
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.5)
142
- mini_mime (1.0.2)
143
- mini_portile2 (2.4.0)
144
- minitest (5.14.1)
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.2)
148
- nokogiri (1.10.10)
149
- mini_portile2 (~> 2.4.0)
150
- os (1.1.1)
151
- parallel (1.19.2)
152
- parser (2.7.1.4)
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.5)
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.3.0)
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.1)
211
+ rake (13.0.6)
186
212
  retriable (3.1.2)
187
- rspec (3.9.0)
188
- rspec-core (~> 3.9.0)
189
- rspec-expectations (~> 3.9.0)
190
- rspec-mocks (~> 3.9.0)
191
- rspec-core (3.9.2)
192
- rspec-support (~> 3.9.3)
193
- rspec-expectations (3.9.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)
194
221
  diff-lcs (>= 1.2.0, < 2.0)
195
- rspec-support (~> 3.9.0)
196
- rspec-mocks (3.9.1)
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.9.0)
199
- rspec-rails (4.0.1)
200
- actionpack (>= 4.2)
201
- activesupport (>= 4.2)
202
- railties (>= 4.2)
203
- rspec-core (~> 3.9)
204
- rspec-expectations (~> 3.9)
205
- rspec-mocks (~> 3.9)
206
- rspec-support (~> 3.9)
207
- rspec-support (3.9.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.10.1)
218
- safe_yaml (1.0.5)
219
- semantic_logger (4.7.2)
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.14.0)
222
- addressable (~> 2.3)
223
- faraday (>= 0.17.3, < 2.0)
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.1)
230
- actionpack (>= 4.0)
231
- activesupport (>= 4.0)
256
+ sprockets-rails (3.4.2)
257
+ actionpack (>= 5.2)
258
+ activesupport (>= 5.2)
232
259
  sprockets (>= 3.0.0)
233
- sqlite3 (1.4.2)
234
- thor (1.0.1)
260
+ thor (1.1.0)
235
261
  thread_safe (0.3.6)
236
- timecop (0.9.1)
237
- tzinfo (1.2.7)
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.8.3)
241
- addressable (>= 2.3.6)
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.3)
270
+ websocket-driver (0.7.5)
245
271
  websocket-extensions (>= 0.1.0)
246
272
  websocket-extensions (0.1.5)
247
- zeitwerk (2.4.0)
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.1.4
292
+ 2.3.6
@@ -0,0 +1,8 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "6.1"
6
+ gem "rspec-rails"
7
+
8
+ gemspec path: "../"
@@ -0,0 +1,8 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "7.0"
6
+ gem "rspec-rails"
7
+
8
+ gemspec path: "../"