Object
# File lib/capistrano/transfer.rb, line 141 def initialize(session, &callback) session.sftp(false).connect do |sftp| @operation = callback.call(sftp) end end
# File lib/capistrano/transfer.rb, line 151 def [](key) @operation[key] end
# File lib/capistrano/transfer.rb, line 155 def []=(key, value) @operation[key] = value end
# File lib/capistrano/transfer.rb, line 159 def abort! @operation.abort! end
# File lib/capistrano/transfer.rb, line 147 def active? @operation.nil? || @operation.active? end
[Validate]
Generated with the Darkfish Rdoc Generator 2.