about summary refs log tree commit diff
diff options
context:
space:
mode:
authorpjotrp2021-05-29 10:02:57 +0200
committerpjotrp2021-05-29 11:44:51 +0200
commit46e3eceed09f3c66a0859b4ff74f29d5a555aeb8 (patch)
tree9cc0526afa7a1602a1a91ef7a8e99afc3fdcc197
parente567af106e0ffda08f236c94b3790f0cb776ef64 (diff)
downloadguix-bioinformatics-46e3eceed09f3c66a0859b4ff74f29d5a555aeb8.tar.gz
ruby-regressiontest
-rw-r--r--.guix-shell1
-rw-r--r--gn/packages/ruby.scm21
2 files changed, 22 insertions, 0 deletions
diff --git a/.guix-shell b/.guix-shell
new file mode 100644
index 0000000..dc03df2
--- /dev/null
+++ b/.guix-shell
@@ -0,0 +1 @@
+~/opt/guix/bin/guix environment -C guix --ad-hoc guile
diff --git a/gn/packages/ruby.scm b/gn/packages/ruby.scm
index 84ea43d..41de0a6 100644
--- a/gn/packages/ruby.scm
+++ b/gn/packages/ruby.scm
@@ -5939,3 +5939,24 @@ Simple gem that adds various color methods to String class, and can be used as f
     (home-page "https://github.com/discourse/rails_failover")
     (license license:expat)))
 
+(define-public ruby-regressiontest
+ (package
+  (name "ruby-regressiontest")
+  (version "0.0.3")
+  (source
+    (origin
+      (method url-fetch)
+      (uri (rubygems-uri "regressiontest" version))
+      (sha256
+        (base32
+          "03y5ksab6ybd2d586zmihpn2hzvqrxb9pfzh5i6a8f2ivcrfqn9k"))))
+  (build-system ruby-build-system)
+  (propagated-inputs
+    `(("ruby-shoulda" ,ruby-shoulda)))
+  (synopsis
+    "Regression testing for the command line, and library API")
+  (description
+    "Regression testing for the command line, and library API")
+  (home-page
+    "http://github.com/pjotrp/regressiontest")
+  (license license:expat)))