chef-winrm-fs 1.3.6 → 1.3.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bc1b7fc072c425f0cdcb123f4f7bd898dd131e0a154b604aedf440c7f698a6dd
4
- data.tar.gz: 639f6aa2cecc8e1b9e58c52ce32516cb566d9f94c95d804aa81f66a16fbae86f
3
+ metadata.gz: 53896e3ea3477e023ba00153d76610ac69701e467b3af19dd3c3a99051a8825b
4
+ data.tar.gz: b5fdc0e443bbe8c23380d9c0d8062554d521e40c97823daf9e3bed5f1f249166
5
5
  SHA512:
6
- metadata.gz: 9154b99d4541965acdfc4c39f856002da971615dd94da7bb51ce65ef3bb45e2d5705462323d27e45b9057ef4f69c9add25f8d92a88222c11ac1b7d9c26816e01
7
- data.tar.gz: 42ac24d8ea6bd276f867f147cc96e5da24413cea0776d8d55d1cc290ba8a0faaa59990b0232acbb68979f10330943d281752ecc15b66047b9a207f9c3c111d93
6
+ metadata.gz: 4571a3701855390c207cba5d1ac0ce3fe5aaf8ef8a388820c051ec16b47cda74bce4aae6bb5ed49e709c2c0fd5460f5c097fd18311b49777652d438f5fb8d975
7
+ data.tar.gz: a90622ac3e83002808536d0353a74743c8ec11eb00077a5b15098245fcf703a098ae7c5f339a5d42e610fc548b262695a8ae0b7c431c1f6a3602f575ce3efa69
data/README.md CHANGED
@@ -6,7 +6,7 @@
6
6
  ## Uploading files
7
7
  Files may be copied from the local machine to the winrm endpoint. Individual files or directories, as well as arrays of files and directories may be specified. Data from a `StringIO` object may also be uploaded to a remote file.
8
8
  ```ruby
9
- require 'winrm-fs'
9
+ require 'chef-winrm-fs'
10
10
 
11
11
  connection = WinRM::Connection.new(...
12
12
  file_manager = WinRM::FS::FileManager.new(connection)
data/bin/rwinrmcp CHANGED
@@ -22,7 +22,7 @@
22
22
  $LOAD_PATH.push File.expand_path('../../lib', __FILE__)
23
23
 
24
24
  require 'io/console'
25
- require 'winrm-fs'
25
+ require 'chef-winrm-fs'
26
26
 
27
27
  def help_msg
28
28
  puts 'Usage: rwinrmcp sourcefile user@host:directory/targetfile'
@@ -23,8 +23,8 @@ require 'digest' unless defined?(Digest)
23
23
  require 'securerandom' unless defined?(SecureRandom)
24
24
  require 'stringio' unless defined?(StringIO)
25
25
 
26
- require 'winrm/exceptions'
27
- require 'winrm-fs/core/tmp_zip'
26
+ require 'chef-winrm/exceptions'
27
+ require 'chef-winrm-fs/core/tmp_zip'
28
28
 
29
29
  module WinRM
30
30
  module FS
@@ -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 'winrm' unless defined?(WinRM::Connection)
18
+ require 'chef-winrm' unless defined?(WinRM::Connection)
19
19
  require_relative 'scripts/scripts'
20
20
  require_relative 'core/file_transporter'
21
21
 
@@ -15,11 +15,11 @@
15
15
  # See the License for the specific language governing permissions and
16
16
  # limitations under the License.
17
17
 
18
- require 'winrm' unless defined?(WinRM::Connection)
18
+ require 'chef-winrm' unless defined?(WinRM::Connection)
19
19
  require 'logger'
20
20
  require 'pathname' unless defined?(Pathname)
21
- require_relative 'winrm-fs/exceptions'
22
- require_relative 'winrm-fs/file_manager'
21
+ require_relative 'chef-winrm-fs/exceptions'
22
+ require_relative 'chef-winrm-fs/file_manager'
23
23
 
24
24
  module WinRM
25
25
  # WinRM File System
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chef-winrm-fs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.6
4
+ version: 1.3.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shawn Neal
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2025-01-09 00:00:00.000000000 Z
12
+ date: 2025-02-04 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: chef-winrm
@@ -17,14 +17,14 @@ dependencies:
17
17
  requirements:
18
18
  - - ">="
19
19
  - !ruby/object:Gem::Version
20
- version: 2.3.10
20
+ version: 2.3.11
21
21
  type: :runtime
22
22
  prerelease: false
23
23
  version_requirements: !ruby/object:Gem::Requirement
24
24
  requirements:
25
25
  - - ">="
26
26
  - !ruby/object:Gem::Version
27
- version: 2.3.10
27
+ version: 2.3.11
28
28
  - !ruby/object:Gem::Dependency
29
29
  name: erubi
30
30
  requirement: !ruby/object:Gem::Requirement
@@ -143,19 +143,19 @@ files:
143
143
  - LICENSE
144
144
  - README.md
145
145
  - bin/rwinrmcp
146
- - lib/winrm-fs.rb
147
- - lib/winrm-fs/core/file_transporter.rb
148
- - lib/winrm-fs/core/tmp_zip.rb
149
- - lib/winrm-fs/exceptions.rb
150
- - lib/winrm-fs/file_manager.rb
151
- - lib/winrm-fs/scripts/check_files.ps1.erb
152
- - lib/winrm-fs/scripts/checksum.ps1.erb
153
- - lib/winrm-fs/scripts/create_dir.ps1.erb
154
- - lib/winrm-fs/scripts/delete.ps1.erb
155
- - lib/winrm-fs/scripts/download.ps1.erb
156
- - lib/winrm-fs/scripts/exists.ps1.erb
157
- - lib/winrm-fs/scripts/extract_files.ps1.erb
158
- - lib/winrm-fs/scripts/scripts.rb
146
+ - lib/chef-winrm-fs.rb
147
+ - lib/chef-winrm-fs/core/file_transporter.rb
148
+ - lib/chef-winrm-fs/core/tmp_zip.rb
149
+ - lib/chef-winrm-fs/exceptions.rb
150
+ - lib/chef-winrm-fs/file_manager.rb
151
+ - lib/chef-winrm-fs/scripts/check_files.ps1.erb
152
+ - lib/chef-winrm-fs/scripts/checksum.ps1.erb
153
+ - lib/chef-winrm-fs/scripts/create_dir.ps1.erb
154
+ - lib/chef-winrm-fs/scripts/delete.ps1.erb
155
+ - lib/chef-winrm-fs/scripts/download.ps1.erb
156
+ - lib/chef-winrm-fs/scripts/exists.ps1.erb
157
+ - lib/chef-winrm-fs/scripts/extract_files.ps1.erb
158
+ - lib/chef-winrm-fs/scripts/scripts.rb
159
159
  homepage: http://github.com/WinRb/winrm-fs
160
160
  licenses:
161
161
  - Apache-2.0
File without changes
File without changes
File without changes