mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add ruby-rubygems-tasks.
* gnu/packages/ruby.scm (ruby-rubygems-tasks): New variable.
This commit is contained in:
parent
60af3d8241
commit
f13636f291
1 changed files with 22 additions and 0 deletions
|
@ -752,6 +752,28 @@ (define-public ruby-shindo
|
|||
(home-page "https://github.com/geemus/shindo")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ruby-rubygems-tasks
|
||||
(package
|
||||
(name "ruby-rubygems-tasks")
|
||||
(version "0.2.4")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (rubygems-uri "rubygems-tasks" version))
|
||||
(sha256
|
||||
(base32
|
||||
"16cp45qlbcglnqdm4f1vj3diywdz4v024saqpgrz6palf0wmgz2j"))))
|
||||
(build-system ruby-build-system)
|
||||
;; Tests need Internet access.
|
||||
(arguments `(#:tests? #f))
|
||||
(native-inputs
|
||||
`(("ruby-rspec" ,ruby-rspec)
|
||||
("ruby-yard" ,ruby-yard)))
|
||||
(synopsis "Rake tasks for managing and releasing Ruby Gems")
|
||||
(description "Rubygems-task provides Rake tasks for managing and releasing
|
||||
Ruby Gems.")
|
||||
(home-page "https://github.com/postmodern/rubygems-tasks")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ruby-useragent
|
||||
(package
|
||||
(name "ruby-useragent")
|
||||
|
|
Loading…
Reference in a new issue