gnu: Add ruby-net-ftp.

* gnu/packages/ruby.scm (ruby-net-ftp): New variable.
This commit is contained in:
Hartmut Goebel 2023-07-27 00:07:32 +02:00
parent 10f72f90b3
commit 6e8ad38e4a
No known key found for this signature in database
GPG Key ID: 634A8DFFD3F631DF
1 changed files with 23 additions and 0 deletions

View File

@ -4448,6 +4448,29 @@ address. Both IPv4 and IPv6 are supported.")
(home-page "https://github.com/ruby/ipaddr")
(license license:bsd-2)))
(define-public ruby-net-ftp
(package
(name "ruby-net-ftp")
(version "0.3.4")
(source (origin
(method git-fetch) ;for tests
(uri (git-reference
(url "https://github.com/ruby/net-ftp")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"11b1sw7c4c7xrhn5li5m0wylw42hp52jp6pqacyb43hkw1m5zr36"))))
(build-system ruby-build-system)
(propagated-inputs (list ruby-net-protocol ruby-time))
(synopsis "File Transfer Protocol client library")
(description "This class implements the File Transfer Protocol. If you
have used a command-line FTP program, and are familiar with the commands, you
will be able to use this class easily. Some extra features are included to
take advantage of Ruby's style and strengths.")
(home-page "https://github.com/ruby/net-ftp")
(license license:bsd-2)))
(define-public ruby-net-http-persistent
(package
(name "ruby-net-http-persistent")