Module: Wormholio::FTP
- Defined in:
- lib/wormholio.rb
Class Method Summary collapse
- .download(credentials, local_path, filename, options = {}) ⇒ Object
- .upload(credentials, file, options = {}) ⇒ Object
Class Method Details
.download(credentials, local_path, filename, options = {}) ⇒ Object
16 17 18 |
# File 'lib/wormholio.rb', line 16 def self.download(credentials,local_path,filename,={}) Ftp.download(credentials,local_path,filename,) end |
.upload(credentials, file, options = {}) ⇒ Object
12 13 14 |
# File 'lib/wormholio.rb', line 12 def self.upload(credentials,file,={}) Ftp.upload(credentials,file,) end |