mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 16:06:16 -05:00
gnu: Add ruby-minitest-reporters.
Required for ruby-public-suffix tests. * gnu/packages/ruby.scm (ruby-minitest-reporters): New variable.
This commit is contained in:
parent
88a105c107
commit
e2c9a9ccb7
1 changed files with 45 additions and 0 deletions
|
@ -2466,6 +2466,51 @@ (define-public ruby-minitest-bonus-assertions
|
|||
(home-page "https://github.com/halostatue/minitest-bonus-assertions")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ruby-minitest-reporters
|
||||
(package
|
||||
(name "ruby-minitest-reporters")
|
||||
(version "1.3.6")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (rubygems-uri "minitest-reporters" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1a3das80rwgys5rj48i5ly144nvszyqyi748bk9bss74jblcf5ay"))))
|
||||
(build-system ruby-build-system)
|
||||
(arguments
|
||||
'(#:phases
|
||||
(modify-phases %standard-phases
|
||||
;; Remove the requirement on Rubocop, as it isn't useful to run, and
|
||||
;; including it as an input can lead to circular dependencies.
|
||||
(add-after 'unpack 'remove-rubocop-from-Rakefile
|
||||
(lambda _
|
||||
(substitute* "Rakefile"
|
||||
(("require 'rubocop/rake\\_task'") "")
|
||||
(("RuboCop::RakeTask\\.new\\(:rubocop\\)") "[].each"))
|
||||
#t))
|
||||
(add-after 'extract-gemspec 'remove-rubocop-from-gemspec
|
||||
(lambda _
|
||||
(substitute* "minitest-reporters.gemspec"
|
||||
((".*%q<rubocop>.*") "\n"))
|
||||
#t)))))
|
||||
(propagated-inputs
|
||||
`(("ruby-ansi" ,ruby-ansi)
|
||||
("ruby-builder" ,ruby-builder)
|
||||
("ruby-minitest" ,ruby-minitest)
|
||||
("ruby-progressbar" ,ruby-progressbar)))
|
||||
(native-inputs
|
||||
`(("bundler" ,bundler)
|
||||
("ruby-maruku" ,ruby-maruku)))
|
||||
(synopsis "Enhanced reporting for Minitest tests")
|
||||
(description
|
||||
"@code{minitest/reporters} provides a custom Minitest runner to improve
|
||||
how the test state is reported. A number of different reporters are
|
||||
available, including a spec reporter, progress bar reporter, a HTML
|
||||
reporter.")
|
||||
(home-page "https://github.com/kern/minitest-reporters")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ruby-minitest-rg
|
||||
(package
|
||||
(name "ruby-minitest-rg")
|
||||
|
|
Loading…
Reference in a new issue