mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 06:06:53 -05:00
gnu: Add ruby-coveralls.
* gnu/packages/ruby.scm (ruby-coveralls): New variable.
This commit is contained in:
parent
cfef316f25
commit
f048ef520f
1 changed files with 26 additions and 0 deletions
|
@ -6617,6 +6617,32 @@ (define ruby-cucumber-without-tests
|
||||||
(native-inputs
|
(native-inputs
|
||||||
'())))
|
'())))
|
||||||
|
|
||||||
|
(define-public ruby-coveralls
|
||||||
|
(package
|
||||||
|
(name "ruby-coveralls")
|
||||||
|
(version "0.8.23")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (rubygems-uri "coveralls" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1mv4fn5lfxhy7bc2f1lpnc5yp9mvv97az77j4r7jgrxcqwn8fqxc"))))
|
||||||
|
(build-system ruby-build-system)
|
||||||
|
;; The test suite depends on ruby-vcr, which cannot be included in Guix
|
||||||
|
;; because of its nonfree, Hippocratic derived license.
|
||||||
|
(arguments '(#:tests? #f))
|
||||||
|
(propagated-inputs
|
||||||
|
`(("ruby-json" ,ruby-json)
|
||||||
|
("ruby-term-ansicolor" ,ruby-term-ansicolor)
|
||||||
|
("ruby-thor" ,ruby-thor)
|
||||||
|
("ruby-tins" ,ruby-tins)))
|
||||||
|
(synopsis "Ruby implementation of the Coveralls API")
|
||||||
|
(description "This package provides a Ruby implementation of the Coveralls
|
||||||
|
API.")
|
||||||
|
(home-page "https://coveralls.io")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public ruby-cucumber-core
|
(define-public ruby-cucumber-core
|
||||||
(package
|
(package
|
||||||
(name "ruby-cucumber-core")
|
(name "ruby-cucumber-core")
|
||||||
|
|
Loading…
Reference in a new issue