Class: Fog::SCP::Real

Inherits:
Object
  • Object
show all
Defined in:
lib/fog/core/scp.rb

Instance Method Summary collapse

Constructor Details

#initialize(address, username, options) ⇒ Real

Returns a new instance of Real.



34
35
36
37
38
39
40
41
42
43
44
45
46
# File 'lib/fog/core/scp.rb', line 34

def initialize(address, username, options)
  require 'net/scp'

  key_manager = Net::SSH::Authentication::KeyManager.new(nil, options)

  unless options[:key_data] || options[:keys] || options[:password] || key_manager.agent
    raise ArgumentError.new(':key_data, :keys, :password or a loaded ssh-agent is required to initialize SSH')
  end

  @address  = address
  @username = username
  @options  = { :paranoid => false }.merge(options)
end

Instance Method Details

#upload(local_path, remote_path) ⇒ Object



48
49
50
51
52
53
54
55
56
57
58
# File 'lib/fog/core/scp.rb', line 48

def upload(local_path, remote_path)
  begin
    Net::SCP.start(@address, @username, @options) do |scp|
      scp.upload!(local_path, remote_path) do |ch, name, sent, total|
        # TODO: handle progress display?
      end
    end
  rescue Exception => error
    raise error
  end
end