gnu: Add ruby-faraday.

* gnu/packages/ruby.scm (ruby-faraday): New variable.
This commit is contained in:
Christopher Baines 2019-01-28 15:49:34 +00:00
parent 0927b0394f
commit 909eae21f3
No known key found for this signature in database
GPG Key ID: 5E28A33B0B84F577
1 changed files with 23 additions and 0 deletions

View File

@ -7316,3 +7316,26 @@ Pathname.")
(description "The Pagination Generator forms the core of the pagination
logic in Jekyll. It calculates and generates the pagination pages.")
(license license:expat)))
(define-public ruby-faraday
(package
(name "ruby-faraday")
(version "0.15.4")
(source
(origin
(method url-fetch)
(uri (rubygems-uri "faraday" version))
(sha256
(base32
"0s72m05jvzc1pd6cw1i289chas399q0a14xrwg4rvkdwy7bgzrh0"))))
(build-system ruby-build-system)
(arguments
'(#:tests? #f))
(propagated-inputs
`(("ruby-multipart-post" ,ruby-multipart-post)))
(synopsis "Ruby HTTP/REST API client library")
(description
"Faraday is a HTTP/REST API client library which provides a common
interface over different adapters.")
(home-page "https://github.com/lostisland/faraday")
(license license:expat)))