knife-cloud 2.0.3 → 2.0.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,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2faf09682aa12fa3ae8f46295159cbefea8158bcfc6f636f49c79f71cf6cb72d
4
- data.tar.gz: 5d90a5bb0f7b079f757efdb08152aee4d0455c3595f509cb91e69e30984d2733
3
+ metadata.gz: 14f7ee3017bfcd37e3575dec76011a14f9af8ae6fa7dd7201b069e565f8fd652
4
+ data.tar.gz: d7d7aa34c539cc28f2590e934c53940a042677e715d203c9512fbffa44f9cb1f
5
5
  SHA512:
6
- metadata.gz: 0d123173f850f37bfc50dce54f9777da38f4e93ec5c8a7adcac70d27c6b7ab0b3dd59cdcfe083cf0e751b48735c19bb96c9435d38084e9c6b5094665a8cd615d
7
- data.tar.gz: aa78eed5d15dac77723f355ddf8da5b4dede80c9388e2112c12eaea16e21f13ec208fe19e4877f8ec91a6425496ebacd6bc8dfe2e553f7d7a561523fc2c2e2b0
6
+ metadata.gz: e246f4727e8876ed415551368667e0fc7494f449ba4f28d59f257e1eba604a9f51225a3f6ef412370687f7b07a4f143232e14c449bfffe7d2317251f4b97960c
7
+ data.tar.gz: 326f8e5aded5549cca4caf0500a1beca39946fa54860e85b26cce8131b61304e45189b7af05f4d44ed4d41742ad87afba497f0f0f68704562bd0eefdc1b11956
@@ -15,7 +15,7 @@
15
15
  # See the License for the specific language governing permissions and
16
16
  # limitations under the License.
17
17
 
18
- require "chef/knife/cloud/helpers"
18
+ require_relative "../helpers"
19
19
 
20
20
  class Chef
21
21
  class Knife
@@ -18,7 +18,7 @@
18
18
  #
19
19
 
20
20
  require "chef/knife/core/ui"
21
- require "chef/knife/cloud/helpers"
21
+ require_relative "../helpers"
22
22
 
23
23
  class Chef
24
24
  class Knife
@@ -18,10 +18,10 @@
18
18
  #
19
19
 
20
20
  require "chef/knife/core/ui"
21
- require "chef/knife/cloud/chefbootstrap/ssh_bootstrap_protocol"
22
- require "chef/knife/cloud/chefbootstrap/winrm_bootstrap_protocol"
23
- require "chef/knife/cloud/chefbootstrap/bootstrap_distribution"
24
- require "chef/knife/cloud/exceptions"
21
+ require_relative "ssh_bootstrap_protocol"
22
+ require_relative "winrm_bootstrap_protocol"
23
+ require_relative "bootstrap_distribution"
24
+ require_relative "../exceptions"
25
25
 
26
26
  class Chef
27
27
  class Knife
@@ -17,7 +17,7 @@
17
17
  # limitations under the License.
18
18
  #
19
19
 
20
- require "chef/knife/cloud/chefbootstrap/bootstrap_protocol"
20
+ require_relative "bootstrap_protocol"
21
21
  require "chef/knife/core/windows_bootstrap_context"
22
22
  require "chef/knife/bootstrap"
23
23
 
@@ -17,7 +17,7 @@
17
17
  # limitations under the License.
18
18
  #
19
19
 
20
- require "chef/knife/cloud/chefbootstrap/bootstrap_protocol"
20
+ require_relative "bootstrap_protocol"
21
21
 
22
22
  class Chef
23
23
  class Knife
@@ -17,8 +17,8 @@
17
17
  #
18
18
 
19
19
  require "chef/knife"
20
- require "chef/knife/cloud/helpers"
21
- require "chef/knife/cloud/exceptions"
20
+ require_relative "helpers"
21
+ require_relative "exceptions"
22
22
 
23
23
  class Chef
24
24
  class Knife
@@ -17,8 +17,8 @@
17
17
  #
18
18
 
19
19
  require "chef/knife/bootstrap"
20
- require "chef/knife/cloud/helpers"
21
- require "chef/knife/cloud/exceptions"
20
+ require_relative "helpers"
21
+ require_relative "exceptions"
22
22
 
23
23
  class Chef
24
24
  class Knife
@@ -4,8 +4,8 @@
4
4
  # Copyright:: Copyright (c) 2013-2016 Chef Software, Inc.
5
5
  #
6
6
 
7
- require "chef/knife/cloud/service"
8
- require "chef/knife/cloud/exceptions"
7
+ require_relative "../service"
8
+ require_relative "../exceptions"
9
9
 
10
10
  class Chef
11
11
  class Knife
@@ -16,7 +16,7 @@
16
16
  # limitations under the License.
17
17
  #
18
18
 
19
- require "chef/knife/cloud/command"
19
+ require_relative "command"
20
20
 
21
21
  class Chef
22
22
  class Knife
@@ -14,9 +14,9 @@
14
14
  # See the License for the specific language governing permissions and
15
15
  # limitations under the License.
16
16
  #
17
- require "chef/knife/cloud/command_bootstrap"
18
- require "chef/knife/cloud/exceptions"
19
- require "chef/knife/cloud/chefbootstrap/bootstrapper"
17
+ require_relative "../command_bootstrap"
18
+ require_relative "../exceptions"
19
+ require_relative "../chefbootstrap/bootstrapper"
20
20
 
21
21
  class Chef
22
22
  class Knife
@@ -15,8 +15,8 @@
15
15
  # limitations under the License.
16
16
  #
17
17
 
18
- require "chef/knife/cloud/chefbootstrap/bootstrap_options"
19
- require "chef/knife/cloud/server/options"
18
+ require_relative "../chefbootstrap/bootstrap_options"
19
+ require_relative "options"
20
20
 
21
21
  class Chef
22
22
  class Knife
@@ -16,7 +16,7 @@
16
16
  # limitations under the License.
17
17
  #
18
18
 
19
- require "chef/knife/cloud/command"
19
+ require_relative "../command"
20
20
  # These two are needed for the '--purge' deletion case
21
21
  require "chef/node"
22
22
  require "chef/api_client"
@@ -16,7 +16,7 @@
16
16
  # limitations under the License.
17
17
  #
18
18
 
19
- require "chef/knife/cloud/server/options"
19
+ require_relative "options"
20
20
 
21
21
  class Chef
22
22
  class Knife
@@ -1,5 +1,5 @@
1
- require "chef/knife/cloud/list_resource_command"
2
- require "chef/knife/cloud/exceptions"
1
+ require_relative "../list_resource_command"
2
+ require_relative "../exceptions"
3
3
 
4
4
  class Chef
5
5
  class Knife
@@ -15,8 +15,8 @@
15
15
  # limitations under the License.
16
16
  #
17
17
 
18
- require "chef/knife/cloud/command"
19
- require "chef/knife/cloud/exceptions"
18
+ require_relative "../command"
19
+ require_relative "../exceptions"
20
20
 
21
21
  class Chef
22
22
  class Knife
@@ -16,8 +16,8 @@
16
16
  # limitations under the License.
17
17
  #
18
18
 
19
- require "chef/knife/cloud/exceptions"
20
- require "chef/knife/cloud/helpers"
19
+ require_relative "exceptions"
20
+ require_relative "helpers"
21
21
 
22
22
  class Chef
23
23
  class Knife
@@ -1,6 +1,6 @@
1
1
  module Knife
2
2
  module Cloud
3
- VERSION = "2.0.3".freeze
3
+ VERSION = "2.0.5".freeze
4
4
  MAJOR, MINOR, TINY = VERSION.split(".")
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: knife-cloud
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.3
4
+ version: 2.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kaustubh Deorukhkar
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2019-09-25 00:00:00.000000000 Z
12
+ date: 2019-12-21 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: chef