knife-brightbox 0.6.0 → 0.6.1

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: 7bb0e146bc9621a0d3500e6505cb712b70c9d67f
4
- data.tar.gz: a0364096bfed3175c858d37b2573c6841ed1abc9
3
+ metadata.gz: 7e536cd4a2961dcf7f98dd78a8f0f3caaf378ab0
4
+ data.tar.gz: c65a1c20f3cec6ed259b544da1d29e6d096993e9
5
5
  SHA512:
6
- metadata.gz: f9c85607278ed1908f5798ae41475cd07706df2882cf31d3a19fd14760efd6c84731e1a20e5eb427d634d9a0c764cb69d8ba0cb7308121b4c167fcb734e11165
7
- data.tar.gz: ffeddfc31604a6cb47b17a85ae4840e2d8636a5d781b265a1a9c8d2f0c63393827494976850aa08b5f9368b272c20939eae8672a15fdab2120862dcdab3d9723
6
+ metadata.gz: 11693992515a3dd0969e55267732150bb3ceb859393fdf3e6ee08538e8c15bf01e225992e1bfb86dbca06b2b58c6549d255c9ad1a8c2e2e6b65a433e41e45972
7
+ data.tar.gz: ca3faa0fcba12831c24cd6eb46f56658560d1a1313808815abe610a1f873caac7071632f6376ca20e13cb84dc1d1c56710932aa5c26c25dad0bd4eb048ae627c
data/CHANGELOG CHANGED
@@ -1,3 +1,8 @@
1
+ # 0.6.1
2
+
3
+ * Fix fog deprecation warning by using service not connection
4
+ * Remove dangling whitespace in delete server output
5
+
1
6
  # 0.6.0
2
7
 
3
8
  * Add support for passing JSON attributes to booting servers
@@ -180,7 +180,7 @@ class Chef
180
180
  print "\n#{ui.color("Waiting server", :magenta)}"
181
181
 
182
182
  # wait for it to be ready to do stuff
183
- server.wait_for { print "."; connection.servers.get(server.id).ready? }
183
+ server.wait_for { print "."; service.servers.get(server.id).ready? }
184
184
 
185
185
  puts("\n")
186
186
 
@@ -189,7 +189,7 @@ class Chef
189
189
  cip = connection.cloud_ips.get ip['id']
190
190
  destination_id = server.interfaces.last['id']
191
191
  cip.map destination_id
192
- server.wait_for { print "."; connection.cloud_ips.get(ip['id']).mapped? }
192
+ server.wait_for { print "."; service.cloud_ips.get(ip['id']).mapped? }
193
193
  puts " done\n"
194
194
 
195
195
  server = connection.servers.get(server.id)
@@ -89,7 +89,7 @@ class Chef
89
89
 
90
90
  server.cloud_ips.each do |cid|
91
91
  cid = connection.cloud_ips.get(cid["id"])
92
- print "#{ui.color("WARNING: ", :yellow)} Deleted cloud ip (#{cid.id})"
92
+ print "#{ui.color("WARNING:", :yellow)} Deleted cloud ip (#{cid.id})"
93
93
  print(".") until wait_for_release { cid.destroy; puts("done!") }
94
94
  end
95
95
  else
@@ -1,6 +1,6 @@
1
1
  module Knife
2
2
  module Brightbox
3
- VERSION = "0.6.0"
3
+ VERSION = "0.6.1"
4
4
  MAJOR, MINOR, TINY = VERSION.split('.')
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: knife-brightbox
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sergio Rubio
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-06-26 00:00:00.000000000 Z
11
+ date: 2014-07-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fog