Class: SSHKit::Backend::Netssh

Inherits:
Abstract
  • Object
show all
Defined in:
lib/sshkit/backends/netssh.rb,
lib/sshkit/backends/netssh/known_hosts.rb

Defined Under Namespace

Classes: Configuration, KnownHosts, KnownHostsKeys

Class Attribute Summary collapse

Attributes inherited from Abstract

#host

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Abstract

#as, #background, #capture, #execute, #initialize, #make, #rake, #run, #test, #with, #within

Constructor Details

This class inherits a constructor from SSHKit::Backend::Abstract

Class Attribute Details

.poolObject

Returns the value of attribute pool.



63
64
65
# File 'lib/sshkit/backends/netssh.rb', line 63

def pool
  @pool
end

Class Method Details

.configObject



69
70
71
# File 'lib/sshkit/backends/netssh.rb', line 69

def config
  @config ||= Configuration.new
end

.configure {|config| ... } ⇒ Object

Yields:



65
66
67
# File 'lib/sshkit/backends/netssh.rb', line 65

def configure
  yield config
end

Instance Method Details

#download!(remote, local = nil, options = {}) ⇒ Object



48
49
50
51
52
53
# File 'lib/sshkit/backends/netssh.rb', line 48

def download!(remote, local=nil, options = {})
  summarizer = transfer_summarizer('Downloading')
  with_ssh do |ssh|
    ssh.scp.download!(remote, local, options, &summarizer)
  end
end

#upload!(local, remote, options = {}) ⇒ Object



41
42
43
44
45
46
# File 'lib/sshkit/backends/netssh.rb', line 41

def upload!(local, remote, options = {})
  summarizer = transfer_summarizer('Uploading')
  with_ssh do |ssh|
    ssh.scp.upload!(local, remote, options, &summarizer)
  end
end