bunny 0.10.5 → 0.10.6

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
  SHA1:
3
- metadata.gz: 30cd6500ecfd75b3739c29654e916438ec46851e
4
- data.tar.gz: 2099cdb7829fcbd14dfe105b924b227ec764b052
3
+ metadata.gz: 469097034b953e5817f30fe77c213b72ae8cbbff
4
+ data.tar.gz: 9810b8fd87d11421cbd3ad48d32597fec5ab7856
5
5
  SHA512:
6
- metadata.gz: 4eef9cc1148e341756184bb7685f84dc34d55ad3db86b030277360474e8cb13cdbbdf6f1323852e56f4deac0c8fc17ac072c295f610678d5e5aa2325ec50a81b
7
- data.tar.gz: 7d69d18fc1d4eccaec10fe33423490b9b9bae51abc031170e658b3070706c6e29cc8c80d14d0ac444b28ab6faaf1a5ee362c73f78dc7b45c13f8358b3c25ccf6
6
+ metadata.gz: ff03cb7eefd3abe762516596ea948f9ef0c2779213dc07ebd373fa2a7864d6635c3b46610efdb7400704d74ae5139ed82b765fbf4b8d86a226900679f3bfdd07
7
+ data.tar.gz: b3d303b9a4817c96e07ec37e0b913b116184a25b6c082592e0dcaa9333f1f67587226cf2052ecf49889420e6fb9a71baf3e2652ef26c75feb0eed604621f4f89
@@ -1,3 +1,13 @@
1
+ ## Changes between Bunny 0.10.5 and 0.10.6
2
+
3
+ ### Respect RABBITMQ_URL value
4
+
5
+ `RABBITMQ_URL` env variable will now have effect even if
6
+ Bunny.new is invoked without arguments.
7
+
8
+ Contributed by Robert Ross.
9
+
10
+
1
11
  ## Changes between Bunny 0.10.4 and 0.10.5
2
12
 
3
13
  ### Bunny::Session.parse_uri
@@ -113,7 +113,7 @@ module Bunny
113
113
  when nil then
114
114
  Hash.new
115
115
  when String then
116
- self.class.parse_uri(connection_string_or_opts)
116
+ self.class.parse_uri(ENV["RABBITMQ_URL"] || connection_string_or_opts)
117
117
  when Hash then
118
118
  connection_string_or_opts
119
119
  end.merge(optz)
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Bunny
4
4
  # @return [String] Version of the library
5
- VERSION = "0.10.5"
5
+ VERSION = "0.10.6"
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bunny
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.5
4
+ version: 0.10.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Duncan
@@ -12,7 +12,7 @@ authors:
12
12
  autorequire:
13
13
  bindir: bin
14
14
  cert_chain: []
15
- date: 2013-08-28 00:00:00.000000000 Z
15
+ date: 2013-09-05 00:00:00.000000000 Z
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency
18
18
  name: amq-protocol