Skip to content

Commit 3de88c2

Browse files
committed
Bumping all gems to newest versions
1 parent b095d88 commit 3de88c2

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

ChangeLog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

Gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
source 'https://rubygems.org'
22

33
group :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"
99
end

rabbitmq_http_api_client.gemspec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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'
2525
end

spec/integration/client_spec.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)