From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:59165) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1goAqg-0000OW-4K for guix-patches@gnu.org; Mon, 28 Jan 2019 12:37:30 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1goAqX-0001Yz-Ku for guix-patches@gnu.org; Mon, 28 Jan 2019 12:37:24 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:50164) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1goAqP-0001Vw-DS for guix-patches@gnu.org; Mon, 28 Jan 2019 12:37:14 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1goAqP-0001U2-9P for guix-patches@gnu.org; Mon, 28 Jan 2019 12:37:13 -0500 Subject: [bug#30689] [PATCH 09/39] gnu: Add ruby-bump. Resent-Message-ID: From: Christopher Baines Date: Mon, 28 Jan 2019 17:35:50 +0000 Message-Id: <20190128173620.27999-9-mail@cbaines.net> In-Reply-To: <20190128173620.27999-1-mail@cbaines.net> References: <87h8dshesk.fsf@cbaines.net> <20190128173620.27999-1-mail@cbaines.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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: 30689@debbugs.gnu.org Required for ruby-parallel. * gnu/packages/ruby.scm (ruby-bump): New variable. --- gnu/packages/ruby.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index c202b5770d..ac16b7231c 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -564,6 +564,28 @@ supported: XML Markup and XML Events.") (home-page "https://github.com/jimweirich/builder") (license license:expat))) +(define-public ruby-bump + (package + (name "ruby-bump") + (version "0.7.0") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "bump" version)) + (sha256 + (base32 + "1xinbr9rzh6cj75x24niwgqcnbhdxc68a8bc41lk8xv6fd906fym")))) + (build-system ruby-build-system) + (arguments + '(;; No included tests + #:tests? #f)) + (synopsis "Tool for working with Rubygems") + (description + "Bump provides commands to manage Rubygem versioning, updating to the +next patch version for example.") + (home-page "https://github.com/gregorym/bump") + (license license:expat))) + (define-public ruby-rjb (package (name "ruby-rjb") -- 2.20.1