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 +4 -4
- data/ChangeLog.md +10 -0
- data/lib/bunny/session.rb +1 -1
- data/lib/bunny/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 469097034b953e5817f30fe77c213b72ae8cbbff
|
|
4
|
+
data.tar.gz: 9810b8fd87d11421cbd3ad48d32597fec5ab7856
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ff03cb7eefd3abe762516596ea948f9ef0c2779213dc07ebd373fa2a7864d6635c3b46610efdb7400704d74ae5139ed82b765fbf4b8d86a226900679f3bfdd07
|
|
7
|
+
data.tar.gz: b3d303b9a4817c96e07ec37e0b913b116184a25b6c082592e0dcaa9333f1f67587226cf2052ecf49889420e6fb9a71baf3e2652ef26c75feb0eed604621f4f89
|
data/ChangeLog.md
CHANGED
|
@@ -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
|
data/lib/bunny/session.rb
CHANGED
|
@@ -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)
|
data/lib/bunny/version.rb
CHANGED
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.
|
|
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-
|
|
15
|
+
date: 2013-09-05 00:00:00.000000000 Z
|
|
16
16
|
dependencies:
|
|
17
17
|
- !ruby/object:Gem::Dependency
|
|
18
18
|
name: amq-protocol
|