Advertisement
Guest User

Untitled

a guest
Nov 10th, 2016
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. class FtpServer
  2.  
  3. def initialize(username, password)
  4. @username = username
  5. @password = password
  6. end
  7.  
  8. def fxp(destination, local_path, remote_path)
  9. remote_pass = destination.@password
  10. local_pass = @password
  11. ...
  12. do_fxp(...
  13. end
  14. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement