knife-cloudformation 0.1.8 → 0.1.10

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## v0.1.10
2
+ * Fix parameter passing via the CLI (data loss issue when value contained ':')
3
+
1
4
  ## v0.1.8
2
5
  * Update event cache handling
3
6
  * Allow multiple users for node connect attempts
data/Gemfile.lock ADDED
@@ -0,0 +1,90 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ knife-cloudformation (0.1.9)
5
+ attribute_struct (~> 0.1.6)
6
+ chef
7
+ fog (~> 1.15)
8
+ net-sftp
9
+ redis-objects
10
+
11
+ GEM
12
+ remote: https://rubygems.org/
13
+ specs:
14
+ attribute_struct (0.1.6)
15
+ hashie (>= 2.0.0)
16
+ builder (3.2.2)
17
+ chef (11.6.0)
18
+ erubis
19
+ highline (>= 1.6.9)
20
+ json (>= 1.4.4, <= 1.7.7)
21
+ mixlib-authentication (>= 1.3.0)
22
+ mixlib-cli (~> 1.3.0)
23
+ mixlib-config (>= 1.1.2)
24
+ mixlib-log (>= 1.3.0)
25
+ mixlib-shellout
26
+ net-ssh (~> 2.6)
27
+ net-ssh-multi (~> 1.1.0)
28
+ ohai (>= 0.6.0)
29
+ rest-client (>= 1.0.4, < 1.7.0)
30
+ yajl-ruby (~> 1.1)
31
+ erubis (2.7.0)
32
+ excon (0.25.3)
33
+ fog (1.15.0)
34
+ builder
35
+ excon (~> 0.25.0)
36
+ formatador (~> 0.2.0)
37
+ mime-types
38
+ multi_json (~> 1.0)
39
+ net-scp (~> 1.1)
40
+ net-ssh (>= 2.1.3)
41
+ nokogiri (~> 1.5)
42
+ ruby-hmac
43
+ formatador (0.2.4)
44
+ hashie (2.0.5)
45
+ highline (1.6.19)
46
+ ipaddress (0.8.0)
47
+ json (1.7.7)
48
+ mime-types (1.25)
49
+ mini_portile (0.5.1)
50
+ mixlib-authentication (1.3.0)
51
+ mixlib-log
52
+ mixlib-cli (1.3.0)
53
+ mixlib-config (2.0.0)
54
+ mixlib-log (1.6.0)
55
+ mixlib-shellout (1.2.0)
56
+ multi_json (1.8.0)
57
+ net-scp (1.1.2)
58
+ net-ssh (>= 2.6.5)
59
+ net-sftp (2.1.2)
60
+ net-ssh (>= 2.6.5)
61
+ net-ssh (2.7.0)
62
+ net-ssh-gateway (1.2.0)
63
+ net-ssh (>= 2.6.5)
64
+ net-ssh-multi (1.1)
65
+ net-ssh (>= 2.1.4)
66
+ net-ssh-gateway (>= 0.99.0)
67
+ nokogiri (1.6.0)
68
+ mini_portile (~> 0.5.0)
69
+ ohai (6.18.0)
70
+ ipaddress
71
+ mixlib-cli
72
+ mixlib-config
73
+ mixlib-log
74
+ mixlib-shellout
75
+ systemu
76
+ yajl-ruby
77
+ redis (3.0.5)
78
+ redis-objects (0.7.0)
79
+ redis (>= 3.0.2)
80
+ rest-client (1.6.7)
81
+ mime-types (>= 1.16)
82
+ ruby-hmac (0.4.0)
83
+ systemu (2.5.2)
84
+ yajl-ruby (1.1.0)
85
+
86
+ PLATFORMS
87
+ ruby
88
+
89
+ DEPENDENCIES
90
+ knife-cloudformation!
@@ -21,7 +21,9 @@ class Chef
21
21
  :long => '--parameter KEY:VALUE',
22
22
  :description => 'Set parameter. Can be used multiple times.',
23
23
  :proc => lambda {|val|
24
- key,value = val.split(':')
24
+ parts = val.split(':')
25
+ key = parts.first
26
+ value = parts[1, parts.size].join
25
27
  Chef::Config[:knife][:cloudformation][:options][:parameters] ||= Mash.new
26
28
  Chef::Config[:knife][:cloudformation][:options][:parameters][key] = value
27
29
  }
@@ -2,5 +2,5 @@ module KnifeCloudformation
2
2
  class Version < Gem::Version
3
3
  end
4
4
 
5
- VERSION = Version.new('0.1.8')
5
+ VERSION = Version.new('0.1.10')
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.8
4
+ version: 0.1.10
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-09-25 00:00:00.000000000 Z
12
+ date: 2013-10-17 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: chef
@@ -81,7 +81,6 @@ executables: []
81
81
  extensions: []
82
82
  extra_rdoc_files: []
83
83
  files:
84
- - knife-cloudformation-0.1.6.gem
85
84
  - lib/chef/knife/cloudformation_events.rb
86
85
  - lib/chef/knife/cloudformation_base.rb
87
86
  - lib/chef/knife/cloudformation_destroy.rb
@@ -101,6 +100,7 @@ files:
101
100
  - README.md
102
101
  - knife-cloudformation.gemspec
103
102
  - CHANGELOG.md
103
+ - Gemfile.lock
104
104
  homepage: http://github.com/heavywater/knife-cloudformation
105
105
  licenses: []
106
106
  post_install_message:
Binary file