hutch 0.16.0 → 0.17.0
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/README.md +2 -1
- data/lib/hutch/broker.rb +1 -1
- data/lib/hutch/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e5f37cc28b7b467cec1505466b964a76af226d50
|
|
4
|
+
data.tar.gz: 7ced0eb70ab2c5a7e1765a4e58f7c9f24dae36d9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ac2181c5109f698791668e589339a898aab136d62cb5eb05236fcf0c875776e05c00142e6bd6fb1279eb2adc2069df4d00246ec9d0a77052045d099dab8e7485
|
|
7
|
+
data.tar.gz: c7df71753321a9ed150e1eb56e6e9a994386ae5fd5e5ac81ec33c20b7da8075f587d56e6a2adb83663f939e15552f4991d4d5852e2a9713cbe5c08620812a63c
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -16,7 +16,8 @@ $ gem install hutch
|
|
|
16
16
|
|
|
17
17
|
## Project Maturity
|
|
18
18
|
|
|
19
|
-
Hutch is a
|
|
19
|
+
Hutch is a moderately mature project (started in early 2013)
|
|
20
|
+
that was extracted from production systems.
|
|
20
21
|
|
|
21
22
|
|
|
22
23
|
## Overview
|
data/lib/hutch/broker.rb
CHANGED
|
@@ -74,7 +74,7 @@ module Hutch
|
|
|
74
74
|
|
|
75
75
|
tls = @config[:mq_tls]
|
|
76
76
|
host = @config[:mq_host]
|
|
77
|
-
port = @config.fetch(:mq_port, (tls ? 5671 : 5672))
|
|
77
|
+
port = @config.to_hash.fetch(:mq_port, (tls ? 5671 : 5672))
|
|
78
78
|
vhost = if @config[:mq_vhost] && "" != @config[:mq_vhost]
|
|
79
79
|
@config[:mq_vhost]
|
|
80
80
|
else
|
data/lib/hutch/version.rb
CHANGED