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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0a8fca35975c1fa959a90ec608e978fe3f6c523b
4
- data.tar.gz: b8b8df85e625956eb974403d37180dfecfff03b4
3
+ metadata.gz: e5f37cc28b7b467cec1505466b964a76af226d50
4
+ data.tar.gz: 7ced0eb70ab2c5a7e1765a4e58f7c9f24dae36d9
5
5
  SHA512:
6
- metadata.gz: f0043f3e29a151a24b38cd18f3f4d8737c37ce77b99001d4fcac6f533904a7eeabdc478bf9b3cd7ac51385ba1da4d97327c71434bbf8ea6fdc026bd4b0431a52
7
- data.tar.gz: cde750774fa801338a7e54103566eeaff7cd91c6e930c3251fa4f5521ee3599ac19599ab066ca9581f6ee7919d0e769b70818c6337029644ae97d3f3e0cc3672
6
+ metadata.gz: ac2181c5109f698791668e589339a898aab136d62cb5eb05236fcf0c875776e05c00142e6bd6fb1279eb2adc2069df4d00246ec9d0a77052045d099dab8e7485
7
+ data.tar.gz: c7df71753321a9ed150e1eb56e6e9a994386ae5fd5e5ac81ec33c20b7da8075f587d56e6a2adb83663f939e15552f4991d4d5852e2a9713cbe5c08620812a63c
data/CHANGELOG.md CHANGED
@@ -1,3 +1,13 @@
1
+ ## 0.18.0 — (unreleased)
2
+
3
+ No changes yet.
4
+
5
+
6
+ ## 0.17.0 — July 19th, 2015
7
+
8
+ Fixes an issue with `NoMethodError` in `Hutch::Config`.
9
+
10
+
1
11
  ## 0.16.0 — July 19th, 2015
2
12
 
3
13
  ### Support amqps URIs
data/README.md CHANGED
@@ -16,7 +16,8 @@ $ gem install hutch
16
16
 
17
17
  ## Project Maturity
18
18
 
19
- Hutch is a relatively young project that was extracted from production systems.
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
@@ -1,4 +1,4 @@
1
1
  module Hutch
2
- VERSION = '0.16.0'.freeze
2
+ VERSION = '0.17.0'.freeze
3
3
  end
4
4
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hutch
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.16.0
4
+ version: 0.17.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Harry Marr