Module: IOStreams::SFTP

Defined in:
lib/io_streams/sftp/reader.rb,
lib/iostreams.rb,
lib/io_streams/sftp/writer.rb

Overview

Example:

IOStreams::SFTP::Writer.open('file.txt',
  user:     'jbloggs',
  password: 'secret',
  host:     'example.org',
  options: {compression: false}
) do |output|
    output.write('Hello World')
end

Defined Under Namespace

Classes: Reader, Writer