orchestration 0.2.0 → 0.2.1

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: 9c1480a6241a2ea71eaa7a9c9fc3ad4d098a180b
4
- data.tar.gz: 352354aef228f577185908ea06f9aa332cee5ec9
3
+ metadata.gz: b5689d665c79d3bc7efb105043c7bae48b9ebc2b
4
+ data.tar.gz: 795623463bfbe0e52935f35e00e950be6956691c
5
5
  SHA512:
6
- metadata.gz: 9c0ac0ad8b6f5a780a8f9dce28f528175b1d4894b9d18db365035efdb5088b98d6d4665dc327a43dfd8030d278ec4dfbecc88877a080b2e12fda513427ab2316
7
- data.tar.gz: 985e17427df0c2347892f628ae14fccb144aa6a1767d5a0f0351d73b4cb7f23faf24072d1fd8f924db83a47fcf8333232c2968b506ae5181f541507b1a4ca4a2
6
+ metadata.gz: 5505726c481848f3a3276e8be6b53b772b081657bc8401e0c97b0fb18254847f09b14efec8cc56bad53099cfbedddbc8948eef8344db6e04d64051e969bae4ae
7
+ data.tar.gz: 37d7a6798a61fc5c6d6531d0b99b3eef0842672b99a404b91e02995b1bcbb90a53f663fd043231ca7b35eb134ccabeebb31d04c551fb7839997f95744c09f5fd
data/README.md CHANGED
@@ -18,7 +18,7 @@ Containers are automatically created for the following dependencies:
18
18
  Add this line to your application's Gemfile:
19
19
 
20
20
  ```ruby
21
- gem 'orchestration', '~> 0.2.0'
21
+ gem 'orchestration', '~> 0.2.1'
22
22
  ```
23
23
 
24
24
  And then build your bundle:
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Orchestration
4
- VERSION = '0.2.0'
4
+ VERSION = '0.2.1'
5
5
  end
@@ -32,7 +32,9 @@ namespace :orchestration do
32
32
  namespace :docker do
33
33
  desc 'Output configured Docker username'
34
34
  task :username do
35
- STDOUT.write(Orchestration::Environment.new.settings('docker.username'))
35
+ STDOUT.write(
36
+ Orchestration::Environment.new.settings.get('docker.username')
37
+ )
36
38
  STDOUT.flush
37
39
  end
38
40
  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.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bob Farrell