gnu: Add ruby-bump.

Required for ruby-parallel.

* gnu/packages/ruby.scm (ruby-bump): New variable.
This commit is contained in:
Christopher Baines 2019-01-28 14:53:58 +00:00
parent b8aecc31b4
commit 566f71f8b8
No known key found for this signature in database
GPG Key ID: 5E28A33B0B84F577
1 changed files with 22 additions and 0 deletions

View File

@ -584,6 +584,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")