chef-winrm 2.3.11 → 2.3.12

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 +96 -14
@@ -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.3.12
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-29 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: builder
@@ -31,16 +31,22 @@ dependencies:
31
31
  name: chef-gyoku
32
32
  requirement: !ruby/object:Gem::Requirement
33
33
  requirements:
34
- - - ">="
34
+ - - "~>"
35
+ - !ruby/object:Gem::Version
36
+ version: 1.4.0
37
+ - - "<="
35
38
  - !ruby/object:Gem::Version
36
- version: 1.4.1
39
+ version: 1.4.5
37
40
  type: :runtime
38
41
  prerelease: false
39
42
  version_requirements: !ruby/object:Gem::Requirement
40
43
  requirements:
41
- - - ">="
44
+ - - "~>"
42
45
  - !ruby/object:Gem::Version
43
- version: 1.4.1
46
+ version: 1.4.0
47
+ - - "<="
48
+ - !ruby/object:Gem::Version
49
+ version: 1.4.5
44
50
  - !ruby/object:Gem::Dependency
45
51
  name: erubi
46
52
  requirement: !ruby/object:Gem::Requirement
@@ -137,6 +143,26 @@ dependencies:
137
143
  - - "~>"
138
144
  - !ruby/object:Gem::Version
139
145
  version: '3.3'
146
+ - !ruby/object:Gem::Dependency
147
+ name: ffi
148
+ requirement: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - ">="
151
+ - !ruby/object:Gem::Version
152
+ version: 1.15.5
153
+ - - "<"
154
+ - !ruby/object:Gem::Version
155
+ version: 1.17.0
156
+ type: :runtime
157
+ prerelease: false
158
+ version_requirements: !ruby/object:Gem::Requirement
159
+ requirements:
160
+ - - ">="
161
+ - !ruby/object:Gem::Version
162
+ version: 1.15.5
163
+ - - "<"
164
+ - !ruby/object:Gem::Version
165
+ version: 1.17.0
140
166
  - !ruby/object:Gem::Dependency
141
167
  name: pry
142
168
  requirement: !ruby/object:Gem::Requirement
@@ -171,6 +197,48 @@ dependencies:
171
197
  - - "<"
172
198
  - !ruby/object:Gem::Version
173
199
  version: '13'
200
+ - !ruby/object:Gem::Dependency
201
+ name: ostruct
202
+ requirement: !ruby/object:Gem::Requirement
203
+ requirements:
204
+ - - ">="
205
+ - !ruby/object:Gem::Version
206
+ version: '0'
207
+ type: :development
208
+ prerelease: false
209
+ version_requirements: !ruby/object:Gem::Requirement
210
+ requirements:
211
+ - - ">="
212
+ - !ruby/object:Gem::Version
213
+ version: '0'
214
+ - !ruby/object:Gem::Dependency
215
+ name: fiddle
216
+ requirement: !ruby/object:Gem::Requirement
217
+ requirements:
218
+ - - ">="
219
+ - !ruby/object:Gem::Version
220
+ version: '0'
221
+ type: :development
222
+ prerelease: false
223
+ version_requirements: !ruby/object:Gem::Requirement
224
+ requirements:
225
+ - - ">="
226
+ - !ruby/object:Gem::Version
227
+ version: '0'
228
+ - !ruby/object:Gem::Dependency
229
+ name: benchmark
230
+ requirement: !ruby/object:Gem::Requirement
231
+ requirements:
232
+ - - ">="
233
+ - !ruby/object:Gem::Version
234
+ version: '0'
235
+ type: :development
236
+ prerelease: false
237
+ version_requirements: !ruby/object:Gem::Requirement
238
+ requirements:
239
+ - - ">="
240
+ - !ruby/object:Gem::Version
241
+ version: '0'
174
242
  - !ruby/object:Gem::Dependency
175
243
  name: rb-readline
176
244
  requirement: !ruby/object:Gem::Requirement
@@ -185,6 +253,20 @@ dependencies:
185
253
  - - ">="
186
254
  - !ruby/object:Gem::Version
187
255
  version: '0'
256
+ - !ruby/object:Gem::Dependency
257
+ name: syslog
258
+ requirement: !ruby/object:Gem::Requirement
259
+ requirements:
260
+ - - ">="
261
+ - !ruby/object:Gem::Version
262
+ version: '0'
263
+ type: :development
264
+ prerelease: false
265
+ version_requirements: !ruby/object:Gem::Requirement
266
+ requirements:
267
+ - - ">="
268
+ - !ruby/object:Gem::Version
269
+ version: '0'
188
270
  - !ruby/object:Gem::Dependency
189
271
  name: rspec
190
272
  requirement: !ruby/object:Gem::Requirement
@@ -200,19 +282,19 @@ dependencies:
200
282
  - !ruby/object:Gem::Version
201
283
  version: '3.2'
202
284
  - !ruby/object:Gem::Dependency
203
- name: rubocop
285
+ name: cookstyle
204
286
  requirement: !ruby/object:Gem::Requirement
205
287
  requirements:
206
288
  - - "~>"
207
289
  - !ruby/object:Gem::Version
208
- version: 1.26.0
290
+ version: '7.32'
209
291
  type: :development
210
292
  prerelease: false
211
293
  version_requirements: !ruby/object:Gem::Requirement
212
294
  requirements:
213
295
  - - "~>"
214
296
  - !ruby/object:Gem::Version
215
- version: 1.26.0
297
+ version: '7.32'
216
298
  - !ruby/object:Gem::Dependency
217
299
  name: rubyntlm
218
300
  requirement: !ruby/object:Gem::Requirement
@@ -307,7 +389,7 @@ licenses:
307
389
  - Apache-2.0
308
390
  metadata:
309
391
  rubygems_mfa_required: 'true'
310
- post_install_message:
392
+ post_install_message:
311
393
  rdoc_options:
312
394
  - "-x"
313
395
  - test/
@@ -317,7 +399,7 @@ require_paths:
317
399
  - lib
318
400
  required_ruby_version: !ruby/object:Gem::Requirement
319
401
  requirements:
320
- - - ">="
402
+ - - "~>"
321
403
  - !ruby/object:Gem::Version
322
404
  version: '3.0'
323
405
  required_rubygems_version: !ruby/object:Gem::Requirement
@@ -326,8 +408,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
326
408
  - !ruby/object:Gem::Version
327
409
  version: '0'
328
410
  requirements: []
329
- rubygems_version: 3.3.27
330
- signing_key:
411
+ rubygems_version: 3.2.33
412
+ signing_key:
331
413
  specification_version: 4
332
414
  summary: Ruby library for Windows Remote Management
333
415
  test_files: []