knife-windows 0.5.14 → 0.5.15
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +4 -4
- data/.rspec +3 -3
- data/.travis.yml +6 -6
- data/CHANGELOG +14 -14
- data/Gemfile +11 -11
- data/LICENSE +201 -201
- data/README.rdoc +140 -140
- data/Rakefile +16 -16
- data/features/knife_help.feature +20 -20
- data/features/support/env.rb +5 -5
- data/knife-windows.gemspec +24 -24
- data/lib/chef/knife/bootstrap/windows-chef-client-msi.erb +222 -211
- data/lib/chef/knife/bootstrap/windows-shell.erb +68 -68
- data/lib/chef/knife/bootstrap_windows_base.rb +196 -196
- data/lib/chef/knife/bootstrap_windows_ssh.rb +93 -93
- data/lib/chef/knife/bootstrap_windows_winrm.rb +62 -62
- data/lib/chef/knife/core/windows_bootstrap_context.rb +177 -177
- data/lib/chef/knife/windows_helper.rb +34 -34
- data/lib/chef/knife/winrm.rb +286 -286
- data/lib/chef/knife/winrm_base.rb +99 -98
- data/lib/knife-windows/version.rb +6 -6
- data/spec/functional/bootstrap_download_spec.rb +120 -120
- data/spec/spec_helper.rb +63 -63
- data/spec/unit/knife/bootstrap_template_spec.rb +91 -91
- data/spec/unit/knife/winrm_spec.rb +82 -82
- metadata +12 -12
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: knife-windows
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.15
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,14 +9,17 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2014-02-25 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: em-winrm
|
16
16
|
requirement: !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
|
-
- -
|
19
|
+
- - ~>
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0.5'
|
22
|
+
- - ! '>='
|
20
23
|
- !ruby/object:Gem::Version
|
21
24
|
version: 0.5.4
|
22
25
|
type: :runtime
|
@@ -24,7 +27,10 @@ dependencies:
|
|
24
27
|
version_requirements: !ruby/object:Gem::Requirement
|
25
28
|
none: false
|
26
29
|
requirements:
|
27
|
-
- -
|
30
|
+
- - ~>
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '0.5'
|
33
|
+
- - ! '>='
|
28
34
|
- !ruby/object:Gem::Version
|
29
35
|
version: 0.5.4
|
30
36
|
description: Plugin that adds functionality to Chef's Knife CLI for configuring/interacting
|
@@ -82,16 +88,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
82
88
|
version: '0'
|
83
89
|
requirements: []
|
84
90
|
rubyforge_project:
|
85
|
-
rubygems_version: 1.8.
|
91
|
+
rubygems_version: 1.8.28
|
86
92
|
signing_key:
|
87
93
|
specification_version: 3
|
88
94
|
summary: Plugin that adds functionality to Chef's Knife CLI for configuring/interacting
|
89
95
|
with nodes running Microsoft Windows
|
90
|
-
test_files:
|
91
|
-
- features/knife_help.feature
|
92
|
-
- features/support/env.rb
|
93
|
-
- spec/functional/bootstrap_download_spec.rb
|
94
|
-
- spec/spec_helper.rb
|
95
|
-
- spec/unit/knife/bootstrap_template_spec.rb
|
96
|
-
- spec/unit/knife/winrm_spec.rb
|
96
|
+
test_files: []
|
97
97
|
has_rdoc: true
|