chef-winrm 2.3.11 → 2.4.3

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.
Files changed (46) hide show
  1. checksums.yaml +4 -4
  2. data/lib/chef-winrm/connection.rb +6 -6
  3. data/lib/chef-winrm/connection_opts.rb +7 -7
  4. data/lib/chef-winrm/exceptions.rb +1 -1
  5. data/lib/chef-winrm/http/response_handler.rb +3 -3
  6. data/lib/chef-winrm/http/transport.rb +47 -47
  7. data/lib/chef-winrm/http/transport_factory.rb +4 -4
  8. data/lib/chef-winrm/psrp/fragment.rb +10 -9
  9. data/lib/chef-winrm/psrp/message.rb +7 -7
  10. data/lib/chef-winrm/psrp/message_data/base.rb +1 -1
  11. data/lib/chef-winrm/psrp/message_data/error_record.rb +10 -10
  12. data/lib/chef-winrm/psrp/message_data/pipeline_output.rb +6 -6
  13. data/lib/chef-winrm/psrp/message_data/session_capability.rb +3 -3
  14. data/lib/chef-winrm/psrp/message_data.rb +9 -9
  15. data/lib/chef-winrm/psrp/message_defragmenter.rb +13 -13
  16. data/lib/chef-winrm/psrp/message_factory.rb +5 -5
  17. data/lib/chef-winrm/psrp/message_fragmenter.rb +9 -6
  18. data/lib/chef-winrm/psrp/powershell_output_decoder.rb +25 -29
  19. data/lib/chef-winrm/psrp/receive_response_reader.rb +5 -5
  20. data/lib/chef-winrm/shells/base.rb +17 -16
  21. data/lib/chef-winrm/shells/cmd.rb +2 -2
  22. data/lib/chef-winrm/shells/power_shell.rb +18 -18
  23. data/lib/chef-winrm/shells/retryable.rb +1 -1
  24. data/lib/chef-winrm/shells/shell_factory.rb +5 -5
  25. data/lib/chef-winrm/version.rb +1 -1
  26. data/lib/chef-winrm/wsmv/base.rb +7 -7
  27. data/lib/chef-winrm/wsmv/cleanup_command.rb +8 -8
  28. data/lib/chef-winrm/wsmv/close_shell.rb +5 -5
  29. data/lib/chef-winrm/wsmv/command.rb +15 -15
  30. data/lib/chef-winrm/wsmv/command_output.rb +15 -15
  31. data/lib/chef-winrm/wsmv/command_output_decoder.rb +4 -4
  32. data/lib/chef-winrm/wsmv/configuration.rb +3 -3
  33. data/lib/chef-winrm/wsmv/create_pipeline.rb +8 -8
  34. data/lib/chef-winrm/wsmv/create_shell.rb +19 -19
  35. data/lib/chef-winrm/wsmv/header.rb +56 -56
  36. data/lib/chef-winrm/wsmv/init_runspace_pool.rb +22 -22
  37. data/lib/chef-winrm/wsmv/iso8601_duration.rb +2 -2
  38. data/lib/chef-winrm/wsmv/keep_alive.rb +11 -11
  39. data/lib/chef-winrm/wsmv/receive_response_reader.rb +9 -9
  40. data/lib/chef-winrm/wsmv/send_data.rb +5 -5
  41. data/lib/chef-winrm/wsmv/soap.rb +22 -22
  42. data/lib/chef-winrm/wsmv/wql_pull.rb +4 -4
  43. data/lib/chef-winrm/wsmv/wql_query.rb +6 -6
  44. data/lib/chef-winrm/wsmv/write_stdin.rb +18 -18
  45. data/lib/chef-winrm.rb +10 -10
  46. metadata +69 -13
@@ -24,7 +24,7 @@ module WinRM
24
24
  # @param [Integer] seconds The amount of seconds for this duration
25
25
  def self.sec_to_dur(seconds)
26
26
  seconds = seconds.to_i
27
- iso_str = 'P'
27
+ iso_str = "P"
28
28
  if seconds > 604_800 # more than a week
29
29
  weeks = seconds / 604_800
30
30
  seconds -= (604_800 * weeks)
@@ -36,7 +36,7 @@ module WinRM
36
36
  iso_str << "#{days}D"
37
37
  end
38
38
  if seconds > 0
39
- iso_str << 'T'
39
+ iso_str << "T"
40
40
  if seconds > 3600 # more than an hour
41
41
  hours = seconds / 3600
42
42
  seconds -= (3600 * hours)
@@ -12,7 +12,7 @@
12
12
  # See the License for the specific language governing permissions and
13
13
  # limitations under the License.
14
14
 
15
- require_relative 'base'
15
+ require_relative "base"
16
16
 
17
17
  module WinRM
18
18
  module WSMV
@@ -38,27 +38,27 @@ module WinRM
38
38
  private
39
39
 
40
40
  def keep_alive_body
41
- { "#{NS_WIN_SHELL}:DesiredStream" => 'stdout' }
41
+ { "#{NS_WIN_SHELL}:DesiredStream" => "stdout" }
42
42
  end
43
43
 
44
44
  def keep_alive_headers
45
45
  merge_headers(shared_headers(@session_opts),
46
- resource_uri_shell(RESOURCE_URI_POWERSHELL),
47
- action_receive,
48
- header_opts,
49
- selector_shell_id(shell_id))
46
+ resource_uri_shell(RESOURCE_URI_POWERSHELL),
47
+ action_receive,
48
+ header_opts,
49
+ selector_shell_id(shell_id))
50
50
  end
51
51
 
52
52
  def header_opts
53
53
  {
54
54
  "#{NS_WSMAN_DMTF}:OptionSet" => {
55
- "#{NS_WSMAN_DMTF}:Option" => 'TRUE',
55
+ "#{NS_WSMAN_DMTF}:Option" => "TRUE",
56
56
  :attributes! => {
57
57
  "#{NS_WSMAN_DMTF}:Option" => {
58
- 'Name' => 'WSMAN_CMDSHELL_OPTION_KEEPALIVE'
59
- }
60
- }
61
- }
58
+ "Name" => "WSMAN_CMDSHELL_OPTION_KEEPALIVE",
59
+ },
60
+ },
61
+ },
62
62
  }
63
63
  end
64
64
  end
@@ -12,10 +12,10 @@
12
12
  # See the License for the specific language governing permissions and
13
13
  # limitations under the License.
14
14
 
15
- require_relative 'soap'
16
- require_relative 'header'
17
- require_relative 'command_output_decoder'
18
- require_relative '../output'
15
+ require_relative "soap"
16
+ require_relative "header"
17
+ require_relative "command_output_decoder"
18
+ require_relative "../output"
19
19
 
20
20
  module WinRM
21
21
  module WSMV
@@ -57,9 +57,9 @@ module WinRM
57
57
  def read_response(wsmv_message, wait_for_done_state = false)
58
58
  resp_doc = nil
59
59
  until command_done?(resp_doc, wait_for_done_state)
60
- logger.debug('[WinRM] Waiting for output...')
60
+ logger.debug("[WinRM] Waiting for output...")
61
61
  resp_doc = send_get_output_message(wsmv_message.build)
62
- logger.debug('[WinRM] Processing output')
62
+ logger.debug("[WinRM] Processing output")
63
63
  read_streams(resp_doc) do |stream|
64
64
  yield stream, resp_doc
65
65
  end
@@ -97,9 +97,9 @@ module WinRM
97
97
  # 2150858793. When the client receives this fault, it SHOULD issue
98
98
  # another Receive request.
99
99
  # http://msdn.microsoft.com/en-us/library/cc251676.aspx
100
- raise unless e.fault_code == '2150858793'
100
+ raise unless e.fault_code == "2150858793"
101
101
 
102
- logger.debug('[WinRM] retrying receive request after timeout')
102
+ logger.debug("[WinRM] retrying receive request after timeout")
103
103
  retry
104
104
  end
105
105
 
@@ -120,7 +120,7 @@ module WinRM
120
120
  REXML::XPath.match(response_document, path).each do |stream|
121
121
  next if stream.text.nil? || stream.text.empty?
122
122
 
123
- yield type: stream.attributes['Name'].to_sym, text: stream.text
123
+ yield type: stream.attributes["Name"].to_sym, text: stream.text
124
124
  end
125
125
  end
126
126
  end
@@ -12,7 +12,7 @@
12
12
  # See the License for the specific language governing permissions and
13
13
  # limitations under the License.
14
14
 
15
- require_relative 'base'
15
+ require_relative "base"
16
16
 
17
17
  module WinRM
18
18
  module WSMV
@@ -46,10 +46,10 @@ module WinRM
46
46
  "#{NS_WIN_SHELL}:Stream" => encode_bytes(fragment.bytes),
47
47
  :attributes! => {
48
48
  "#{NS_WIN_SHELL}:Stream" => {
49
- 'Name' => 'stdin',
50
- 'CommandId' => command_id
51
- }
52
- }
49
+ "Name" => "stdin",
50
+ "CommandId" => command_id,
51
+ },
52
+ },
53
53
  }
54
54
  end
55
55
 
@@ -17,31 +17,31 @@ module WinRM
17
17
  module WSMV
18
18
  # WSMV SOAP namespaces mixin
19
19
  module SOAP
20
- NS_SOAP_ENV = 's'.freeze # http://www.w3.org/2003/05/soap-envelope
21
- NS_ADDRESSING = 'a'.freeze # http://schemas.xmlsoap.org/ws/2004/08/addressing
22
- NS_CIMBINDING = 'b'.freeze # http://schemas.dmtf.org/wbem/wsman/1/cimbinding.xsd
23
- NS_ENUM = 'n'.freeze # http://schemas.xmlsoap.org/ws/2004/09/enumeration
24
- NS_TRANSFER = 'x'.freeze # http://schemas.xmlsoap.org/ws/2004/09/transfer
25
- NS_WSMAN_DMTF = 'w'.freeze # http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd
26
- NS_WSMAN_MSFT = 'p'.freeze # http://schemas.microsoft.com/wbem/wsman/1/wsman.xsd
27
- NS_SCHEMA_INST = 'xsi'.freeze # http://www.w3.org/2001/XMLSchema-instance
28
- NS_WIN_SHELL = 'rsp'.freeze # http://schemas.microsoft.com/wbem/wsman/1/windows/shell
29
- NS_WSMAN_FAULT = 'f'.freeze # http://schemas.microsoft.com/wbem/wsman/1/wsmanfault
30
- NS_WSMAN_CONF = 'cfg'.freeze # http://schemas.microsoft.com/wbem/wsman/1/config
20
+ NS_SOAP_ENV = "s".freeze # http://www.w3.org/2003/05/soap-envelope
21
+ NS_ADDRESSING = "a".freeze # http://schemas.xmlsoap.org/ws/2004/08/addressing
22
+ NS_CIMBINDING = "b".freeze # http://schemas.dmtf.org/wbem/wsman/1/cimbinding.xsd
23
+ NS_ENUM = "n".freeze # http://schemas.xmlsoap.org/ws/2004/09/enumeration
24
+ NS_TRANSFER = "x".freeze # http://schemas.xmlsoap.org/ws/2004/09/transfer
25
+ NS_WSMAN_DMTF = "w".freeze # http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd
26
+ NS_WSMAN_MSFT = "p".freeze # http://schemas.microsoft.com/wbem/wsman/1/wsman.xsd
27
+ NS_SCHEMA_INST = "xsi".freeze # http://www.w3.org/2001/XMLSchema-instance
28
+ NS_WIN_SHELL = "rsp".freeze # http://schemas.microsoft.com/wbem/wsman/1/windows/shell
29
+ NS_WSMAN_FAULT = "f".freeze # http://schemas.microsoft.com/wbem/wsman/1/wsmanfault
30
+ NS_WSMAN_CONF = "cfg".freeze # http://schemas.microsoft.com/wbem/wsman/1/config
31
31
 
32
32
  def namespaces
33
33
  @namespaces ||= {
34
- 'xmlns:xsd' => 'http://www.w3.org/2001/XMLSchema',
35
- 'xmlns:xsi' => 'http://www.w3.org/2001/XMLSchema-instance',
36
- 'xmlns:env' => 'http://www.w3.org/2003/05/soap-envelope',
37
- "xmlns:#{NS_ADDRESSING}" => 'http://schemas.xmlsoap.org/ws/2004/08/addressing',
38
- "xmlns:#{NS_CIMBINDING}" => 'http://schemas.dmtf.org/wbem/wsman/1/cimbinding.xsd',
39
- "xmlns:#{NS_ENUM}" => 'http://schemas.xmlsoap.org/ws/2004/09/enumeration',
40
- "xmlns:#{NS_TRANSFER}" => 'http://schemas.xmlsoap.org/ws/2004/09/transfer',
41
- "xmlns:#{NS_WSMAN_DMTF}" => 'http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd',
42
- "xmlns:#{NS_WSMAN_MSFT}" => 'http://schemas.microsoft.com/wbem/wsman/1/wsman.xsd',
43
- "xmlns:#{NS_WIN_SHELL}" => 'http://schemas.microsoft.com/wbem/wsman/1/windows/shell',
44
- "xmlns:#{NS_WSMAN_CONF}" => 'http://schemas.microsoft.com/wbem/wsman/1/config'
34
+ "xmlns:xsd" => "http://www.w3.org/2001/XMLSchema",
35
+ "xmlns:xsi" => "http://www.w3.org/2001/XMLSchema-instance",
36
+ "xmlns:env" => "http://www.w3.org/2003/05/soap-envelope",
37
+ "xmlns:#{NS_ADDRESSING}" => "http://schemas.xmlsoap.org/ws/2004/08/addressing",
38
+ "xmlns:#{NS_CIMBINDING}" => "http://schemas.dmtf.org/wbem/wsman/1/cimbinding.xsd",
39
+ "xmlns:#{NS_ENUM}" => "http://schemas.xmlsoap.org/ws/2004/09/enumeration",
40
+ "xmlns:#{NS_TRANSFER}" => "http://schemas.xmlsoap.org/ws/2004/09/transfer",
41
+ "xmlns:#{NS_WSMAN_DMTF}" => "http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd",
42
+ "xmlns:#{NS_WSMAN_MSFT}" => "http://schemas.microsoft.com/wbem/wsman/1/wsman.xsd",
43
+ "xmlns:#{NS_WIN_SHELL}" => "http://schemas.microsoft.com/wbem/wsman/1/windows/shell",
44
+ "xmlns:#{NS_WSMAN_CONF}" => "http://schemas.microsoft.com/wbem/wsman/1/config",
45
45
  }
46
46
  end
47
47
  end
@@ -1,5 +1,5 @@
1
- require 'nori'
2
- require_relative 'base'
1
+ require "nori"
2
+ require_relative "base"
3
3
 
4
4
  module WinRM
5
5
  module WSMV
@@ -45,8 +45,8 @@ module WinRM
45
45
  {
46
46
  "#{NS_ENUM}:EnumerationContext" => @enumeration_context,
47
47
  "#{NS_WSMAN_DMTF}:OptimizeEnumeration" => nil,
48
- "#{NS_ENUM}:MaxElements" => '32000',
49
- "#{NS_WSMAN_MSFT}:SessionId" => "uuid:#{@session_opts[:session_id]}"
48
+ "#{NS_ENUM}:MaxElements" => "32000",
49
+ "#{NS_WSMAN_MSFT}:SessionId" => "uuid:#{@session_opts[:session_id]}",
50
50
  }
51
51
  end
52
52
  end
@@ -12,8 +12,8 @@
12
12
  # See the License for the specific language governing permissions and
13
13
  # limitations under the License.
14
14
 
15
- require 'nori'
16
- require_relative 'base'
15
+ require "nori"
16
+ require_relative "base"
17
17
 
18
18
  module WinRM
19
19
  module WSMV
@@ -83,14 +83,14 @@ module WinRM
83
83
  def wql_body
84
84
  {
85
85
  "#{NS_WSMAN_DMTF}:OptimizeEnumeration" => nil,
86
- "#{NS_WSMAN_DMTF}:MaxElements" => '32000',
86
+ "#{NS_WSMAN_DMTF}:MaxElements" => "32000",
87
87
  "#{NS_WSMAN_DMTF}:Filter" => @wql,
88
88
  "#{NS_WSMAN_MSFT}:SessionId" => "uuid:#{@session_opts[:session_id]}",
89
89
  :attributes! => {
90
90
  "#{NS_WSMAN_DMTF}:Filter" => {
91
- 'Dialect' => 'http://schemas.microsoft.com/wbem/wsman/1/WQL'
92
- }
93
- }
91
+ "Dialect" => "http://schemas.microsoft.com/wbem/wsman/1/WQL",
92
+ },
93
+ },
94
94
  }
95
95
  end
96
96
  end
@@ -12,8 +12,8 @@
12
12
  # See the License for the specific language governing permissions and
13
13
  # limitations under the License.
14
14
 
15
- require 'base64'
16
- require_relative 'base'
15
+ require "base64" unless defined?(Base64)
16
+ require_relative "base"
17
17
 
18
18
  module WinRM
19
19
  module WSMV
@@ -45,28 +45,28 @@ module WinRM
45
45
  end
46
46
 
47
47
  def validate_opts(session_opts, stdin_opts)
48
- raise 'session_opts is required' unless session_opts
49
- raise 'stdin_opts[:shell_id] is required' unless stdin_opts[:shell_id]
50
- raise 'stdin_opts[:command_id] is required' unless stdin_opts[:command_id]
51
- raise 'stdin_opts[:stdin] is required' unless stdin_opts[:stdin]
48
+ raise "session_opts is required" unless session_opts
49
+ raise "stdin_opts[:shell_id] is required" unless stdin_opts[:shell_id]
50
+ raise "stdin_opts[:command_id] is required" unless stdin_opts[:command_id]
51
+ raise "stdin_opts[:stdin] is required" unless stdin_opts[:stdin]
52
52
  end
53
53
 
54
54
  def stdin_headers
55
55
  merge_headers(shared_headers(@session_opts),
56
- resource_uri_shell(@shell_uri),
57
- action_send,
58
- selector_shell_id(@shell_id))
56
+ resource_uri_shell(@shell_uri),
57
+ action_send,
58
+ selector_shell_id(@shell_id))
59
59
  end
60
60
 
61
61
  def action_send
62
62
  {
63
63
  "#{NS_ADDRESSING}:Action" =>
64
- 'http://schemas.microsoft.com/wbem/wsman/1/windows/shell/Send',
64
+ "http://schemas.microsoft.com/wbem/wsman/1/windows/shell/Send",
65
65
  :attributes! => {
66
66
  "#{NS_ADDRESSING}:Action" => {
67
- 'mustUnderstand' => true
68
- }
69
- }
67
+ "mustUnderstand" => true,
68
+ },
69
+ },
70
70
  }
71
71
  end
72
72
 
@@ -74,11 +74,11 @@ module WinRM
74
74
  {
75
75
  "#{NS_WIN_SHELL}:Send" => {
76
76
  "#{NS_WIN_SHELL}:Stream" => {
77
- '@Name' => 'stdin',
78
- '@CommandId' => @command_id,
79
- :content! => Base64.encode64(@stdin)
80
- }
81
- }
77
+ "@Name" => "stdin",
78
+ "@CommandId" => @command_id,
79
+ :content! => Base64.encode64(@stdin),
80
+ },
81
+ },
82
82
  }
83
83
  end
84
84
  end
data/lib/chef-winrm.rb CHANGED
@@ -12,26 +12,26 @@
12
12
  # See the License for the specific language governing permissions and
13
13
  # limitations under the License.
14
14
 
15
- require 'logging'
16
- require_relative 'chef-winrm/version'
17
- require_relative 'chef-winrm/connection'
18
- require_relative 'chef-winrm/exceptions'
15
+ require "logging"
16
+ require_relative "chef-winrm/version"
17
+ require_relative "chef-winrm/connection"
18
+ require_relative "chef-winrm/exceptions"
19
19
 
20
20
  # Main WinRM module entry point
21
21
  module WinRM
22
22
  # Enable logging if it is requested. We do this before
23
23
  # anything else so that we can setup the output before
24
24
  # any logging occurs.
25
- if ENV['WINRM_LOG'] && ENV['WINRM_LOG'] != ''
25
+ if ENV["WINRM_LOG"] && ENV["WINRM_LOG"] != ""
26
26
  begin
27
- Logging.logger.root.level = ENV['WINRM_LOG']
27
+ Logging.logger.root.level = ENV["WINRM_LOG"]
28
28
  Logging.logger.root.appenders = Logging.appenders.stderr
29
29
  rescue ArgumentError
30
30
  # This means that the logging level wasn't valid
31
- warn "Invalid WINRM_LOG level is set: #{ENV['WINRM_LOG']}"
32
- warn ''
33
- warn 'Please use one of the standard log levels: ' \
34
- 'debug, info, warn, or error'
31
+ warn "Invalid WINRM_LOG level is set: #{ENV["WINRM_LOG"]}"
32
+ warn ""
33
+ warn "Please use one of the standard log levels: " \
34
+ "debug, info, warn, or error"
35
35
  end
36
36
  end
37
37
  end
metadata CHANGED
@@ -1,17 +1,17 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chef-winrm
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.11
4
+ version: 2.4.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dan Wanek
8
8
  - Paul Morton
9
9
  - Matt Wrock
10
10
  - Shawn Neal
11
- autorequire:
11
+ autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2025-02-04 00:00:00.000000000 Z
14
+ date: 2025-04-24 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: builder
@@ -31,16 +31,16 @@ dependencies:
31
31
  name: chef-gyoku
32
32
  requirement: !ruby/object:Gem::Requirement
33
33
  requirements:
34
- - - ">="
34
+ - - "~>"
35
35
  - !ruby/object:Gem::Version
36
- version: 1.4.1
36
+ version: '1.5'
37
37
  type: :runtime
38
38
  prerelease: false
39
39
  version_requirements: !ruby/object:Gem::Requirement
40
40
  requirements:
41
- - - ">="
41
+ - - "~>"
42
42
  - !ruby/object:Gem::Version
43
- version: 1.4.1
43
+ version: '1.5'
44
44
  - !ruby/object:Gem::Dependency
45
45
  name: erubi
46
46
  requirement: !ruby/object:Gem::Requirement
@@ -171,6 +171,48 @@ dependencies:
171
171
  - - "<"
172
172
  - !ruby/object:Gem::Version
173
173
  version: '13'
174
+ - !ruby/object:Gem::Dependency
175
+ name: ostruct
176
+ requirement: !ruby/object:Gem::Requirement
177
+ requirements:
178
+ - - ">="
179
+ - !ruby/object:Gem::Version
180
+ version: '0'
181
+ type: :development
182
+ prerelease: false
183
+ version_requirements: !ruby/object:Gem::Requirement
184
+ requirements:
185
+ - - ">="
186
+ - !ruby/object:Gem::Version
187
+ version: '0'
188
+ - !ruby/object:Gem::Dependency
189
+ name: fiddle
190
+ requirement: !ruby/object:Gem::Requirement
191
+ requirements:
192
+ - - ">="
193
+ - !ruby/object:Gem::Version
194
+ version: '0'
195
+ type: :development
196
+ prerelease: false
197
+ version_requirements: !ruby/object:Gem::Requirement
198
+ requirements:
199
+ - - ">="
200
+ - !ruby/object:Gem::Version
201
+ version: '0'
202
+ - !ruby/object:Gem::Dependency
203
+ name: benchmark
204
+ requirement: !ruby/object:Gem::Requirement
205
+ requirements:
206
+ - - ">="
207
+ - !ruby/object:Gem::Version
208
+ version: '0'
209
+ type: :development
210
+ prerelease: false
211
+ version_requirements: !ruby/object:Gem::Requirement
212
+ requirements:
213
+ - - ">="
214
+ - !ruby/object:Gem::Version
215
+ version: '0'
174
216
  - !ruby/object:Gem::Dependency
175
217
  name: rb-readline
176
218
  requirement: !ruby/object:Gem::Requirement
@@ -185,6 +227,20 @@ dependencies:
185
227
  - - ">="
186
228
  - !ruby/object:Gem::Version
187
229
  version: '0'
230
+ - !ruby/object:Gem::Dependency
231
+ name: syslog
232
+ requirement: !ruby/object:Gem::Requirement
233
+ requirements:
234
+ - - ">="
235
+ - !ruby/object:Gem::Version
236
+ version: '0'
237
+ type: :development
238
+ prerelease: false
239
+ version_requirements: !ruby/object:Gem::Requirement
240
+ requirements:
241
+ - - ">="
242
+ - !ruby/object:Gem::Version
243
+ version: '0'
188
244
  - !ruby/object:Gem::Dependency
189
245
  name: rspec
190
246
  requirement: !ruby/object:Gem::Requirement
@@ -200,19 +256,19 @@ dependencies:
200
256
  - !ruby/object:Gem::Version
201
257
  version: '3.2'
202
258
  - !ruby/object:Gem::Dependency
203
- name: rubocop
259
+ name: cookstyle
204
260
  requirement: !ruby/object:Gem::Requirement
205
261
  requirements:
206
262
  - - "~>"
207
263
  - !ruby/object:Gem::Version
208
- version: 1.26.0
264
+ version: '8.1'
209
265
  type: :development
210
266
  prerelease: false
211
267
  version_requirements: !ruby/object:Gem::Requirement
212
268
  requirements:
213
269
  - - "~>"
214
270
  - !ruby/object:Gem::Version
215
- version: 1.26.0
271
+ version: '8.1'
216
272
  - !ruby/object:Gem::Dependency
217
273
  name: rubyntlm
218
274
  requirement: !ruby/object:Gem::Requirement
@@ -307,7 +363,7 @@ licenses:
307
363
  - Apache-2.0
308
364
  metadata:
309
365
  rubygems_mfa_required: 'true'
310
- post_install_message:
366
+ post_install_message:
311
367
  rdoc_options:
312
368
  - "-x"
313
369
  - test/
@@ -319,7 +375,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
319
375
  requirements:
320
376
  - - ">="
321
377
  - !ruby/object:Gem::Version
322
- version: '3.0'
378
+ version: '3.1'
323
379
  required_rubygems_version: !ruby/object:Gem::Requirement
324
380
  requirements:
325
381
  - - ">="
@@ -327,7 +383,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
327
383
  version: '0'
328
384
  requirements: []
329
385
  rubygems_version: 3.3.27
330
- signing_key:
386
+ signing_key:
331
387
  specification_version: 4
332
388
  summary: Ruby library for Windows Remote Management
333
389
  test_files: []