cloudformation-ruby-dsl 1.3.1 → 1.3.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/cloudformation-ruby-dsl/cfntemplate.rb +1 -1
- data/lib/cloudformation-ruby-dsl/version.rb +1 -1
- data/spec/spec_helper.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 57fff8ca0d99312692f6c33807de5aa47a6985c0
|
4
|
+
data.tar.gz: c8b847f425907f314e78696a856ffd1179e7f715
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d4caeec967852e730b440ceb33975a8c863fabed84e92907aea1b8c158490cdf0a7b485f42a1e23cb2e1586ff70dd6026b80997791fe6693b0065e2946c2885d
|
7
|
+
data.tar.gz: f906f46d8980cc727d1db1c21c7a8468c8ee37f324e833783ed3807fc108ed48d759c80f9171f092f994ca4e00b1966a87b32a4fe8eefa7b0dd00959a133fddc
|
@@ -91,7 +91,7 @@ def parse_args
|
|
91
91
|
when '--stack-name'
|
92
92
|
args[:stack_name] = value
|
93
93
|
when '--parameters'
|
94
|
-
args[:parameters] = Hash[value.split(
|
94
|
+
args[:parameters] = Hash[value.split(/;\s*/).map { |pair| pair.split(/=/, 2) }] #/# fix for syntax highlighting
|
95
95
|
when '--interactive'
|
96
96
|
args[:interactive] = true
|
97
97
|
when '--region'
|
data/spec/spec_helper.rb
CHANGED
@@ -104,7 +104,7 @@ module FileHelpers
|
|
104
104
|
# Delete a file from the spec/tmp directory
|
105
105
|
def delete_test_file(filename)
|
106
106
|
abs_path = File.join(from_project_root("spec/tmp"), filename)
|
107
|
-
FileUtils.rm(abs_path)
|
107
|
+
FileUtils.rm(abs_path) if File.exist?(abs_path)
|
108
108
|
end
|
109
109
|
|
110
110
|
##
|
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: 1.3.
|
4
|
+
version: 1.3.2
|
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: 2016-
|
18
|
+
date: 2016-11-03 00:00:00.000000000 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: detabulator
|