From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60775) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fmKGM-0001we-Ri for guix-patches@gnu.org; Sun, 05 Aug 2018 10:44:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fmKGI-0000gf-Sq for guix-patches@gnu.org; Sun, 05 Aug 2018 10:44:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:36982) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fmKGI-0000gV-PK for guix-patches@gnu.org; Sun, 05 Aug 2018 10:44:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fmKGI-0002hf-Io for guix-patches@gnu.org; Sun, 05 Aug 2018 10:44:02 -0400 Subject: [bug#32370] [PATCH 4/4] gnu: Add ruby-multi-test. Resent-Message-ID: From: Christopher Baines Date: Sun, 5 Aug 2018 15:43:22 +0100 Message-Id: <20180805144322.4705-4-mail@cbaines.net> In-Reply-To: <20180805144322.4705-1-mail@cbaines.net> References: <20180805144322.4705-1-mail@cbaines.net> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 32370@debbugs.gnu.org From: Ben Woodcroft * gnu/packages/ruby.scm (ruby-multi-test): New variable. Signed-off-by: Christopher Baines --- gnu/packages/ruby.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 888a31e89..e199d2b92 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -2304,6 +2304,32 @@ NSJSONSerialization, gson.rb, JrJackson, and OkJson.") (home-page "https://github.com/intridea/multi_json") (license license:expat))) +(define-public ruby-multi-test + (package + (name "ruby-multi-test") + (version "0.1.2") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "multi_test" version)) + (sha256 + (base32 + "1sx356q81plr67hg16jfwz9hcqvnk03bd9n75pmdw8pfxjfy1yxd")))) + (build-system ruby-build-system) + (arguments + '(;; Tests require different sets of specific gem versions to be available, + ;; and there is no gemfile that specifies the newest versions of + ;; dependencies to be tested. + #:tests? #f)) + (synopsis + "Interface to testing libraries loaded into a running Ruby process") + (description + "@code{multi_test} provides a uniform interface onto whatever testing +libraries that have been loaded into a running Ruby process to help control +rogue test/unit/autorun requires.") + (home-page "https://github.com/cucumber/multi_test") + (license license:expat))) + (define-public ruby-arel (package (name "ruby-arel") -- 2.18.0