cloudformation-ruby-dsl 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: e433b9435a5dc639cb08174c3c8ede7b21cb3508
4
- data.tar.gz: 8124f5edfb23b390df0afaf514bd254ac4de67c1
3
+ metadata.gz: 57fff8ca0d99312692f6c33807de5aa47a6985c0
4
+ data.tar.gz: c8b847f425907f314e78696a856ffd1179e7f715
5
5
  SHA512:
6
- metadata.gz: bf6b0434e5db033f9874a617c5ea3b46e90dd99e3dd929dcec34fdf25fd65e1d689f70d997f5a0adf5f7100452939d835ccf542bd4e42f2076c914afae2bc60b
7
- data.tar.gz: 16f75abbcc2661c1d7e0dfe8799fedd9760a308f06c51d86ea7bba6df844aae4b9e0cb14b0291ef63de8f5f72906e7e90afb49c661b7020371f98741a8c1d4cf
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(/;/).map { |pair| pair.split(/=/, 2) }] #/# fix for syntax highlighting
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'
@@ -15,7 +15,7 @@
15
15
  module Cfn
16
16
  module Ruby
17
17
  module Dsl
18
- VERSION = "1.3.1"
18
+ VERSION = "1.3.2"
19
19
  end
20
20
  end
21
21
  end
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.1
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-10-18 00:00:00.000000000 Z
18
+ date: 2016-11-03 00:00:00.000000000 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: detabulator