Skip to content

Instantly share code, notes, and snippets.

@Kamilahsantos
Created May 27, 2019 01:19
Show Gist options
  • Save Kamilahsantos/b768f46b06e9a3e95f494d09fe7b4177 to your computer and use it in GitHub Desktop.
Save Kamilahsantos/b768f46b06e9a3e95f494d09fe7b4177 to your computer and use it in GitHub Desktop.
class BaixarArquivoServidorFtp
attr_reader :host, :porta, :usuario, :senha
def self.requisita_servidor(arquivo)
Net::FTP.open (@host) do |ftp|
ftp.login(@usuario,@senha)
ftp.gettextfile(arquivo)
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment