net-ftp
net-ftp copied to clipboard
This class implements the File Transfer Protocol.
Fixes #33
[The `ftp` `man` page](https://manpages.ubuntu.com/manpages/xenial/man1/tnftp.1.html) describes those subcommands as: ```text quote arg1 arg2 ... The arguments specified are sent, verbatim, to the remote FTP server. ``` The `literal` subcommand is an...
https://github.com/ruby/resolv/issues/45 realized me that LICENSE.txt contains only BSD-2-Clause license, while gemspec specifies both Ruby's and BSD-2-Clause license. So I'd like to clarify the license.
Hi, I'm currently trying to update [ftpd](https://github.com/wconrad/ftpd) to work with recent ruby versions, and I'm having a hard time having the tests pass. You can see my changes in https://github.com/wconrad/ftpd/pull/59....
``String#split`` without a block creates an intermediate array and requires a call to ``Array#each`` to iterate. Replace ``String#split("\n").each`` with ``String#each_line``, which is more efficient and readable.
First of all, great project! 🥇 Now, I am able to use the gem to open FTPS connections. The question now is: Is it also FTPeS supported? Thanks.