guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

11/23: gnu: Add ruby-warden.


From: guix-commits
Subject: 11/23: gnu: Add ruby-warden.
Date: Mon, 4 Mar 2019 15:33:34 -0500 (EST)

cbaines pushed a commit to branch master
in repository guix.

commit e32c99d23ea2927bf9ce2a974f6e5b27f2d28f35
Author: Christopher Baines <address@hidden>
Date:   Sun Feb 17 17:13:14 2019 +0000

    gnu: Add ruby-warden.
    
    * gnu/packages/ruby.scm (ruby-warden): New variable.
---
 gnu/packages/ruby.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 946eef1..06ec2e7 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -5815,6 +5815,29 @@ support to both Ruby and JRuby.  It uses @code{unf_ext} 
on CRuby and
     (home-page "https://github.com/knu/ruby-unf";)
     (license license:bsd-2)))
 
+(define-public ruby-warden
+  (package
+    (name "ruby-warden")
+    (version "1.2.8")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (rubygems-uri "warden" version))
+       (sha256
+        (base32
+         "1fr9n9i9r82xb6i61fdw4xgc7zjv7fsdrr4k0njchy87iw9fl454"))))
+    (build-system ruby-build-system)
+    (arguments
+     '(#:tests? #f)) ; No included tests
+    (propagated-inputs
+     `(("ruby-rack" ,ruby-rack)))
+    (synopsis "Rack middleware providing authentication")
+    (description
+     "Warden is a Rack-based middleware that provides a mechanism for
+authentication in Ruby web applications.")
+    (home-page "https://github.com/wardencommunity/warden";)
+    (license license:expat)))
+
 (define-public ruby-webmock-2
   (package
     (name "ruby-webmock")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]