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

View file

@ -7316,3 +7316,26 @@ (define-public ruby-jekyll-paginate-v2
(description "The Pagination Generator forms the core of the pagination (description "The Pagination Generator forms the core of the pagination
logic in Jekyll. It calculates and generates the pagination pages.") logic in Jekyll. It calculates and generates the pagination pages.")
(license license:expat))) (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)))