public
Description: Pure Ruby implementation of an SFTP (protocols 1-6) client
Homepage: http://rubyforge.org/projects/net-ssh
Clone URL: git://github.com/jamis/net-sftp.git
more documentation, to make the ri docs more useful
Jamis Buck (author)
Thu Mar 13 21:08:55 -0700 2008
commit  8a162edac058f9410cf17245afcab31f0bb265ba
tree    07c0052dead3765c1f3397d0b90973c5e143cc43
parent  ebf5d5380cc533b69b308baa2e396e4a18abc900
...
1
2
3
 
...
1
2
3
4
0
@@ -1,3 +1,4 @@
0
 pkg
0
 doc
0
 coverage
0
+ri
...
2
3
4
5
 
 
 
 
 
 
 
 
6
7
8
...
2
3
4
 
5
6
7
8
9
10
11
12
13
14
15
0
@@ -2,7 +2,14 @@ require 'net/ssh'
0
 require 'net/sftp/session'
0
 
0
 module Net
0
-  
0
+
0
+  # Net::SFTP is a pure-Ruby module for programmatically interacting with a
0
+  # remote host via the SFTP protocol (that's SFTP as in "Secure File Transfer
0
+  # Protocol" produced by the Secure Shell Working Group, not "Secure FTP"
0
+  # and certainly not "Simple FTP").
0
+  #
0
+  # See Net::SFTP#start for an introduction to the library. Also, see
0
+  # Net::SFTP::Session for further documentation.
0
   module SFTP
0
     # A convenience method for starting a standalone SFTP session. It will
0
     # start up an SSH session using the given arguments (see the documentation
...
109
110
111
112
 
113
114
115
...
109
110
111
 
112
113
114
115
0
@@ -109,7 +109,7 @@ module Net; module SFTP
0
       # Net::SFTP::Operations::Download for a full discussion of hos this method can be
0
       # used.
0
       #
0
-      #   download = sftp.downnload("/remote/path", "/local/path")
0
+      #   download = sftp.download("/remote/path", "/local/path")
0
       #   download.wait
0
       def download(remote, local, options={}, &block)
0
         Operations::Download.new(self, local, remote, options, &block)

Comments