knife-cloudformation 0.1.10 → 0.1.12

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.
@@ -1,3 +1,6 @@
1
+ ## v0.1.12
2
+ * Use the split value when re-joining parameters
3
+
1
4
  ## v0.1.10
2
5
  * Fix parameter passing via the CLI (data loss issue when value contained ':')
3
6
 
@@ -23,7 +23,7 @@ class Chef
23
23
  :proc => lambda {|val|
24
24
  parts = val.split(':')
25
25
  key = parts.first
26
- value = parts[1, parts.size].join
26
+ value = parts[1, parts.size].join(':')
27
27
  Chef::Config[:knife][:cloudformation][:options][:parameters] ||= Mash.new
28
28
  Chef::Config[:knife][:cloudformation][:options][:parameters][key] = value
29
29
  }
@@ -2,5 +2,5 @@ module KnifeCloudformation
2
2
  class Version < Gem::Version
3
3
  end
4
4
 
5
- VERSION = Version.new('0.1.10')
5
+ VERSION = Version.new('0.1.12')
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: knife-cloudformation
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.10
4
+ version: 0.1.12
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-10-17 00:00:00.000000000 Z
12
+ date: 2013-10-18 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: chef