gnu: Add ruby-rr.

* gnu/packages/ruby.scm (ruby-rr): New variable.
This commit is contained in:
Christopher Baines 2019-01-28 15:51:08 +00:00
parent 909eae21f3
commit 6188d6430d
No known key found for this signature in database
GPG key ID: 5E28A33B0B84F577

View file

@ -4335,6 +4335,30 @@ (define-public ruby-rainbow
(home-page "https://github.com/sickill/rainbow")
(license license:expat)))
(define-public ruby-rr
(package
(name "ruby-rr")
(version "1.2.1")
(source
(origin
(method url-fetch)
(uri (rubygems-uri "rr" version))
(sha256
(base32
"1n9g78ba4c2zzmz8cdb97c38h1xm0clircag00vbcxwqs4dq0ymp"))))
(build-system ruby-build-system)
(arguments
'(#:tests? #f)) ; test files not included
(native-inputs
`(("bundler" ,bundler)
("ruby-rspec" ,ruby-rspec)))
(synopsis "Ruby test double framework")
(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)))
(define-public ruby-rest-client
(package
(name "ruby-rest-client")