From a6a3c4a5fc2dc64aa234acd31140cd3e6859ac9d Mon Sep 17 00:00:00 2001 From: Ben Woodcroft Date: Mon, 5 Feb 2018 11:56:01 +0100 Subject: gnu: Add ruby-rr. --- gnu/packages/ruby.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 3ed74214b2..ae8a0a9dd6 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -6863,3 +6863,27 @@ https://github.com/flavorjones/loofah-activerecord).") (home-page "https://github.com/flavorjones/loofah") (license license:expat))) + +(define-public ruby-rr +(package + (name "ruby-rr") + (version "1.2.0") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "rr" version)) + (sha256 + (base32 + "0b05ycaw17wbxzycv1wvzklpqjnmi0dqy01igcl5jfmy1ydky66r")))) + (build-system ruby-build-system) + (arguments + `(#:tests? #f)) ; test files not included + (native-inputs + `(("bundler" ,bundler) + ("ruby-rspec" ,ruby-rspec))) + (synopsis + "RR is a test double framework that features a rich selection of double techniques and a terse syntax.") + (description + "RR is a test double framework that features a rich selection of double techniques and a terse syntax.") + (home-page "https://rr.github.io/rr") + (license license:expat))) -- cgit v1.2.3