File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -288,7 +288,7 @@ it possible to access the URI a client instance uses.
288288### Meaningful Exceptions for 4xx and 5xx Responses
289289
290290` 4xx ` and ` 5xx ` responses now will result in meaningful exceptions
291- being raised. For example, ` 404 ` responses will raise ` Faraday::Error:: ResourceNotFound ` .
291+ being raised. For example, ` 404 ` responses will raise ` Faraday::ResourceNotFound ` .
292292
293293
294294## Changes Between 0.2.0 and 0.3.0
Original file line number Diff line number Diff line change 11source 'https://rubygems.org'
22
33group :development , :test do
4- gem " rspec" , " ~> 3.8.0"
4+ gem ' rspec' , ' ~> 3.9'
55 gem "json" , :platform => :ruby_18
6- gem "bunny" , "~> 2.14.2 "
6+ gem "bunny" , "~> 2.15.0 "
77
88 gem "rantly"
99end
Original file line number Diff line number Diff line change @@ -18,8 +18,8 @@ Gem::Specification.new do |gem|
1818 gem . test_files = gem . files . grep ( %r{^(test|spec|features)/} )
1919 gem . require_paths = [ "lib" ]
2020
21- gem . add_dependency " hashie" , " ~> 3.6"
22- gem . add_dependency " multi_json" , "~> 1.13.1"
23- gem . add_dependency " faraday" , [ " >= 0.15" , "< 1" ]
24- gem . add_dependency " faraday_middleware" , [ ">= 0.13.0" , "< 1" ]
21+ gem . add_dependency ' hashie' , ' ~> 4.1'
22+ gem . add_dependency ' multi_json' , '~> 1.14' , '>= 1.14.1'
23+ gem . add_dependency ' faraday' , '~> 1.0' , ' >= 1.0.1'
24+ gem . add_dependency ' faraday_middleware' , '~> 1.0'
2525end
Original file line number Diff line number Diff line change @@ -474,7 +474,7 @@ def await_event_propagation
474474 it "raises NotFound" do
475475 expect do
476476 subject . queue_info ( "/" , Time . now . to_i . to_s )
477- end . to raise_error ( Faraday ::Error :: ResourceNotFound )
477+ end . to raise_error ( Faraday ::ResourceNotFound )
478478 end
479479 end
480480 end
@@ -845,7 +845,7 @@ def await_event_propagation
845845 it "raises NotFound" do
846846 expect do
847847 subject . vhost_info ( Time . now . to_i . to_s )
848- end . to raise_error ( Faraday ::Error :: ResourceNotFound )
848+ end . to raise_error ( Faraday ::ResourceNotFound )
849849 end
850850 end
851851
@@ -1034,7 +1034,7 @@ def await_event_propagation
10341034
10351035 expect do
10361036 subject . list_permissions_of ( "/" , "alt3" )
1037- end . to raise_error ( Faraday ::Error :: ResourceNotFound )
1037+ end . to raise_error ( Faraday ::ResourceNotFound )
10381038 end
10391039 end
10401040
You can’t perform that action at this time.
0 commit comments