From d1b824c09d1b3cea3aaab018cf960735a163d729 Mon Sep 17 00:00:00 2001 From: Ben Woodcroft Date: Mon, 5 Feb 2018 12:01:50 +0100 Subject: gnu: Add ruby-vcr. --- gnu/packages/ruby.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index c09436e7e2..a175a5e73e 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -7288,3 +7288,25 @@ https://github.com/flavorjones/loofah-activerecord).") "Radius is a powerful tag-based template language for Ruby inspired by the template languages used in MovableType and TextPattern. It uses tags similar to XML, but can be used to generate any form of plain text (HTML, e-mail, etc...).") (home-page "http://github.com/jlong/radius") (license #f))) + +(define-public ruby-vcr +(package + (name "ruby-vcr") + (version "3.0.3") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "vcr" version)) + (sha256 + (base32 + "1y19gb8vz1rbhx1qhim6kpp0fzksqhd7grb50hmrbjx5h4hc3y0y")))) + (build-system ruby-build-system) + (arguments + `(#:tests? #f)) ; No Rakefile in gem, and there's likely unpackaged + ; dependencies anyway. + (synopsis + "Record your test suite's HTTP interactions and replay them during future test runs for fast, deterministic, accurate tests.") + (description + "Record your test suite's HTTP interactions and replay them during future test runs for fast, deterministic, accurate tests.") + (home-page "http://vcr.github.io/vcr") + (license license:expat))) -- cgit v1.2.3