mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-20 01:33:18 -05:00
gnu: Add ruby-gem-release.
* gnu/packages/ruby.scm (ruby-gem-release): New variable. Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name>
This commit is contained in:
parent
7455ed8e52
commit
9b21f4b669
1 changed files with 21 additions and 0 deletions
|
@ -12467,3 +12467,24 @@ (define-public ruby-cbor
|
||||||
@acronym{CBOR, Concise Binary Object Representation} format, based on
|
@acronym{CBOR, Concise Binary Object Representation} format, based on
|
||||||
Sadayuki Furuhashi's MessagePack library.")
|
Sadayuki Furuhashi's MessagePack library.")
|
||||||
(license license:asl2.0)))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
|
(define-public ruby-gem-release
|
||||||
|
(package
|
||||||
|
(name "ruby-gem-release")
|
||||||
|
(version "2.2.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (rubygems-uri "gem-release" version))
|
||||||
|
(sha256
|
||||||
|
(base32 "108rrfaiayi14zrqbb6z0cbwcxh8n15am5ry2a86v7c8c3niysq9"))))
|
||||||
|
(build-system ruby-build-system)
|
||||||
|
(arguments
|
||||||
|
;; No rakefile
|
||||||
|
`(#:tests? #f))
|
||||||
|
(home-page "https://github.com/svenfuchs/gem-release")
|
||||||
|
(synopsis "Ruby gem plugin for release management")
|
||||||
|
(description "GemRelease is a gem plugin that aims at making gem development
|
||||||
|
easier by automating repetitive work based on conventions, configuration, and
|
||||||
|
templates.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
Loading…
Reference in a new issue