net-sftp 3.0.0.rc1 → 3.0.0
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
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/CHANGES.txt +4 -0
- data/lib/net/sftp.rb +11 -3
- data/lib/net/sftp/version.rb +1 -1
- metadata +2 -2
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 64f5637e6c346349fb65a3346258e6a87d55219d651d3b48d042dde87d502099
|
|
4
|
+
data.tar.gz: e84621e188f86616e5a702650c2cb96210bc08d814c0c28c3cc8960dc042a73f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 04252f3c3448dac1a637e9623ed2a5af6dbfb482d738ae407d44006c7c8d32b82a5ef4e477bb28ab6c666cf651349cf1ee685b58304073db03a3d7317a927ee7
|
|
7
|
+
data.tar.gz: 0da6c4055f0f7f488e772e3c4914fcabb2ea893823a9e0ad1ff5b12e0cbe7ad6c72f494c417a70f92c7989e26bff0f486628e17ad278d42a7f716b05267be8aa
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data.tar.gz.sig
CHANGED
|
Binary file
|
data/CHANGES.txt
CHANGED
data/lib/net/sftp.rb
CHANGED
|
@@ -27,9 +27,17 @@ module Net
|
|
|
27
27
|
# Net::SFTP.start("localhost", "user") do |sftp|
|
|
28
28
|
# sftp.upload! "/local/file.tgz", "/remote/file.tgz"
|
|
29
29
|
# end
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
30
|
+
#
|
|
31
|
+
# Extra parameters can be passed:
|
|
32
|
+
# - The Net::SSH connection options (see Net::SSH for more information)
|
|
33
|
+
# - The Net::SFTP connection options (only :version is supported, to let you
|
|
34
|
+
# set the SFTP protocol version to be used)
|
|
35
|
+
def self.start(host, user, ssh_options={}, sftp_options={}, &block)
|
|
36
|
+
session = Net::SSH.start(host, user, ssh_options)
|
|
37
|
+
# We only use a single option here, but this leaves room for more later
|
|
38
|
+
# without breaking the external API.
|
|
39
|
+
version = sftp_options.fetch(:version, nil)
|
|
40
|
+
sftp = Net::SFTP::Session.new(session, version, &block).connect!
|
|
33
41
|
|
|
34
42
|
if block_given?
|
|
35
43
|
sftp.loop
|
data/lib/net/sftp/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: net-sftp
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.0
|
|
4
|
+
version: 3.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jamis Buck
|
|
@@ -31,7 +31,7 @@ cert_chain:
|
|
|
31
31
|
bwwLGaqsVz0cC6q3EpU57oyyTu529o0HnDatc94Cz8t9p6ogkKtSM+jwsnnC6wmI
|
|
32
32
|
MMzdZVhRg3QdHAGYfd+TfsS3Mps=
|
|
33
33
|
-----END CERTIFICATE-----
|
|
34
|
-
date: 2020-04-
|
|
34
|
+
date: 2020-04-27 00:00:00.000000000 Z
|
|
35
35
|
dependencies:
|
|
36
36
|
- !ruby/object:Gem::Dependency
|
|
37
37
|
name: net-ssh
|
metadata.gz.sig
CHANGED
|
Binary file
|