# File lib/fog/core/scp.rb, line 14 def self.data @data ||= Hash.new do |hash, key| hash[key] = {} end end
# File lib/fog/core/scp.rb, line 20 def initialize(address, username, options) @address = address @username = username @options = options end
# File lib/fog/core/scp.rb, line 30 def download(remote_path, local_path, download_options = {}) Fog::Mock.not_implemented end
# File lib/fog/core/scp.rb, line 26 def upload(local_path, remote_path, upload_options = {}) Fog::Mock.not_implemented end