chef-winrm-fs 1.3.6 → 1.3.7
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/README.md +1 -1
- data/bin/rwinrmcp +1 -1
- data/lib/{winrm-fs → chef-winrm-fs}/core/file_transporter.rb +2 -2
- data/lib/{winrm-fs → chef-winrm-fs}/file_manager.rb +1 -1
- data/lib/{winrm-fs.rb → chef-winrm-fs.rb} +3 -3
- metadata +17 -17
- /data/lib/{winrm-fs → chef-winrm-fs}/core/tmp_zip.rb +0 -0
- /data/lib/{winrm-fs → chef-winrm-fs}/exceptions.rb +0 -0
- /data/lib/{winrm-fs → chef-winrm-fs}/scripts/check_files.ps1.erb +0 -0
- /data/lib/{winrm-fs → chef-winrm-fs}/scripts/checksum.ps1.erb +0 -0
- /data/lib/{winrm-fs → chef-winrm-fs}/scripts/create_dir.ps1.erb +0 -0
- /data/lib/{winrm-fs → chef-winrm-fs}/scripts/delete.ps1.erb +0 -0
- /data/lib/{winrm-fs → chef-winrm-fs}/scripts/download.ps1.erb +0 -0
- /data/lib/{winrm-fs → chef-winrm-fs}/scripts/exists.ps1.erb +0 -0
- /data/lib/{winrm-fs → chef-winrm-fs}/scripts/extract_files.ps1.erb +0 -0
- /data/lib/{winrm-fs → chef-winrm-fs}/scripts/scripts.rb +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 53896e3ea3477e023ba00153d76610ac69701e467b3af19dd3c3a99051a8825b
|
4
|
+
data.tar.gz: b5fdc0e443bbe8c23380d9c0d8062554d521e40c97823daf9e3bed5f1f249166
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
@@ -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.
|
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-
|
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.
|
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.
|
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
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|