github
Advanced Search
  • Home
  • Pricing and Signup
  • Explore GitHub
  • Blog
  • Login

jamis / net-sftp

  • Admin
  • Watch Unwatch
  • Fork
  • Your Fork
  • Pull Request
  • Download Source
    • 25
    • 4
  • Source
  • Commits
  • Network (4)
  • Issues (0)
  • Downloads (5)
  • Wiki (1)
  • Graphs
  • Branch: master

click here to add a description

click here to add a homepage

  • Branches (1)
    • master ✓
  • Tags (5)
    • v2.0.2
    • v2.0.1
    • v2.0.0
    • v1.99.1
    • v1.99.0
Sending Request…
Enable Donations

Pledgie Donations

Once activated, we'll place the following badge in your repository's detail box:
Pledgie_example
This service is courtesy of Pledgie.

Pure Ruby implementation of an SFTP (protocols 1-6) client. (THIS REPOSITORY IS NO LONGER BEING MAINTAINED.) — Read more

  cancel

http://rubyforge.org/projects/net-ssh

  cancel
  • Private
  • Read-Only
  • HTTP Read-Only

This URL has Read+Write access

update changelog 
jamis (author)
Tue Mar 24 08:26:14 -0700 2009
commit  100c5c1bb21c076a3150d1c7de9311c9fd7eea50
tree    66006c3179e43cb90c6fe0953cd78ff1281a9fce
parent  863a97d774fb27546ec1ecd31de4af1b0e2d2b49
net-sftp /
name age
history
message
file .gitignore Sat Jan 31 20:22:39 -0800 2009 ignore vim .swp files [jamis]
file CHANGELOG.rdoc Tue Mar 24 08:26:14 -0700 2009 update changelog [jamis]
file Manifest Sat Mar 22 21:13:05 -0700 2008 track the auto-generated manifest file as well [jamis]
file README.rdoc Loading commit data...
file Rakefile Sat Jan 31 20:25:02 -0800 2009 avoid using ensure in Net::SFTP.start to preven... [jamis]
directory lib/
file setup.rb Wed Mar 05 07:45:13 -0800 2008 go hoe [jamis]
directory test/ Sat Sep 06 15:13:47 -0700 2008 Tests all passing under Ruby 1.9 [jamis]
README.rdoc

Net::SFTP

  • 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:

  • Echoe (if you want to use the Rakefile)
  • 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 © 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.

Blog | Support | Training | Contact | API | Status | Twitter | Help | Security
© 2010 GitHub Inc. All rights reserved. | Terms of Service | Privacy Policy
Powered by the Dedicated Servers and
Cloud Computing of Rackspace Hosting®
Dedicated Server