Class: SSHKit::Backend::Netssh
- 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
- 
  
    
      .pool  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Returns the value of attribute pool. 
Attributes inherited from Abstract
Class Method Summary collapse
Instance Method Summary collapse
- #download!(remote, local = nil, options = {}) ⇒ Object
- #upload!(local, remote, options = {}) ⇒ Object
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
.pool ⇒ Object
Returns the value of attribute pool.
| 57 58 59 | # File 'lib/sshkit/backends/netssh.rb', line 57 def pool @pool end | 
Class Method Details
.config ⇒ Object
| 63 64 65 | # File 'lib/sshkit/backends/netssh.rb', line 63 def config @config ||= Configuration.new end | 
.configure {|config| ... } ⇒ Object
| 59 60 61 | # File 'lib/sshkit/backends/netssh.rb', line 59 def configure yield config end | 
Instance Method Details
#download!(remote, local = nil, options = {}) ⇒ Object
| 42 43 44 45 46 47 | # File 'lib/sshkit/backends/netssh.rb', line 42 def download!(remote, local=nil, = {}) summarizer = transfer_summarizer('Downloading') with_ssh do |ssh| ssh.scp.download!(remote, local, , &summarizer) end end | 
#upload!(local, remote, options = {}) ⇒ Object
| 35 36 37 38 39 40 | # File 'lib/sshkit/backends/netssh.rb', line 35 def upload!(local, remote, = {}) summarizer = transfer_summarizer('Uploading') with_ssh do |ssh| ssh.scp.upload!(local, remote, , &summarizer) end end |