hygroscope 1.1.1 → 1.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0d8b00db8a6e274402cc73b1db15a7250ec1733a
4
- data.tar.gz: 3596dcf87638e808b78120d88ce0099cc19fc89d
3
+ metadata.gz: 6634abc3204b762f9de6a7e08844c5d6d349a840
4
+ data.tar.gz: ed02e8daadc2bf45c747720c340db9e0b919afef
5
5
  SHA512:
6
- metadata.gz: 7b068a17ed2bd8a1fae49b690a034991c4d3fa0be0a4fa4ebb5085a24261d68897c5bcb79d1a6488d668f3842e5dce8c5f566caad0e32857a1b39f9e88706d8a
7
- data.tar.gz: 23d62cb6593737eaed96f793ee970029d70b2b542b1f64a32e63a0a2a44fcc9437d1d9d498004c6bea06b803befab6df93ee2cda4ff75e8b3ba3f78349b3ab59
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 Payload parameters for more flexibility
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
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'hygroscope'
3
- s.version = '1.1.1'
3
+ s.version = '1.1.2'
4
4
  s.summary = 'CloudFormation launcher'
5
5
  s.description = 'A tool for managing the launch of complex CloudFormation stacks'
6
6
  s.authors = ['Daniel Silverman']
@@ -80,11 +80,11 @@ module Hygroscope
80
80
  missing = t.parameters.keys
81
81
  end
82
82
 
83
- if options[:existing]
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(options[:existing])
87
- say_status('info', "Populating parameters from #{options[:existing]} stack", :blue)
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 an existing stack from which to retrieve outputs as parameters (optional)'
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,
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hygroscope
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 1.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Silverman