guix-commits
[Top][All Lists]
Advanced

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

06/11: gnu: Add ruby-rubytest-cli.


From: Ben Woodcroft
Subject: 06/11: gnu: Add ruby-rubytest-cli.
Date: Tue, 26 Jan 2016 06:34:48 +0000

benwoodcroft pushed a commit to branch master
in repository guix.

commit 0832804ed582f01c4edc78d87741642da143003b
Author: Ben Woodcroft <address@hidden>
Date:   Tue Dec 29 14:45:17 2015 +1000

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

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index c159e53..6e34754 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -3148,3 +3148,27 @@ case-to-class and unit-to-method test construction.  
This enforcement can help
 focus concern on individual units of behavior.")
     (home-page "http://rubyworks.github.io/lemon";)
     (license license:bsd-2)))
+
+(define-public ruby-rubytest-cli
+  (package
+    (name "ruby-rubytest-cli")
+    (version "0.2.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (rubygems-uri "rubytest-cli" version))
+       (sha256
+        (base32
+         "0n7hv4k1ba4fm3i98c6ydbsqhkxgbp52mhi70ba1x3mqzfvk438p"))))
+    (build-system ruby-build-system)
+    (arguments
+     `(#:tests? #f)) ; no tests
+    (propagated-inputs
+     `(("ruby-ansi" ,ruby-ansi)
+       ("ruby-rubytest" ,ruby-rubytest)))
+    (synopsis "Command-line interface for rubytest")
+    (description
+     "Rubytest CLI is a command-line interface for running tests for
+Rubytest-based test frameworks.  It provides the @code{rubytest} executable.")
+    (home-page "http://rubyworks.github.io/rubytest-cli";)
+    (license license:bsd-2)))



reply via email to

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