guix-commits
[Top][All Lists]
Advanced

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

19/23: gnu: Add ruby-clap.


From: Ricardo Wurmus
Subject: 19/23: gnu: Add ruby-clap.
Date: Mon, 14 Dec 2015 13:10:57 +0000

rekado pushed a commit to branch master
in repository guix.

commit ad686ef3fc4cb5581e409e647541ce3e248fa111
Author: Ricardo Wurmus <address@hidden>
Date:   Wed Nov 25 16:58:26 2015 +0100

    gnu: Add ruby-clap.
    
    * gnu/packages/ruby.scm (ruby-clap): New variable.
---
 gnu/packages/ruby.scm |   20 ++++++++++++++++++++
 1 files changed, 20 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index d10dc04..1c0e3ae 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -2704,6 +2704,26 @@ extending for custom Ruby constructs such as custom 
class level definitions.")
     (home-page "http://yardoc.org";)
     (license license:expat)))
 
+(define-public ruby-clap
+  (package
+    (name "ruby-clap")
+    (version "1.0.0")
+    (source (origin
+              (method url-fetch)
+              (uri (rubygems-uri "clap" version))
+              (sha256
+               (base32
+                "190m05k3pca72c1h8k0fnvby15m303zi0lpb9c478ad19wqawa5q"))))
+    (build-system ruby-build-system)
+    ;; Clap needs cutest for running tests, but cutest needs clap.
+    (arguments `(#:tests? #f))
+    (synopsis "Command line argument parsing for simple applications")
+    (description
+     "Clap provides command line argument parsing features.  It covers the
+simple case of executing code based on the flags or parameters passed.")
+    (home-page "https://github.com/djanowski/cutest";)
+    (license license:expat)))
+
 (define-public ruby-eventmachine
   (package
     (name "ruby-eventmachine")



reply via email to

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