Skip to content

Instantly share code, notes, and snippets.

@solebox
Created November 10, 2016 01:15
Show Gist options
  • Save solebox/f34afcd0bd879dccf033bb76417aaeb5 to your computer and use it in GitHub Desktop.
Save solebox/f34afcd0bd879dccf033bb76417aaeb5 to your computer and use it in GitHub Desktop.
class FtpServer
def initialize(username, password)
@username = username
@password = password
end
def fxp(destination, local_path, remote_path)
remote_pass = destination.@password
local_pass = @password
...
do_fxp(...
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment