-
-
Save solebox/f34afcd0bd879dccf033bb76417aaeb5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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