guix-commits
[Top][All Lists]
Advanced

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

06/06: gnu: Add ruby-thor.


From: Ricardo Wurmus
Subject: 06/06: gnu: Add ruby-thor.
Date: Mon, 31 Aug 2015 15:01:47 +0000

rekado pushed a commit to branch master
in repository guix.

commit 2cb3ab482793e9b0dffd30b59d68a99aa169e0e2
Author: Ricardo Wurmus <address@hidden>
Date:   Fri Aug 28 17:22:28 2015 +0200

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

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 8170169..4d1061e 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -482,6 +482,27 @@ Ruby.")
     (home-page "https://github.com/maik/xml-simple";)
     (license license:ruby)))
 
+(define-public ruby-thor
+  (package
+    (name "ruby-thor")
+    (version "0.19.1")
+    (source (origin
+              (method url-fetch)
+              (uri (rubygems-uri "thor" version))
+              (sha256
+               (base32
+                "08p5gx18yrbnwc6xc0mxvsfaxzgy2y9i78xq7ds0qmdm67q39y4z"))))
+    (build-system ruby-build-system)
+    (arguments
+     '(#:tests? #f)) ; no test suite
+    (native-inputs
+     `(("bundler" ,bundler)))
+    (synopsis "Ruby toolkit for building command-line interfaces")
+    (description "Thor is a toolkit for building powerful command-line
+interfaces.")
+    (home-page "http://whatisthor.com/";)
+    (license license:expat)))
+
 (define-public ruby-useragent
   (package
     (name "ruby-useragent")



reply via email to

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