Class Net::SSH::Connection::Session
In: lib/net/scp.rb
Parent: Object

Methods

scp  

Public Instance methods

Provides a convenient way to initialize a SCP session given a Net::SSH session. Returns the Net::SCP instance, ready to use.

[Source]

     # File lib/net/scp.rb, line 407
407:   def scp
408:     @scp ||= Net::SCP.new(self)
409:   end

[Validate]