[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/11: gnu: Add ruby-minitest.
From: |
David Thompson |
Subject: |
06/11: gnu: Add ruby-minitest. |
Date: |
Tue, 16 Jun 2015 00:30:23 +0000 |
davexunit pushed a commit to branch master
in repository guix.
commit 2206e94892f58e695ed417240f189b1f8c3048d7
Author: David Thompson <address@hidden>
Date: Fri Jun 12 21:06:50 2015 -0400
gnu: Add ruby-minitest.
* gnu/packages/ruby.scm (ruby-minitest): New variable.
---
gnu/packages/ruby.scm | 28 ++++++++++++++++++++++++++++
1 files changed, 28 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 44ca0dc..d090d35 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -466,6 +466,34 @@ using Net::HTTP, supporting reconnection and retry
according to RFC 2616.")
(home-page "https://github.com/drbrain/net-http-persistent")
(license license:expat)))
+(define-public ruby-minitest
+ (package
+ (name "ruby-minitest")
+ (version "5.7.0")
+ (source (origin
+ (method git-fetch)
+ ;; No release tarballs nor git tags. This is the commit
+ ;; corresponding to the addition of the release notes to
+ ;; History.rdoc.
+ (uri (git-reference
+ (url "https://github.com/seattlerb/minitest.git")
+ (commit "e975248")))
+ (sha256
+ (base32
+ "09xjiahk7q8hid1i39ahrmghaslpj9n36zna72i3ah7kf1bh2l01"))))
+ (build-system ruby-build-system)
+ (arguments
+ '(#:phases (modify-phases %standard-phases
+ (replace 'build ; no gemspec
+ (lambda _ (zero? (system* "rake" "gem")))))))
+ (native-inputs
+ `(("ruby-hoe" ,ruby-hoe)))
+ (synopsis "Small test suite library for Ruby")
+ (description "Minitest provides a complete suite of Ruby testing
+facilities supporting TDD, BDD, mocking, and benchmarking.")
+ (home-page "https://github.com/seattlerb/minitest")
+ (license license:expat)))
+
(define-public ruby-daemons
(package
(name "ruby-daemons")
- branch master updated (975b894 -> e778a54), David Thompson, 2015/06/15
- 01/11: gnu: Add ruby-bacon., David Thompson, 2015/06/15
- 02/11: gnu: Add ruby-arel., David Thompson, 2015/06/15
- 03/11: gnu: Add ruby-connection-pool., David Thompson, 2015/06/15
- 04/11: gnu: Add ruby-net-http-persistent., David Thompson, 2015/06/15
- 05/11: gnu: Add ruby-daemons., David Thompson, 2015/06/15
- 06/11: gnu: Add ruby-minitest.,
David Thompson <=
- 07/11: gnu: Add ruby-minitest-sprint., David Thompson, 2015/06/15
- 08/11: gnu: Add ruby-minitest-bacon., David Thompson, 2015/06/15
- 10/11: gnu: Add ruby-slop., David Thompson, 2015/06/15
- 09/11: gnu: Add ruby-git., David Thompson, 2015/06/15
- 11/11: gnu: Add ruby-multipart-post., David Thompson, 2015/06/15