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
jamis (author)
Mon Mar 17 20:52:28 -0700 2008
commit  13fa00758c7caa9bbad39e49efae7718724deeea
tree    d856e22d9a1e7f5a4079e6f1eb6b725a1321e6a3
parent  4abc26c9a38801f0b0f2bb1e3a256966988a7812
name age message
file .gitignore Thu Mar 13 21:08:55 -0700 2008 more documentation, to make the ri docs more us... [jamis]
file History.txt Wed Mar 05 07:45:13 -0800 2008 go hoe [jamis]
file Manifest.txt Thu Mar 13 20:54:37 -0700 2008 Added Net::SFTP::Operations::Dir for simplifyin... [jamis]
file README.txt Thu Mar 13 20:54:37 -0700 2008 Added Net::SFTP::Operations::Dir for simplifyin... [jamis]
file Rakefile Wed Mar 05 07:45:13 -0800 2008 go hoe [jamis]
directory lib/ Mon Mar 17 20:52:28 -0700 2008 log another bit of data [jamis]
file setup.rb Wed Mar 05 07:45:13 -0800 2008 go hoe [jamis]
directory test/ Thu Mar 13 20:54:37 -0700 2008 Added Net::SFTP::Operations::Dir for simplifyin... [jamis]
README.txt
= Net::SFTP

* http://net-ssh.rubyforge.org/sftp

== DESCRIPTION:

Net::SFTP is a pure-Ruby implementation of the SFTP protocol (specifically, versions 1 through 6 of the SFTP protocol). 
Note that this is the "Secure File Transfer Protocol", typically run over an SSH connection, and has nothing to do with 
the FTP protocol.

== FEATURES/PROBLEMS:

* Transfer files or even entire directory trees to or from a remote host via SFTP
* Completely supports all six protocol versions
* Asynchronous and synchronous operation
* Read and write files using an IO-like interface

== SYNOPSIS:

In a nutshell:

  require 'net/sftp'

  Net::SFTP.start('host', 'username', :password => 'password') do |sftp|
    # upload a file or directory to the remote host
    sftp.upload!("/path/to/local", "/path/to/remote")

    # download a file or directory from the remote host
    sftp.download!("/path/to/remote", "/path/to/local")

    # grab data off the remote host directly to a buffer
    data = sftp.download!("/path/to/remote")

    # open and write to a pseudo-IO for a remote file
    sftp.file.open("/path/to/remote", "w") do |f|
      f.puts "Hello, world!\n"
    end

    # open and read from a pseudo-IO for a remote file
    sftp.file.open("/path/to/remote", "r") do |f|
      puts f.gets
    end

    # create a directory
    sftp.mkdir! "/path/to/directory"

    # list the entries in a directory
    sftp.dir.foreach("/path/to/directory") do |entry|
      puts entry.longname
    end
  end

For the full documentation, start with Net::SFTP::Session. Also see Net::SFTP::Operations::Upload, 
Net::SFTP::Operations::Download, Net::SFTP::Operations::FileFactory, Net::SFTP::Operations::File, and 
Net::SFTP::Operations::Dir.

== REQUIREMENTS:

* Net::SSH 2

If you wish to run the tests, you'll need:

* Hoe
* Mocha

== INSTALL:

* gem install net-sftp (might need sudo privileges)

Or, if you prefer to do it the hard way (sans Rubygems):

* tar xzf net-ssh-*.tgz
* cd net-ssh-*
* ruby setup.rb config
* ruby setup.rb install (might need sudo privileges)

== LICENSE:

(The MIT License)

Copyright (c) 2008 Jamis Buck <jamis@37signals.com>

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.