winrm 1.7.1 → 1.7.2
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 +4 -4
- data/.gitignore +10 -10
- data/.rspec +3 -3
- data/.rubocop.yml +12 -12
- data/.travis.yml +12 -12
- data/Gemfile +9 -9
- data/LICENSE +202 -202
- data/README.md +194 -194
- data/Rakefile +36 -36
- data/Vagrantfile +9 -9
- data/appveyor.yml +42 -42
- data/bin/rwinrm +97 -97
- data/changelog.md +77 -74
- data/lib/winrm.rb +42 -42
- data/lib/winrm/command_executor.rb +224 -224
- data/lib/winrm/command_output_decoder.rb +53 -0
- data/lib/winrm/exceptions/exceptions.rb +57 -57
- data/lib/winrm/helpers/iso8601_duration.rb +58 -58
- data/lib/winrm/helpers/powershell_script.rb +42 -42
- data/lib/winrm/http/response_handler.rb +82 -82
- data/lib/winrm/http/transport.rb +421 -421
- data/lib/winrm/output.rb +43 -43
- data/lib/winrm/soap_provider.rb +39 -39
- data/lib/winrm/version.rb +7 -7
- data/lib/winrm/winrm_service.rb +547 -556
- data/preamble +17 -17
- data/spec/auth_timeout_spec.rb +16 -16
- data/spec/cmd_spec.rb +102 -102
- data/spec/command_executor_spec.rb +429 -429
- data/spec/command_output_decoder_spec.rb +37 -0
- data/spec/config-example.yml +19 -19
- data/spec/exception_spec.rb +50 -50
- data/spec/issue_184_spec.rb +67 -67
- data/spec/issue_59_spec.rb +23 -23
- data/spec/matchers.rb +74 -74
- data/spec/output_spec.rb +110 -110
- data/spec/powershell_spec.rb +97 -97
- data/spec/response_handler_spec.rb +59 -59
- data/spec/spec_helper.rb +73 -73
- data/spec/stubs/responses/get_command_output_response.xml.erb +13 -13
- data/spec/stubs/responses/open_shell_v1.xml +19 -19
- data/spec/stubs/responses/open_shell_v2.xml +20 -20
- data/spec/stubs/responses/soap_fault_v1.xml +36 -36
- data/spec/stubs/responses/soap_fault_v2.xml +42 -42
- data/spec/stubs/responses/wmi_error_v2.xml +41 -41
- data/spec/transport_spec.rb +124 -124
- data/spec/winrm_options_spec.rb +76 -76
- data/spec/winrm_primitives_spec.rb +51 -51
- data/spec/wql_spec.rb +14 -14
- data/winrm.gemspec +40 -40
- metadata +5 -3
data/spec/wql_spec.rb
CHANGED
@@ -1,14 +1,14 @@
|
|
1
|
-
# encoding: UTF-8
|
2
|
-
describe 'winrm client wql', integration: true do
|
3
|
-
before(:all) do
|
4
|
-
@winrm = winrm_connection
|
5
|
-
end
|
6
|
-
|
7
|
-
it 'should query Win32_OperatingSystem' do
|
8
|
-
output = @winrm.run_wql('select * from Win32_OperatingSystem')
|
9
|
-
expect(output).to_not be_empty
|
10
|
-
output_caption = output[:win32_operating_system][0][:caption]
|
11
|
-
expect(output_caption).to include('Microsoft')
|
12
|
-
expect(output_caption).to include('Windows')
|
13
|
-
end
|
14
|
-
end
|
1
|
+
# encoding: UTF-8
|
2
|
+
describe 'winrm client wql', integration: true do
|
3
|
+
before(:all) do
|
4
|
+
@winrm = winrm_connection
|
5
|
+
end
|
6
|
+
|
7
|
+
it 'should query Win32_OperatingSystem' do
|
8
|
+
output = @winrm.run_wql('select * from Win32_OperatingSystem')
|
9
|
+
expect(output).to_not be_empty
|
10
|
+
output_caption = output[:win32_operating_system][0][:caption]
|
11
|
+
expect(output_caption).to include('Microsoft')
|
12
|
+
expect(output_caption).to include('Windows')
|
13
|
+
end
|
14
|
+
end
|
data/winrm.gemspec
CHANGED
@@ -1,40 +1,40 @@
|
|
1
|
-
# encoding: UTF-8
|
2
|
-
require 'date'
|
3
|
-
require File.expand_path('../lib/winrm/version', __FILE__)
|
4
|
-
|
5
|
-
Gem::Specification.new do |s|
|
6
|
-
s.platform = Gem::Platform::RUBY
|
7
|
-
s.name = 'winrm'
|
8
|
-
s.version = WinRM::VERSION
|
9
|
-
s.date = Date.today.to_s
|
10
|
-
|
11
|
-
s.author = ['Dan Wanek', 'Paul Morton']
|
12
|
-
s.email = ['dan.wanek@gmail.com', 'paul@themortonsonline.com']
|
13
|
-
s.homepage = 'https://github.com/WinRb/WinRM'
|
14
|
-
|
15
|
-
s.summary = 'Ruby library for Windows Remote Management'
|
16
|
-
s.description = <<-EOF
|
17
|
-
Ruby library for Windows Remote Management
|
18
|
-
EOF
|
19
|
-
s.license = 'Apache-2.0'
|
20
|
-
|
21
|
-
s.files = `git ls-files`.split(/\n/)
|
22
|
-
s.require_path = 'lib'
|
23
|
-
s.rdoc_options = %w(-x test/ -x examples/)
|
24
|
-
s.extra_rdoc_files = %w(README.md LICENSE)
|
25
|
-
|
26
|
-
s.bindir = 'bin'
|
27
|
-
s.executables = ['rwinrm']
|
28
|
-
s.required_ruby_version = '>= 1.9.0'
|
29
|
-
s.add_runtime_dependency 'gssapi', '~> 1.2'
|
30
|
-
s.add_runtime_dependency 'httpclient', '~> 2.2', '>= 2.2.0.2'
|
31
|
-
s.add_runtime_dependency 'rubyntlm', '~> 0.6.0'
|
32
|
-
s.add_runtime_dependency 'logging', ['>= 1.6.1', '< 3.0']
|
33
|
-
s.add_runtime_dependency 'nori', '~> 2.0'
|
34
|
-
s.add_runtime_dependency 'gyoku', '~> 1.0'
|
35
|
-
s.add_runtime_dependency 'builder', '>= 2.1.2'
|
36
|
-
s.add_development_dependency 'rspec', '~> 3.2'
|
37
|
-
s.add_development_dependency 'rake', '~> 10.3'
|
38
|
-
s.add_development_dependency 'rubocop', '~> 0.28'
|
39
|
-
s.add_development_dependency 'pry'
|
40
|
-
end
|
1
|
+
# encoding: UTF-8
|
2
|
+
require 'date'
|
3
|
+
require File.expand_path('../lib/winrm/version', __FILE__)
|
4
|
+
|
5
|
+
Gem::Specification.new do |s|
|
6
|
+
s.platform = Gem::Platform::RUBY
|
7
|
+
s.name = 'winrm'
|
8
|
+
s.version = WinRM::VERSION
|
9
|
+
s.date = Date.today.to_s
|
10
|
+
|
11
|
+
s.author = ['Dan Wanek', 'Paul Morton']
|
12
|
+
s.email = ['dan.wanek@gmail.com', 'paul@themortonsonline.com']
|
13
|
+
s.homepage = 'https://github.com/WinRb/WinRM'
|
14
|
+
|
15
|
+
s.summary = 'Ruby library for Windows Remote Management'
|
16
|
+
s.description = <<-EOF
|
17
|
+
Ruby library for Windows Remote Management
|
18
|
+
EOF
|
19
|
+
s.license = 'Apache-2.0'
|
20
|
+
|
21
|
+
s.files = `git ls-files`.split(/\n/)
|
22
|
+
s.require_path = 'lib'
|
23
|
+
s.rdoc_options = %w(-x test/ -x examples/)
|
24
|
+
s.extra_rdoc_files = %w(README.md LICENSE)
|
25
|
+
|
26
|
+
s.bindir = 'bin'
|
27
|
+
s.executables = ['rwinrm']
|
28
|
+
s.required_ruby_version = '>= 1.9.0'
|
29
|
+
s.add_runtime_dependency 'gssapi', '~> 1.2'
|
30
|
+
s.add_runtime_dependency 'httpclient', '~> 2.2', '>= 2.2.0.2'
|
31
|
+
s.add_runtime_dependency 'rubyntlm', '~> 0.6.0'
|
32
|
+
s.add_runtime_dependency 'logging', ['>= 1.6.1', '< 3.0']
|
33
|
+
s.add_runtime_dependency 'nori', '~> 2.0'
|
34
|
+
s.add_runtime_dependency 'gyoku', '~> 1.0'
|
35
|
+
s.add_runtime_dependency 'builder', '>= 2.1.2'
|
36
|
+
s.add_development_dependency 'rspec', '~> 3.2'
|
37
|
+
s.add_development_dependency 'rake', '~> 10.3'
|
38
|
+
s.add_development_dependency 'rubocop', '~> 0.28'
|
39
|
+
s.add_development_dependency 'pry'
|
40
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: winrm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.7.
|
4
|
+
version: 1.7.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dan Wanek
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2016-02-
|
12
|
+
date: 2016-02-25 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: gssapi
|
@@ -203,6 +203,7 @@ files:
|
|
203
203
|
- changelog.md
|
204
204
|
- lib/winrm.rb
|
205
205
|
- lib/winrm/command_executor.rb
|
206
|
+
- lib/winrm/command_output_decoder.rb
|
206
207
|
- lib/winrm/exceptions/exceptions.rb
|
207
208
|
- lib/winrm/helpers/iso8601_duration.rb
|
208
209
|
- lib/winrm/helpers/powershell_script.rb
|
@@ -216,6 +217,7 @@ files:
|
|
216
217
|
- spec/auth_timeout_spec.rb
|
217
218
|
- spec/cmd_spec.rb
|
218
219
|
- spec/command_executor_spec.rb
|
220
|
+
- spec/command_output_decoder_spec.rb
|
219
221
|
- spec/config-example.yml
|
220
222
|
- spec/exception_spec.rb
|
221
223
|
- spec/issue_184_spec.rb
|
@@ -260,7 +262,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
260
262
|
version: '0'
|
261
263
|
requirements: []
|
262
264
|
rubyforge_project:
|
263
|
-
rubygems_version: 2.
|
265
|
+
rubygems_version: 2.5.2
|
264
266
|
signing_key:
|
265
267
|
specification_version: 4
|
266
268
|
summary: Ruby library for Windows Remote Management
|