hygroscope 1.3.1 → 1.3.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3a7738acaf07463177f266c544d56d2a1a9ac44a
4
- data.tar.gz: bae2e984bc11ebb87067b3bd2a053bc025f5c145
3
+ metadata.gz: 395d24d88546514f78fe655b1717886cd9863010
4
+ data.tar.gz: acc68a37ef451bc7b7e0cb4d733efa80cdb09f42
5
5
  SHA512:
6
- metadata.gz: 46516db011c962452711298fe6915e63dc84b75e4a16f1268208d5de8b9503c2fc2747e3f3af81cf74f017a259357bf315e56749d508fe65f119c4934f5988ae
7
- data.tar.gz: 908fa0edabf8e61f278b384e4402eb1f57e5cc4630027966f5ab82e1c3e6f46ec4f961b9db94328f7a5c5baf4e9488b53d1c4378b90c0a8260ce72166874eaff
6
+ metadata.gz: 34119bc015c7211bcf45aab10c1cc155fe584c1c7fc01c68ae6b57b0e55516a3c2ac900d4eaf0e17743e9694efb00e317adcc7b064595374f29a3398015be0ac
7
+ data.tar.gz: 119e54873f433f5616f5084f1fceab752e9451df9c128f8e771c086794f8b5b343dcea91e187d8eab4f48fb3fe4972482fc92e010bb8047787f7f72cdcfe607e
@@ -1,3 +1,6 @@
1
+ # 1.3.2 (2016-09-06)
2
+ - Do not error out when a templates does not require any parameters.
3
+
1
4
  # 1.3.1 (2016-08-24)
2
5
  - When performing updates do not set use_existing flag on parameters that are
3
6
  inherited from existing stacks.
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'hygroscope'
3
- s.version = '1.3.1'
3
+ s.version = '1.3.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']
@@ -114,7 +114,11 @@ module Hygroscope
114
114
  missing = options[:ask] ? template_keys : template_keys - paramset_keys
115
115
  else
116
116
  # No paramset provided, so every parameter is missing!
117
- missing = t.parameters.keys
117
+ missing = if t.parameters.empty?
118
+ {}
119
+ else
120
+ t.parameters.keys
121
+ end
118
122
  end
119
123
 
120
124
  options[:existing].each do |existing|
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hygroscope
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.1
4
+ version: 1.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Silverman
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-08-24 00:00:00.000000000 Z
11
+ date: 2016-09-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor