orchestration 0.3.15 → 0.3.16

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
  SHA256:
3
- metadata.gz: ff7499be14d897dc5d5385c55f9879e3e0f4a5d8e26ff2b1900da4bdf89ac8d1
4
- data.tar.gz: '00181ce547be977794bd8fc168adda7e846402bb8a0d0ee26495efc9f731c892'
3
+ metadata.gz: fd921565b9b20b945732f3acca684e796a34b34e1ea4d114ae32f08be13a9154
4
+ data.tar.gz: 35215ab0b5e79a4cd0010013c32edfac740040cdf3d781c1e68c9320c5ff5773
5
5
  SHA512:
6
- metadata.gz: 6d903f4a1ebadb2f58d4ad227257596895213f9a837b35a6eed340ca73a4d731c1e0a3a5665592b070acbec11b2b56bfb342dcec22a4ee59f3cb117391a010b3
7
- data.tar.gz: 4bf720ae1e9fa003dabe45590b6a7099778327e0c4a62a16e7873407b14a6a822e77a04b127374573592729a833b75fbf73ceb82e9e367854444ff192aae3639
6
+ metadata.gz: 8e18cd088528a72508ddf360cedcb1ccb2a8a2ead7988c63b023bb5540c036eda8012d096cc4495d9c902a6e6e032ef076ebe94117c9fb600679c96b21af39ea
7
+ data.tar.gz: 6ef64fcd29bf6e962b311008bf9473196fda122bca958e2a8863740248074b65c8b6934b8518d72da8b2d55855f3d7df8c6bc7229130727d6e28e021c84ffe04
data/README.md CHANGED
@@ -11,7 +11,7 @@ _Orchestration_ is a toolkit for testing, building, and deploying _Ruby_ (includ
11
11
  Add _Orchestration_ to your Gemfile:
12
12
 
13
13
  ```ruby
14
- gem 'orchestration', '~> 0.3.15'
14
+ gem 'orchestration', '~> 0.3.16'
15
15
  ```
16
16
 
17
17
  Install:
@@ -17,9 +17,9 @@ module Orchestration
17
17
  end
18
18
 
19
19
  def connect
20
- port = @configuration.local_port
21
-
22
- connection = Bunny.new("amqp://localhost:#{port}", log_file: devnull)
20
+ host = @configuration.settings.fetch('host')
21
+ port = @configuration.settings.fetch('port')
22
+ connection = Bunny.new("amqp://#{host}:#{port}", log_file: devnull)
23
23
  connection.start
24
24
  connection.stop
25
25
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Orchestration
4
- VERSION = '0.3.15'
4
+ VERSION = '0.3.16'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: orchestration
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.15
4
+ version: 0.3.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bob Farrell