cloudformation-ruby-dsl 0.4.9 → 0.4.10
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c269055c86355a4f4298deb5dd63b32e691f7010
|
4
|
+
data.tar.gz: 981ac195a9ed4ea89bf0fd2d73a891fdd789f050
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 132caba3cd8edc5fa3e6a8a094bddb2603e7c9f5f5c3517fe84d7f9b407f6bf43315f1cc229f56d48ad62ea8a475d9c5e3eeeaa76b6c8ef84a3819cca232df9e
|
7
|
+
data.tar.gz: a50e9ade298a8079218021d03369c5f8809a076a3ed23cc6f3eadcd9fe358c9990ee9f288736b9455e2e4947b2e66f213940507befeac39fb0753132871fecdf
|
@@ -183,7 +183,7 @@ def cfn_cmd(template)
|
|
183
183
|
# the argument (if it exists) and validate against the existing stack to ensure tags haven't changed.
|
184
184
|
# Compare the sorted arrays for an exact match
|
185
185
|
old_cfn_tags = old_stack_attributes['TAGS'].split(';').sort rescue [] # Use empty Array if .split fails
|
186
|
-
if cfn_tags != old_cfn_tags
|
186
|
+
if cfn_tags.sort != old_cfn_tags
|
187
187
|
$stderr.puts "CloudFormation stack tags do not match and cannot be updated. You must either use the same tags or create a new stack." +
|
188
188
|
"\n" + (old_cfn_tags - cfn_tags).map {|tag| "< #{tag}" }.join("\n") +
|
189
189
|
"\n" + "---" +
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cloudformation-ruby-dsl
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Shawn Smith
|
@@ -15,7 +15,7 @@ authors:
|
|
15
15
|
autorequire:
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
|
-
date: 2015-
|
18
|
+
date: 2015-03-10 00:00:00.000000000 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: detabulator
|