public
Description: Pure Ruby implementation of the SCP protocol
Homepage: http://rubyforge.org/projects/net-ssh
Clone URL: git://github.com/jamis/net-scp.git
Search Repo:
jamis (author)
Thu May 01 21:13:05 -0700 2008
commit  5b512cf084b76444dca1c7face0e84a10694c263
tree    079aa6f1253ea7f1650ff5b986158cd5d040336b
parent  35217659d6b7f1d95d9aa0d30f1532fcead8651e
name age message
folder .gitignore Sat Mar 15 13:06:05 -0700 2008 tests for the top-level SCP methods [jamis]
folder CHANGELOG.rdoc Thu Apr 24 08:55:20 -0700 2008 pass the channel object as the first argument t... [jamis]
folder Manifest Sat Mar 22 21:17:59 -0700 2008 prefer echoe over hoe [jamis]
folder README.rdoc Sat Mar 22 21:17:59 -0700 2008 prefer echoe over hoe [jamis]
folder Rakefile Sat Mar 22 21:17:59 -0700 2008 prefer echoe over hoe [jamis]
folder lib/ Thu Apr 24 21:11:25 -0700 2008 documentation correction [jamis]
folder setup.rb Fri Mar 14 11:56:28 -0700 2008 shuffle things around a bit to add Hoe support [jamis]
folder test/ Thu May 01 21:13:05 -0700 2008 fix tests to work with latest version of mocha [jamis]
README.rdoc

Net::SCP

  • http://net-ssh.rubyforge.org/scp

DESCRIPTION:

Net::SCP is a pure-Ruby implementation of the SCP protocol. This operates over SSH (and requires the Net::SSH library), and allows files and directory trees to copied to and from a remote server.

FEATURES/PROBLEMS:

  • Transfer files or entire directory trees to or from a remote host via SCP
  • Can preserve file attributes across transfers
  • Can download files in-memory, or direct-to-disk
  • Support for SCP URI’s, and OpenURI

SYNOPSIS:

In a nutshell:

  require 'net/scp'

  # upload a file to a remote server
  Net::SCP.upload!("remote.host.com", "username",
    "/local/path", "/remote/path",
    :password => "password")

  # download a file from a remote server
  Net::SCP.download!("remote.host.com", "username",
    "/remote/path", "/local/path",
    :password => password)

  # download a file to an in-memory buffer
  data = Net::SCP::download!("remote.host.com", "username", "/remote/path")

  # use a persistent connection to transfer files
  Net::SCP.start("remote.host.com", "username", :password => "password") do |scp|
    # upload a file to a remote server
    scp.upload! "/local/path", "/remote/path"

    # upload from an in-memory buffer
    scp.upload! StringIO.new("some data to upload"), "/remote/path"

    # run multiple downloads in parallel
    d1 = scp.download("/remote/path", "/local/path")
    d2 = scp.download("/remote/path2", "/local/path2")
    [d1, d2].each { |d| d.wait }
  end

  # You can also use open-uri to grab data via scp:
  require 'uri/open-scp'
  data = open("scp://user@host/path/to/file.txt").read

For more information, see Net::SCP.

REQUIREMENTS:

  • Net::SSH 2

If you wish to run the tests, you’ll also need:

  • Echoe (for Rakefile use)
  • Mocha (for tests)

INSTALL:

  • gem install net-scp (might need sudo privileges)

Or, you can do it the hard way (without Rubygems):

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

LICENSE:

(The MIT License)

Copyright © 2008 Jamis Buck

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.