knife-softlayer 0.4.6 → 0.4.7

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: 0af8599ee6d67e394fd068e16580da341f1b6cc6
4
- data.tar.gz: c64426a0ea8f3148f8f6b2e9120c44f2d175c2b0
3
+ metadata.gz: 250f424563d791cf3c27cb9c90806d7d12ca665c
4
+ data.tar.gz: 6ab761c34953975d0c245ae9de5a820b394cdf22
5
5
  SHA512:
6
- metadata.gz: f8f5093bfc784984d3ff16fba57d762007007e23fa2e6661e1c36acb8862fc30db93c05a0b9786861370847b8f63ff091a653319306e605430e62766f27e5959
7
- data.tar.gz: 87dad4e09816abe298bd0f01812e055075de7567e5ba5874905a4ac5dca155472e774b2130951c51a8cb80cafec582cbf98807c4ecb0bd456053bf4451747c6b
6
+ metadata.gz: c4579e13bfd34c028bb771bac85e5c6b32f2855766c8f8ac4e4967c3285ee039a48819c29918091e7b90874bbbea81f7a2dd45f9fc3e75c55533511268d278ee
7
+ data.tar.gz: 2e977bdb236b3a0214127829fefa32a1f777d5ca1e548d72f63842135d42790e61f0713b4888e3f4591c6ef5990e97a782b4c539be23a5d18ab1f99b46ac1914
@@ -316,7 +316,7 @@ class Chef
316
316
  if config[:private_network_only] || config[:use_private_network]
317
317
  instance.ssh_ip_address = Proc.new {|server| server.private_ip_address }
318
318
  end
319
- progress Proc.new { instance.wait_for(timeout=config[:wait_for_timeout]) { ready? and sshable? } }
319
+ progress Proc.new { instance.wait_for(timeout=config[:wait_for_timeout].to_i) { ready? and sshable? } }
320
320
  putc("\n")
321
321
 
322
322
  if config[:tags]
@@ -7,6 +7,6 @@
7
7
 
8
8
  module Knife
9
9
  module Softlayer
10
- VERSION = "0.4.6"
10
+ VERSION = "0.4.7"
11
11
  end
12
12
  end
@@ -0,0 +1,19 @@
1
+ 1. Build the gem
2
+ ```bash
3
+ $ gem build knife-softlayer.gemspec
4
+ Successfully built RubyGem
5
+ Name: knife-softlayer
6
+ Version: 0.4.6
7
+ File: knife-softlayer-0.4.6.gem
8
+ ```
9
+ 2. Push the gem to RubyGem
10
+ ```bash
11
+ $ gem push knife-softlayer-0.4.6.gem
12
+ Enter your RubyGems.org credentials.
13
+ Don't have an account yet? Create one at https://rubygems.org/sign_up
14
+ Email: USERNAME
15
+ Password:
16
+ Signed in.
17
+ Pushing gem to https://rubygems.org...
18
+ Successfully registered gem: knife-softlayer (0.4.6)
19
+ ```
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: knife-softlayer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.6
4
+ version: 0.4.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Eldridge
@@ -197,6 +197,7 @@ files:
197
197
  - lib/chef/knife/softlayer_vlan_list.rb
198
198
  - lib/chef/knife/softlayer_vlan_show.rb
199
199
  - lib/knife-softlayer/version.rb
200
+ - release.md
200
201
  - spec/spec_helper.rb
201
202
  - spec/unit/softlayer_base_spec.rb
202
203
  - spec/unit/softlayer_server_create_spec.rb