confrater 0.0.4 → 0.0.5

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e32d57771b474557bc23dc628c8b7568fa485d891ab8fd89386dad799f69106a
4
- data.tar.gz: dde2ef47e0ac604df0011dfce1c5ee33b2c6a4291cc5fa7ba2d489fa3f97b102
3
+ metadata.gz: 7cac00ddfea7d657c95c11366fc3f43fea2314ca6a41d494725ec6e4214ec40c
4
+ data.tar.gz: a006d3d1b2483b6ace29884cb51a123ef32c738a53f940d17760607035a40f0a
5
5
  SHA512:
6
- metadata.gz: bd91d74fc584773a592b18ffbb78f81181918f291638bd5256f979e7e6254168e5b2d25f998e56e79250635f73293dcfe58cfbbcc771759520208249fd038ba9
7
- data.tar.gz: 3d6624237336b0eaa91a25f30e8ba132d60590ef2c4da26fa9a0d7f7223d4965cf8ba7139643a4d1c7dfe16e8e39cb50f8aba3ab0cf51dcf746997ea0d19f65d
6
+ metadata.gz: 1ef3823a6a4b10c993ac9562904464e051286169b6f7525526735ab92af0345678713a259b33e7ea5848e38ef9ca53548714084dfebe1b87880e2cadc9920c45
7
+ data.tar.gz: 6b38fa520ac629d6e0b82637ffd007305585c3551e1d857a6ff522548754fbf76b7692fc172e47b114296503a7648d826bf5068f7936e1ae08ae3425d7f2208c
@@ -116,7 +116,7 @@ module Confrater
116
116
  error_params = {}
117
117
 
118
118
  begin
119
- if error.is_a?(Faraday::Error::ClientError) && error.response
119
+ if error.is_a?(Faraday::ClientError) && error.response
120
120
  error_params[:status_code] = error.response[:status]
121
121
  error_params[:raw_body] = error.response[:body]
122
122
 
@@ -1,3 +1,3 @@
1
1
  module Confrater
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.5"
3
3
  end
@@ -11,13 +11,13 @@ describe Confrater::APIRequest do
11
11
  end
12
12
 
13
13
  it "surfaces client request exceptions as a Confrater::APIError" do
14
- exception = Faraday::Error::ClientError.new("the server responded with status 503")
14
+ exception = Faraday::ClientError.new("the server responded with status 503")
15
15
  stub_request(:get, "#{@api_root}/users").with(basic_auth: [username, password]).to_raise(exception)
16
16
  expect { @confrere.users.retrieve }.to raise_error(Confrater::APIError)
17
17
  end
18
18
 
19
19
  it "surfaces an unparseable client request exception as a Confrater::APIError" do
20
- exception = Faraday::Error::ClientError.new(
20
+ exception = Faraday::ClientError.new(
21
21
  "the server responded with status 503")
22
22
  stub_request(:get, "#{@api_root}/users").with(basic_auth: [username, password]).to_raise(exception)
23
23
  expect { @confrere.users.retrieve }.to raise_error(Confrater::APIError)
@@ -25,7 +25,7 @@ describe Confrater::APIRequest do
25
25
 
26
26
  it "surfaces an unparseable response body as a Confrater::APIError" do
27
27
  response_values = {:status => 503, :headers => {}, :body => '[foo]'}
28
- exception = Faraday::Error::ClientError.new("the server responded with status 503", response_values)
28
+ exception = Faraday::ClientError.new("the server responded with status 503", response_values)
29
29
  stub_request(:get, "#{@api_root}/users").with(basic_auth: [username, password]).to_raise(exception)
30
30
  expect { @confrere.users.retrieve }.to raise_error(Confrater::APIError)
31
31
  end
@@ -33,7 +33,7 @@ describe Confrater::APIRequest do
33
33
  context "handle_error" do
34
34
  it "includes status and raw body even when json can't be parsed" do
35
35
  response_values = {:status => 503, :headers => {}, :body => 'A non JSON response'}
36
- exception = Faraday::Error::ClientError.new("the server responded with status 503", response_values)
36
+ exception = Faraday::ClientError.new("the server responded with status 503", response_values)
37
37
  api_request = Confrater::APIRequest.new(builder: Confrater::Request)
38
38
  begin
39
39
  api_request.send :handle_error, exception
@@ -46,7 +46,7 @@ describe Confrater::APIRequest do
46
46
  context "when symbolize_keys is true" do
47
47
  it "sets title and detail on the error params" do
48
48
  response_values = {:status => 422, :headers => {}, :body => '{"title": "foo", "detail": "bar"}'}
49
- exception = Faraday::Error::ClientError.new("the server responded with status 422", response_values)
49
+ exception = Faraday::ClientError.new("the server responded with status 422", response_values)
50
50
  api_request = Confrater::APIRequest.new(builder: Confrater::Request.new(symbolize_keys: true))
51
51
  begin
52
52
  api_request.send :handle_error, exception
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: confrater
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Espen Antonsen
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2019-02-04 00:00:00.000000000 Z
12
+ date: 2020-05-18 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: faraday
@@ -124,7 +124,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
124
124
  - !ruby/object:Gem::Version
125
125
  version: '0'
126
126
  requirements: []
127
- rubygems_version: 3.0.2
127
+ rubygems_version: 3.1.2
128
128
  signing_key:
129
129
  specification_version: 4
130
130
  summary: A wrapper for Confrere API