gnu: Add ruby-middleware.

* gnu/packages/ruby.scm (ruby-middleware): New variable.
This commit is contained in:
Maxim Cournoyer 2020-06-25 00:01:08 -04:00
parent aa1b0fb867
commit fab8fed355
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 19 additions and 0 deletions

View File

@ -6002,6 +6002,25 @@ Ruby classes.")
(home-page "https://ms-ati.github.io/docile/")
(license license:expat)))
(define-public ruby-middleware
(package
(name "ruby-middleware")
(version "0.1.0")
(source
(origin
(method url-fetch)
(uri (rubygems-uri "middleware" version))
(sha256
(base32
"0703nkf2v371wqr41c04x5qid7ww45cxqv3hnlg07if3b3xrm9xl"))))
(build-system ruby-build-system)
(arguments '(#:tests? #f)) ;no test suite
(synopsis "Implementation of a middleware abstraction for Ruby")
(description "Middleware is a generalized implementation of a middleware
abstraction for Ruby.")
(home-page "https://github.com/mitchellh/middleware")
(license license:expat)))
(define-public ruby-gherkin
(package
(name "ruby-gherkin")