mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add ruby-rubytest-cli.
* gnu/packages/ruby.scm (ruby-rubytest-cli): New variable.
This commit is contained in:
parent
78bb471f37
commit
0832804ed5
1 changed files with 24 additions and 0 deletions
|
@ -3148,3 +3148,27 @@ (define-public ruby-lemon
|
|||
focus concern on individual units of behavior.")
|
||||
(home-page "http://rubyworks.github.io/lemon")
|
||||
(license license:bsd-2)))
|
||||
|
||||
(define-public ruby-rubytest-cli
|
||||
(package
|
||||
(name "ruby-rubytest-cli")
|
||||
(version "0.2.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (rubygems-uri "rubytest-cli" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0n7hv4k1ba4fm3i98c6ydbsqhkxgbp52mhi70ba1x3mqzfvk438p"))))
|
||||
(build-system ruby-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f)) ; no tests
|
||||
(propagated-inputs
|
||||
`(("ruby-ansi" ,ruby-ansi)
|
||||
("ruby-rubytest" ,ruby-rubytest)))
|
||||
(synopsis "Command-line interface for rubytest")
|
||||
(description
|
||||
"Rubytest CLI is a command-line interface for running tests for
|
||||
Rubytest-based test frameworks. It provides the @code{rubytest} executable.")
|
||||
(home-page "http://rubyworks.github.io/rubytest-cli")
|
||||
(license license:bsd-2)))
|
||||
|
|
Loading…
Reference in a new issue