guix-commits
[Top][All Lists]
Advanced

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

05/11: gnu: Add ruby-lemon.


From: Ben Woodcroft
Subject: 05/11: gnu: Add ruby-lemon.
Date: Tue, 26 Jan 2016 06:34:47 +0000

benwoodcroft pushed a commit to branch master
in repository guix.

commit 78bb471f37dbe6d77bb258c5859861da7038f720
Author: Ben Woodcroft <address@hidden>
Date:   Tue Dec 29 14:42:53 2015 +1000

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

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 5cbf125..c159e53 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -3118,3 +3118,33 @@ requirement specifications systems like Cucumber.")
 for reuse by other test frameworks.")
     (home-page "http://rubyworks.github.io/ae";)
     (license license:bsd-2)))
+
+(define-public ruby-lemon
+  (package
+    (name "ruby-lemon")
+    (version "0.9.1")
+    (source
+    (origin
+      (method url-fetch)
+      (uri (rubygems-uri "lemon" version))
+      (sha256
+       (base32
+        "0gqhpgjavgpvx23rqpfqcv3d5bs8gc7lr9yvj8kxgp7mfbdc2jcm"))))
+    (build-system ruby-build-system)
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (replace 'check (lambda _ (zero? (system* "qed")))))))
+    (propagated-inputs
+     `(("ruby-ae" ,ruby-ae)
+       ("ruby-ansi" ,ruby-ansi)
+       ("ruby-rubytest" ,ruby-rubytest)))
+    (native-inputs
+     `(("ruby-qed" ,ruby-qed)))
+    (synopsis "Test framework correlating code structure and test unit")
+    (description
+     "Lemon is a unit testing framework that enforces highly formal
+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)))



reply via email to

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