gnu: Add ruby-faraday-middleware.

* gnu/packages/ruby.scm (ruby-faraday-middleware): New variable.

Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name>
This commit is contained in:
Stephen Paul Weber 2022-06-26 13:19:29 -04:00 committed by Raghav Gururajan
parent a105975119
commit 99d8c41bde
No known key found for this signature in database
GPG key ID: 5F5816647F8BE551

View file

@ -12712,3 +12712,25 @@ and maintainable web applications in ruby.")
ripped from Merb. It supports pluggable parsers and ships with both REXML and ripped from Merb. It supports pluggable parsers and ships with both REXML and
Nokogiri implementations.") Nokogiri implementations.")
(license license:expat))) (license license:expat)))
(define-public ruby-faraday-middleware
(package
(name "ruby-faraday-middleware")
(version "1.2.0")
(source
(origin
(method url-fetch)
(uri (rubygems-uri "faraday_middleware" version))
(sha256
(base32 "1bw8mfh4yin2xk7138rg3fhb2p5g2dlmdma88k82psah9mbmvlfy"))))
(build-system ruby-build-system)
(arguments
;; No rakefile
`(#:tests? #f))
(propagated-inputs
(list ruby-faraday))
(home-page "https://github.com/lostisland/faraday_middleware")
(synopsis "Various middleware for Faraday")
(description "Faraday_Middleware is a collection of middleware for the
Faraday-based API wrappers.")
(license license:expat)))