knife-softlayer 0.3.3 → 0.3.5

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,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- YmY4NThkYjg3NTA1ZDU3MjVkNGE5NTU1ODliNjQxOTg3Y2NhNjY2Ng==
4
+ NmFiNGJiYmRmN2E0OWRkM2FkNjA5NGRkMDViYWM3ZWM5ZmVkNWYxMg==
5
5
  data.tar.gz: !binary |-
6
- NzdiNWRjZDQ4NjZjZTc1Y2ZlOGVhNzM3OThlMWU0MzRlZjExOTc0Yg==
6
+ NWMwMWNlNWE4YzBhMTcwOGJlZWQ0Y2I3OTFkMzQ5MTk1MmMyZjEyYQ==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- YTM2Mjg3ODAwZjNhMmVkZGNiZGFiODUwMGQ1ZjU2OWY3NWUxYjlmNmEzYWY0
10
- NjdhYjgyMjQzZGZlNWNkNDkwZWQ2YmM2NDI3ZGNiZGVlOThjMjFlZjY5ZDI0
11
- MTQ5YjYwYzA5OTAxZDM3YzQwNmM5ZDIxYjNiOTQxZjNiMjQxNTU=
9
+ YmU1NTMyMWNiYjU1Zjk0NzZiYTM3NzlkMTZmZTUxNTk0ZjYxODA2MzJmZTUw
10
+ ZDA1YjkxMjExNzY5NDRjMjA4MTkyN2NhZWE0YWMxOGEwNTczMjJhNTliOWVm
11
+ NjA5NTg5NTA2NmJjNzhmZjliYTBjMDA0MDE3NjQ3MzNmZjE3Nzg=
12
12
  data.tar.gz: !binary |-
13
- OTI0NDM3YTVjMTQxMmJjMzI5MzQ0MGUyNGY1MGYyNzU5MWExNWE2NzNlMWRj
14
- NmM2ZDU0ZTAxNDhlYzM3NjUzODBjOGZkY2FhZTliMTE2ZjlhYTUzMjI1NGEx
15
- Y2U5NTNjNTU4ZTg1YTA5Nzk5YWM5M2Y2ZGU0YTc5NTllZGI0ZDk=
13
+ YjBmNDVhYTkyN2VlYzQ5ZGUwMzEyMDUyZDYzNjhhZDViNDc1Yjc0YjFmMzEy
14
+ NTRhMDgwZmE1NGE4MTEzNDhmOTQwNDZkNGE3ZjI1MjZjY2Y0OTYzZjEzZDZi
15
+ N2NhZTUyMGYzNmE4M2Y1ZjlmMjgyNTBlZWVkYTg1YWM3NzZlZjE=
@@ -0,0 +1,3 @@
1
+ * Dave Henderson <dave.henderson@ca.ibm.com>
2
+ * HIGUCHI Daisuke <d-higuchi@creationline.com>
3
+ * Matt Eldridge <matt.eldridge@us.ibm.com>
@@ -25,7 +25,7 @@ Gem::Specification.new do |spec|
25
25
  spec.test_files = spec.files.grep(%r{^(spec|spec|features)/})
26
26
  spec.require_paths = ["lib"]
27
27
 
28
- spec.add_dependency "fog-softlayer", "~> 0.3", ">= 0.3.14"
28
+ spec.add_dependency "fog-softlayer", "~> 0.3", ">= 0.3.20"
29
29
  spec.add_dependency "knife-windows", "> 0.5.12"
30
30
  spec.add_dependency "net-ssh", "> 2.8.0"
31
31
 
@@ -35,4 +35,5 @@ Gem::Specification.new do |spec|
35
35
  spec.add_development_dependency "rake", "~>10.1"
36
36
  spec.add_development_dependency "sdoc", "~>0.3"
37
37
  spec.add_development_dependency "bundler", "~>1.5"
38
+ spec.add_development_dependency "osrcry"
38
39
  end
@@ -53,7 +53,8 @@ class Chef
53
53
  option :block_storage,
54
54
  :long => '--block-storage VALUE',
55
55
  :short => '-B VALUE',
56
- :description => 'The size in GB of the block storage devices (disks) for this instance. Specify 1 - 5 entries in a comma separated list following the format "dev:size". Example: "0:25,2:500" would be a 25GB volume on device 0 (the root partition) and a 100GB volume on on device 2. [NOTE: SoftLayer VMs always reserve device 1 for a swap device.] '
56
+ :description => 'The size in GB of the block storage devices (disks) for this instance. Specify 1 - 5 entries in a comma separated list following the format "dev:size". Example: "0:25,2:500" would be a 25GB volume on device 0 (the root partition) and a 100GB volume on on device 2. [NOTE: SoftLayer VMs always reserve device 1 for a swap device.] ',
57
+ :proc => Proc.new { |devs| devs.split(',').map{ |dev| device, capacity = dev.split(':'); {"device"=>device, "diskImage"=>{"capacity"=>capacity}} } }
57
58
 
58
59
  option :nic,
59
60
  :long => '--network-interface-speed VALUE',
@@ -7,6 +7,6 @@
7
7
 
8
8
  module Knife
9
9
  module Softlayer
10
- VERSION = "0.3.3"
10
+ VERSION = "0.3.5"
11
11
  end
12
12
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: knife-softlayer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.3
4
+ version: 0.3.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Eldridge
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-09-12 00:00:00.000000000 Z
11
+ date: 2014-10-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fog-softlayer
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '0.3'
20
20
  - - ! '>='
21
21
  - !ruby/object:Gem::Version
22
- version: 0.3.14
22
+ version: 0.3.20
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '0.3'
30
30
  - - ! '>='
31
31
  - !ruby/object:Gem::Version
32
- version: 0.3.14
32
+ version: 0.3.20
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: knife-windows
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -142,6 +142,20 @@ dependencies:
142
142
  - - ~>
143
143
  - !ruby/object:Gem::Version
144
144
  version: '1.5'
145
+ - !ruby/object:Gem::Dependency
146
+ name: osrcry
147
+ requirement: !ruby/object:Gem::Requirement
148
+ requirements:
149
+ - - ! '>='
150
+ - !ruby/object:Gem::Version
151
+ version: '0'
152
+ type: :development
153
+ prerelease: false
154
+ version_requirements: !ruby/object:Gem::Requirement
155
+ requirements:
156
+ - - ! '>='
157
+ - !ruby/object:Gem::Version
158
+ version: '0'
145
159
  description: A knife plugin for launching and bootstrapping instances in the IBM SoftLayer
146
160
  cloud.
147
161
  email:
@@ -154,6 +168,7 @@ files:
154
168
  - .travis.yml
155
169
  - CHANGELOG.md
156
170
  - CONTRIBUTING.md
171
+ - CONTRIBUTORS.md
157
172
  - Gemfile
158
173
  - LICENSE.txt
159
174
  - README.md