hygroscope 1.1.1 → 1.1.2
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 +6 -2
- data/hygroscope.gemspec +1 -1
- data/lib/hygroscope/cli.rb +5 -4
- 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: 6634abc3204b762f9de6a7e08844c5d6d349a840
|
|
4
|
+
data.tar.gz: ed02e8daadc2bf45c747720c340db9e0b919afef
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9841fce1ff43b65da874f0861b89813da87d2c7bb6ebf882e9038ef7b2f02bc554b3a204aaaa88910d735bb60417ea6d08018b93ea77c7cfa34294f397618d7b
|
|
7
|
+
data.tar.gz: 1b4d4a3f9c80e68b38cf2a16866fb3006277e3175678f534b9ee2bccf6849d8dcbc0954e65745f74f639c251e4ca8b23e993fb0ae46814167ebed92abd4a5316
|
data/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
|
+
## 1.1.2 (2015-02-04)
|
|
2
|
+
|
|
3
|
+
- Allow multiple existing stacks for parameter passthrough.
|
|
4
|
+
|
|
1
5
|
## 1.1.1 (2015-02-04)
|
|
2
6
|
|
|
3
|
-
- Improved
|
|
4
|
-
- Fixed broken update action
|
|
7
|
+
- Improved payload parameters for more flexibility.
|
|
8
|
+
- Fixed broken update action.
|
|
5
9
|
|
|
6
10
|
## 1.1.0 (2015-02-03)
|
|
7
11
|
|
data/hygroscope.gemspec
CHANGED
data/lib/hygroscope/cli.rb
CHANGED
|
@@ -80,11 +80,11 @@ module Hygroscope
|
|
|
80
80
|
missing = t.parameters.keys
|
|
81
81
|
end
|
|
82
82
|
|
|
83
|
-
|
|
83
|
+
options[:existing].each do |existing|
|
|
84
84
|
# User specified an existing stack from which to pull outputs and
|
|
85
85
|
# translate into parameters. Load the existing stack.
|
|
86
|
-
e = Hygroscope::Stack.new(
|
|
87
|
-
say_status('info', "Populating parameters from #{
|
|
86
|
+
e = Hygroscope::Stack.new(existing)
|
|
87
|
+
say_status('info', "Populating parameters from #{existing} stack", :blue)
|
|
88
88
|
|
|
89
89
|
# Fill any template parameter that matches an output from the existing
|
|
90
90
|
# stack, overwriting values from the paramset object. The user will
|
|
@@ -176,8 +176,9 @@ module Hygroscope
|
|
|
176
176
|
desc: 'Name of saved paramset to use (optional)'
|
|
177
177
|
method_option :existing,
|
|
178
178
|
aliases: '-e',
|
|
179
|
+
type: :array,
|
|
179
180
|
required: false,
|
|
180
|
-
desc: 'Name of
|
|
181
|
+
desc: 'Name of one or more existing stacks from which to retrieve outputs as parameters (optional)'
|
|
181
182
|
method_option :ask,
|
|
182
183
|
aliases: '-a',
|
|
183
184
|
type: :boolean,
|