my_api_client 0.20.0 → 0.21.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -7,6 +7,7 @@ source 'https://rubygems.org'
7
7
  git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
8
8
 
9
9
  gem 'activesupport', '~> 5.0.0'
10
+ gem 'tzinfo', '~> 1.1'
10
11
 
11
12
  group :integrations, optional: true do
12
13
  gem 'bugsnag', '>= 6.11.0'
@@ -7,6 +7,7 @@ source 'https://rubygems.org'
7
7
  git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
8
8
 
9
9
  gem 'activesupport', '~> 5.1.0'
10
+ gem 'tzinfo', '~> 1.1'
10
11
 
11
12
  group :integrations, optional: true do
12
13
  gem 'bugsnag', '>= 6.11.0'
@@ -7,6 +7,7 @@ source 'https://rubygems.org'
7
7
  git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
8
8
 
9
9
  gem 'activesupport', '~> 5.2.0'
10
+ gem 'tzinfo', '~> 1.1'
10
11
 
11
12
  group :integrations, optional: true do
12
13
  gem 'bugsnag', '>= 6.11.0'
@@ -7,6 +7,7 @@ source 'https://rubygems.org'
7
7
  git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
8
8
 
9
9
  gem 'activesupport', '~> 6.0.0'
10
+ gem 'tzinfo', '~> 1.1'
10
11
 
11
12
  group :integrations, optional: true do
12
13
  gem 'bugsnag', '>= 6.11.0'
@@ -30,17 +30,17 @@ RSpec::Matchers.define :be_handled_as_an_error do |expected_error_class|
30
30
  actual_error = handle_error(api_request)
31
31
  if actual_error.nil?
32
32
  "expected to be handled as #{expected_error_class.name}, " \
33
- 'but not to be handled'
33
+ 'but not to be handled'
34
34
  else
35
35
  "expected to be handled as #{expected_error_class.name}, " \
36
- "but it was handled as #{actual_error.class.name}"
36
+ "but it was handled as #{actual_error.class.name}"
37
37
  end
38
38
  end
39
39
 
40
40
  failure_message_when_negated do |api_request|
41
41
  actual_error = handle_error(api_request)
42
42
  'expected not to be handled as an error, ' \
43
- "but it was handled as #{actual_error.class.name}"
43
+ "but it was handled as #{actual_error.class.name}"
44
44
  end
45
45
 
46
46
  attr_reader :sawyer
@@ -27,7 +27,8 @@ module MyApiClient
27
27
  # put_user: { raise: MyApiClient::ClientError } # Raises an arbitrary error.
28
28
  # delete_user: {
29
29
  # raise: MyApiClient::ClientError,
30
- # response: { errors: [{ code: 10 }] }, # You can stub response with exception.
30
+ # response: { errors: [{ code: 10 }] }, # You can stub response and statu code
31
+ # status_code: 429, # with an arbitrary error.
31
32
  # }
32
33
  # )
33
34
  # response = ExampleApiClient.new.get_user(id: 123)
@@ -58,7 +59,8 @@ module MyApiClient
58
59
  # put_user: { raise: MyApiClient::ClientError } # Raises an arbitrary error.
59
60
  # delete_user: {
60
61
  # raise: MyApiClient::ClientError,
61
- # response: { errors: [{ code: 10 }] }, # You can stub response with exception.
62
+ # response: { errors: [{ code: 10 }] }, # You can stub response and status code
63
+ # status_code: 403, # with exception.
62
64
  # }
63
65
  # )
64
66
  # response = api_client.get_user(id: 123)
@@ -85,7 +87,7 @@ module MyApiClient
85
87
  stub_as_resource(options.call(*request))
86
88
  when Hash
87
89
  if options[:raise] # rubocop:disable Style/GuardClause
88
- raise process_raise_option(options[:raise], options[:response])
90
+ raise process_raise_option(options[:raise], options[:response], options[:status_code])
89
91
  elsif options[:response]
90
92
  stub_as_resource(options[:response])
91
93
  elsif options[:pageable].is_a?(Enumerable)
@@ -114,12 +116,14 @@ module MyApiClient
114
116
  # If given a error instance, it will return raw value without processing.
115
117
  #
116
118
  # @param exception [Clsas, MyApiClient::Error] Processing target.
119
+ # @param response [Hash] describe_response_here
120
+ # @param status_code [Integer] describe_status_code_here
117
121
  # @return [MyApiClient::Error] Processed exception.
118
122
  # @raise [RuntimeError] Unsupported error class was set.
119
- def process_raise_option(exception, response = {})
123
+ def process_raise_option(exception, response, status_code)
120
124
  case exception
121
125
  when Class
122
- params = MyApiClient::Params::Params.new(nil, stub_as_response(response))
126
+ params = MyApiClient::Params::Params.new(nil, stub_as_response(response, status_code))
123
127
  if exception == MyApiClient::NetworkError
124
128
  exception.new(params, Net::OpenTimeout.new)
125
129
  else
@@ -134,10 +138,10 @@ module MyApiClient
134
138
  end
135
139
  end
136
140
 
137
- def stub_as_response(params)
141
+ def stub_as_response(params, status_code)
138
142
  instance_double(
139
143
  Sawyer::Response,
140
- status: 400,
144
+ status: status_code.presence || 400,
141
145
  headers: {},
142
146
  data: stub_as_resource(params),
143
147
  timing: 0.123
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module MyApiClient
4
- VERSION = '0.20.0'
4
+ VERSION = '0.21.0'
5
5
  end
data/my_api/Gemfile CHANGED
@@ -7,7 +7,7 @@ gem 'jets'
7
7
  gem 'dynomite'
8
8
 
9
9
  # See: https://github.com/boltops-tools/jets/issues/523
10
- gem 'nokogiri', '~> 1.11.0'
10
+ gem 'nokogiri', '~> 1.12.2'
11
11
 
12
12
  # development and test groups are not bundled as part of the deployment
13
13
  group :development, :test do
data/my_api/Gemfile.lock CHANGED
@@ -1,43 +1,43 @@
1
1
  GEM
2
2
  remote: https://rubygems.org/
3
3
  specs:
4
- actionmailer (6.1.2.1)
5
- actionpack (= 6.1.2.1)
6
- actionview (= 6.1.2.1)
7
- activejob (= 6.1.2.1)
8
- activesupport (= 6.1.2.1)
4
+ actionmailer (6.1.4)
5
+ actionpack (= 6.1.4)
6
+ actionview (= 6.1.4)
7
+ activejob (= 6.1.4)
8
+ activesupport (= 6.1.4)
9
9
  mail (~> 2.5, >= 2.5.4)
10
10
  rails-dom-testing (~> 2.0)
11
- actionpack (6.1.2.1)
12
- actionview (= 6.1.2.1)
13
- activesupport (= 6.1.2.1)
11
+ actionpack (6.1.4)
12
+ actionview (= 6.1.4)
13
+ activesupport (= 6.1.4)
14
14
  rack (~> 2.0, >= 2.0.9)
15
15
  rack-test (>= 0.6.3)
16
16
  rails-dom-testing (~> 2.0)
17
17
  rails-html-sanitizer (~> 1.0, >= 1.2.0)
18
- actionview (6.1.2.1)
19
- activesupport (= 6.1.2.1)
18
+ actionview (6.1.4)
19
+ activesupport (= 6.1.4)
20
20
  builder (~> 3.1)
21
21
  erubi (~> 1.4)
22
22
  rails-dom-testing (~> 2.0)
23
23
  rails-html-sanitizer (~> 1.1, >= 1.2.0)
24
- activejob (6.1.2.1)
25
- activesupport (= 6.1.2.1)
24
+ activejob (6.1.4)
25
+ activesupport (= 6.1.4)
26
26
  globalid (>= 0.3.6)
27
- activemodel (6.1.2.1)
28
- activesupport (= 6.1.2.1)
29
- activerecord (6.1.2.1)
30
- activemodel (= 6.1.2.1)
31
- activesupport (= 6.1.2.1)
32
- activesupport (6.1.2.1)
27
+ activemodel (6.1.4)
28
+ activesupport (= 6.1.4)
29
+ activerecord (6.1.4)
30
+ activemodel (= 6.1.4)
31
+ activesupport (= 6.1.4)
32
+ activesupport (6.1.4)
33
33
  concurrent-ruby (~> 1.0, >= 1.0.2)
34
34
  i18n (>= 1.6, < 2)
35
35
  minitest (>= 5.1)
36
36
  tzinfo (~> 2.0)
37
37
  zeitwerk (~> 2.3)
38
- addressable (2.7.0)
38
+ addressable (2.8.0)
39
39
  public_suffix (>= 2.0.2, < 5.0)
40
- aws-eventstream (1.1.0)
40
+ aws-eventstream (1.1.1)
41
41
  aws-mfa-secure (0.4.3)
42
42
  activesupport
43
43
  aws-sdk-core
@@ -46,47 +46,47 @@ GEM
46
46
  rainbow
47
47
  thor
48
48
  zeitwerk
49
- aws-partitions (1.416.0)
50
- aws-sdk-apigateway (1.58.0)
51
- aws-sdk-core (~> 3, >= 3.109.0)
49
+ aws-partitions (1.479.0)
50
+ aws-sdk-apigateway (1.62.0)
51
+ aws-sdk-core (~> 3, >= 3.112.0)
52
52
  aws-sigv4 (~> 1.1)
53
- aws-sdk-cloudformation (1.46.0)
54
- aws-sdk-core (~> 3, >= 3.109.0)
53
+ aws-sdk-cloudformation (1.53.0)
54
+ aws-sdk-core (~> 3, >= 3.112.0)
55
55
  aws-sigv4 (~> 1.1)
56
- aws-sdk-cloudwatchlogs (1.38.0)
57
- aws-sdk-core (~> 3, >= 3.109.0)
56
+ aws-sdk-cloudwatchlogs (1.41.0)
57
+ aws-sdk-core (~> 3, >= 3.112.0)
58
58
  aws-sigv4 (~> 1.1)
59
- aws-sdk-core (3.111.0)
59
+ aws-sdk-core (3.117.0)
60
60
  aws-eventstream (~> 1, >= 1.0.2)
61
61
  aws-partitions (~> 1, >= 1.239.0)
62
62
  aws-sigv4 (~> 1.1)
63
63
  jmespath (~> 1.0)
64
- aws-sdk-dynamodb (1.58.0)
65
- aws-sdk-core (~> 3, >= 3.109.0)
64
+ aws-sdk-dynamodb (1.60.0)
65
+ aws-sdk-core (~> 3, >= 3.112.0)
66
66
  aws-sigv4 (~> 1.1)
67
- aws-sdk-kinesis (1.30.0)
68
- aws-sdk-core (~> 3, >= 3.109.0)
67
+ aws-sdk-kinesis (1.32.1)
68
+ aws-sdk-core (~> 3, >= 3.112.0)
69
69
  aws-sigv4 (~> 1.1)
70
- aws-sdk-kms (1.41.0)
71
- aws-sdk-core (~> 3, >= 3.109.0)
70
+ aws-sdk-kms (1.44.0)
71
+ aws-sdk-core (~> 3, >= 3.112.0)
72
72
  aws-sigv4 (~> 1.1)
73
- aws-sdk-lambda (1.57.0)
74
- aws-sdk-core (~> 3, >= 3.109.0)
73
+ aws-sdk-lambda (1.64.0)
74
+ aws-sdk-core (~> 3, >= 3.112.0)
75
75
  aws-sigv4 (~> 1.1)
76
- aws-sdk-s3 (1.87.0)
77
- aws-sdk-core (~> 3, >= 3.109.0)
76
+ aws-sdk-s3 (1.96.2)
77
+ aws-sdk-core (~> 3, >= 3.112.0)
78
78
  aws-sdk-kms (~> 1)
79
79
  aws-sigv4 (~> 1.1)
80
- aws-sdk-sns (1.36.0)
81
- aws-sdk-core (~> 3, >= 3.109.0)
80
+ aws-sdk-sns (1.42.0)
81
+ aws-sdk-core (~> 3, >= 3.112.0)
82
82
  aws-sigv4 (~> 1.1)
83
- aws-sdk-sqs (1.35.0)
84
- aws-sdk-core (~> 3, >= 3.109.0)
83
+ aws-sdk-sqs (1.40.0)
84
+ aws-sdk-core (~> 3, >= 3.112.0)
85
85
  aws-sigv4 (~> 1.1)
86
- aws-sdk-ssm (1.101.0)
87
- aws-sdk-core (~> 3, >= 3.109.0)
86
+ aws-sdk-ssm (1.112.0)
87
+ aws-sdk-core (~> 3, >= 3.112.0)
88
88
  aws-sigv4 (~> 1.1)
89
- aws-sigv4 (1.2.2)
89
+ aws-sigv4 (1.2.4)
90
90
  aws-eventstream (~> 1, >= 1.0.2)
91
91
  aws_config (0.1.0)
92
92
  builder (3.2.4)
@@ -99,14 +99,14 @@ GEM
99
99
  rack-test (>= 0.6.3)
100
100
  regexp_parser (>= 1.5, < 3.0)
101
101
  xpath (~> 3.2)
102
- cfn-status (0.4.2)
102
+ cfn-status (0.4.3)
103
103
  aws-sdk-cloudformation
104
104
  cfn_camelizer (0.4.9)
105
105
  activesupport
106
106
  memoist
107
107
  rainbow
108
108
  cfn_response (0.2.0)
109
- concurrent-ruby (1.1.8)
109
+ concurrent-ruby (1.1.9)
110
110
  crass (1.0.6)
111
111
  diff-lcs (1.4.4)
112
112
  dotenv (2.7.6)
@@ -119,9 +119,9 @@ GEM
119
119
  globalid (0.4.2)
120
120
  activesupport (>= 4.2.0)
121
121
  hashie (4.1.0)
122
- i18n (1.8.8)
122
+ i18n (1.8.10)
123
123
  concurrent-ruby (~> 1.0)
124
- jets (3.0.2)
124
+ jets (3.0.11)
125
125
  actionmailer (~> 6.1.0)
126
126
  actionpack (~> 6.1.0)
127
127
  actionview (~> 6.1.0)
@@ -147,12 +147,12 @@ GEM
147
147
  jets-html-sanitizer
148
148
  kramdown
149
149
  memoist
150
- mimemagic
150
+ mini_mime
151
151
  rack
152
152
  railties (~> 6.1.0)
153
153
  rainbow
154
154
  recursive-open-struct
155
- serverlessgems (~> 0.1.2)
155
+ serverlessgems (~> 0.1.4)
156
156
  shotgun
157
157
  text-table
158
158
  thor
@@ -160,27 +160,26 @@ GEM
160
160
  jets-html-sanitizer (1.0.4)
161
161
  loofah (~> 2.2, >= 2.2.2)
162
162
  jmespath (1.4.0)
163
- kramdown (2.3.0)
163
+ kramdown (2.3.1)
164
164
  rexml
165
165
  launchy (2.5.0)
166
166
  addressable (~> 2.7)
167
- loofah (2.9.0)
167
+ loofah (2.10.0)
168
168
  crass (~> 1.0.2)
169
169
  nokogiri (>= 1.5.9)
170
170
  mail (2.7.1)
171
171
  mini_mime (>= 0.1.1)
172
172
  memoist (0.16.2)
173
173
  method_source (1.0.0)
174
- mimemagic (0.3.5)
175
- mini_mime (1.0.2)
176
- mini_portile2 (2.5.0)
177
- minitest (5.14.3)
178
- nio4r (2.5.5)
179
- nokogiri (1.11.0)
180
- mini_portile2 (~> 2.5.0)
174
+ mini_mime (1.1.0)
175
+ mini_portile2 (2.6.1)
176
+ minitest (5.14.4)
177
+ nio4r (2.5.7)
178
+ nokogiri (1.12.2)
179
+ mini_portile2 (~> 2.6.1)
181
180
  racc (~> 1.4)
182
181
  public_suffix (4.0.6)
183
- puma (5.2.2)
182
+ puma (5.4.0)
184
183
  nio4r (~> 2.0)
185
184
  racc (1.5.2)
186
185
  rack (2.2.3)
@@ -191,17 +190,17 @@ GEM
191
190
  nokogiri (>= 1.6)
192
191
  rails-html-sanitizer (1.3.0)
193
192
  loofah (~> 2.3)
194
- railties (6.1.2.1)
195
- actionpack (= 6.1.2.1)
196
- activesupport (= 6.1.2.1)
193
+ railties (6.1.4)
194
+ actionpack (= 6.1.4)
195
+ activesupport (= 6.1.4)
197
196
  method_source
198
- rake (>= 0.8.7)
197
+ rake (>= 0.13)
199
198
  thor (~> 1.0)
200
199
  rainbow (3.0.0)
201
- rake (13.0.3)
200
+ rake (13.0.6)
202
201
  recursive-open-struct (1.1.3)
203
202
  regexp_parser (2.0.3)
204
- rexml (3.2.4)
203
+ rexml (3.2.5)
205
204
  rspec (3.10.0)
206
205
  rspec-core (~> 3.10.0)
207
206
  rspec-expectations (~> 3.10.0)
@@ -217,7 +216,7 @@ GEM
217
216
  rspec-support (3.10.0)
218
217
  rspec_junit_formatter (0.4.1)
219
218
  rspec-core (>= 2, < 4, != 2.12.0)
220
- serverlessgems (0.1.2)
219
+ serverlessgems (0.1.4)
221
220
  gems
222
221
  memoist
223
222
  zeitwerk
@@ -240,7 +239,7 @@ DEPENDENCIES
240
239
  dynomite
241
240
  jets
242
241
  launchy
243
- nokogiri (~> 1.11.0)
242
+ nokogiri (~> 1.12.2)
244
243
  puma
245
244
  rack
246
245
  rspec
@@ -83,8 +83,8 @@
83
83
  <p>Also check out the <a href="http://rubyonjets.com/reference">Jets CLI reference</a>.</p>
84
84
  </div>
85
85
  <p class="version">
86
- <strong>Jets version:</strong> 2.3.13<br />
87
- <strong>Ruby version:</strong> 2.5.3
86
+ <strong>Jets version:</strong> 3.0.11<br />
87
+ <strong>Ruby version:</strong> 2.7.2
88
88
  </p>
89
89
  </div>
90
90
  </body>
@@ -22,7 +22,7 @@ Gem::Specification.new do |spec|
22
22
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
23
23
  spec.require_paths = ['lib']
24
24
 
25
- spec.required_ruby_version = '>= 2.5.0'
25
+ spec.required_ruby_version = '>= 2.6.0'
26
26
 
27
27
  spec.add_dependency 'activesupport', '>= 5.2.0'
28
28
  spec.add_dependency 'faraday', '>= 0.17.1'
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ../..
3
3
  specs:
4
- my_api_client (0.17.0)
4
+ my_api_client (0.20.0)
5
5
  activesupport (>= 5.2.0)
6
6
  faraday (>= 0.17.1)
7
7
  jsonpath
@@ -10,86 +10,92 @@ PATH
10
10
  GEM
11
11
  remote: https://rubygems.org/
12
12
  specs:
13
- actioncable (5.2.4.4)
14
- actionpack (= 5.2.4.4)
13
+ actioncable (5.2.6)
14
+ actionpack (= 5.2.6)
15
15
  nio4r (~> 2.0)
16
16
  websocket-driver (>= 0.6.1)
17
- actionmailer (5.2.4.4)
18
- actionpack (= 5.2.4.4)
19
- actionview (= 5.2.4.4)
20
- activejob (= 5.2.4.4)
17
+ actionmailer (5.2.6)
18
+ actionpack (= 5.2.6)
19
+ actionview (= 5.2.6)
20
+ activejob (= 5.2.6)
21
21
  mail (~> 2.5, >= 2.5.4)
22
22
  rails-dom-testing (~> 2.0)
23
- actionpack (5.2.4.4)
24
- actionview (= 5.2.4.4)
25
- activesupport (= 5.2.4.4)
23
+ actionpack (5.2.6)
24
+ actionview (= 5.2.6)
25
+ activesupport (= 5.2.6)
26
26
  rack (~> 2.0, >= 2.0.8)
27
27
  rack-test (>= 0.6.3)
28
28
  rails-dom-testing (~> 2.0)
29
29
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
30
- actionview (5.2.4.4)
31
- activesupport (= 5.2.4.4)
30
+ actionview (5.2.6)
31
+ activesupport (= 5.2.6)
32
32
  builder (~> 3.1)
33
33
  erubi (~> 1.4)
34
34
  rails-dom-testing (~> 2.0)
35
35
  rails-html-sanitizer (~> 1.0, >= 1.0.3)
36
- activejob (5.2.4.4)
37
- activesupport (= 5.2.4.4)
36
+ activejob (5.2.6)
37
+ activesupport (= 5.2.6)
38
38
  globalid (>= 0.3.6)
39
- activemodel (5.2.4.4)
40
- activesupport (= 5.2.4.4)
41
- activerecord (5.2.4.4)
42
- activemodel (= 5.2.4.4)
43
- activesupport (= 5.2.4.4)
39
+ activemodel (5.2.6)
40
+ activesupport (= 5.2.6)
41
+ activerecord (5.2.6)
42
+ activemodel (= 5.2.6)
43
+ activesupport (= 5.2.6)
44
44
  arel (>= 9.0)
45
- activestorage (5.2.4.4)
46
- actionpack (= 5.2.4.4)
47
- activerecord (= 5.2.4.4)
48
- marcel (~> 0.3.1)
49
- activesupport (5.2.4.4)
45
+ activestorage (5.2.6)
46
+ actionpack (= 5.2.6)
47
+ activerecord (= 5.2.6)
48
+ marcel (~> 1.0.0)
49
+ activesupport (5.2.6)
50
50
  concurrent-ruby (~> 1.0, >= 1.0.2)
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
56
  arel (9.0.0)
57
57
  bootsnap (1.4.8)
58
58
  msgpack (~> 1.0)
59
59
  builder (3.2.4)
60
60
  byebug (11.1.3)
61
- concurrent-ruby (1.1.7)
61
+ concurrent-ruby (1.1.9)
62
62
  crass (1.0.6)
63
63
  diff-lcs (1.4.4)
64
- erubi (1.9.0)
65
- faraday (1.3.0)
64
+ erubi (1.10.0)
65
+ faraday (1.4.2)
66
+ faraday-em_http (~> 1.0)
67
+ faraday-em_synchrony (~> 1.0)
68
+ faraday-excon (~> 1.1)
66
69
  faraday-net_http (~> 1.0)
70
+ faraday-net_http_persistent (~> 1.1)
67
71
  multipart-post (>= 1.2, < 3)
68
- ruby2_keywords
69
- faraday-net_http (1.0.0)
72
+ ruby2_keywords (>= 0.0.4)
73
+ faraday-em_http (1.0.0)
74
+ faraday-em_synchrony (1.0.0)
75
+ faraday-excon (1.1.0)
76
+ faraday-net_http (1.0.1)
77
+ faraday-net_http_persistent (1.1.0)
70
78
  globalid (0.4.2)
71
79
  activesupport (>= 4.2.0)
72
- i18n (1.8.5)
80
+ i18n (1.8.10)
73
81
  concurrent-ruby (~> 1.0)
74
82
  jsonpath (1.1.0)
75
83
  multi_json
76
- loofah (2.7.0)
84
+ loofah (2.10.0)
77
85
  crass (~> 1.0.2)
78
86
  nokogiri (>= 1.5.9)
79
87
  mail (2.7.1)
80
88
  mini_mime (>= 0.1.1)
81
- marcel (0.3.3)
82
- mimemagic (~> 0.3.2)
89
+ marcel (1.0.1)
83
90
  method_source (1.0.0)
84
- mimemagic (0.3.5)
85
- mini_mime (1.0.2)
86
- mini_portile2 (2.5.0)
87
- minitest (5.14.2)
91
+ mini_mime (1.1.0)
92
+ mini_portile2 (2.5.3)
93
+ minitest (5.14.4)
88
94
  msgpack (1.3.3)
89
95
  multi_json (1.15.0)
90
96
  multipart-post (2.1.1)
91
- nio4r (2.5.4)
92
- nokogiri (1.11.0)
97
+ nio4r (2.5.7)
98
+ nokogiri (1.11.7)
93
99
  mini_portile2 (~> 2.5.0)
94
100
  racc (~> 1.4)
95
101
  public_suffix (4.0.6)
@@ -97,31 +103,31 @@ GEM
97
103
  rack (2.2.3)
98
104
  rack-test (1.1.0)
99
105
  rack (>= 1.0, < 3)
100
- rails (5.2.4.4)
101
- actioncable (= 5.2.4.4)
102
- actionmailer (= 5.2.4.4)
103
- actionpack (= 5.2.4.4)
104
- actionview (= 5.2.4.4)
105
- activejob (= 5.2.4.4)
106
- activemodel (= 5.2.4.4)
107
- activerecord (= 5.2.4.4)
108
- activestorage (= 5.2.4.4)
109
- activesupport (= 5.2.4.4)
106
+ rails (5.2.6)
107
+ actioncable (= 5.2.6)
108
+ actionmailer (= 5.2.6)
109
+ actionpack (= 5.2.6)
110
+ actionview (= 5.2.6)
111
+ activejob (= 5.2.6)
112
+ activemodel (= 5.2.6)
113
+ activerecord (= 5.2.6)
114
+ activestorage (= 5.2.6)
115
+ activesupport (= 5.2.6)
110
116
  bundler (>= 1.3.0)
111
- railties (= 5.2.4.4)
117
+ railties (= 5.2.6)
112
118
  sprockets-rails (>= 2.0.0)
113
119
  rails-dom-testing (2.0.3)
114
120
  activesupport (>= 4.2.0)
115
121
  nokogiri (>= 1.6)
116
122
  rails-html-sanitizer (1.3.0)
117
123
  loofah (~> 2.3)
118
- railties (5.2.4.4)
119
- actionpack (= 5.2.4.4)
120
- activesupport (= 5.2.4.4)
124
+ railties (5.2.6)
125
+ actionpack (= 5.2.6)
126
+ activesupport (= 5.2.6)
121
127
  method_source
122
128
  rake (>= 0.8.7)
123
129
  thor (>= 0.19.0, < 2.0)
124
- rake (13.0.1)
130
+ rake (13.0.3)
125
131
  rspec-core (3.9.2)
126
132
  rspec-support (~> 3.9.3)
127
133
  rspec-expectations (3.9.2)
@@ -139,23 +145,23 @@ GEM
139
145
  rspec-mocks (~> 3.9)
140
146
  rspec-support (~> 3.9)
141
147
  rspec-support (3.9.3)
142
- ruby2_keywords (0.0.2)
148
+ ruby2_keywords (0.0.4)
143
149
  sawyer (0.8.2)
144
150
  addressable (>= 2.3.5)
145
151
  faraday (> 0.8, < 2.0)
146
152
  spring (2.1.1)
147
- sprockets (3.7.2)
153
+ sprockets (4.0.2)
148
154
  concurrent-ruby (~> 1.0)
149
155
  rack (> 1, < 3)
150
156
  sprockets-rails (3.2.2)
151
157
  actionpack (>= 4.0)
152
158
  activesupport (>= 4.0)
153
159
  sprockets (>= 3.0.0)
154
- thor (1.0.1)
160
+ thor (1.1.0)
155
161
  thread_safe (0.3.6)
156
- tzinfo (1.2.7)
162
+ tzinfo (1.2.9)
157
163
  thread_safe (~> 0.1)
158
- websocket-driver (0.7.3)
164
+ websocket-driver (0.7.4)
159
165
  websocket-extensions (>= 0.1.0)
160
166
  websocket-extensions (0.1.5)
161
167
 
@@ -171,4 +177,4 @@ DEPENDENCIES
171
177
  spring
172
178
 
173
179
  BUNDLED WITH
174
- 2.1.4
180
+ 2.2.4