mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add ruby-minitest-focus.
* gnu/packages/ruby.scm (ruby-minitest-focus): New variable.
This commit is contained in:
parent
8092e33376
commit
39dc0eb502
1 changed files with 25 additions and 0 deletions
|
@ -1521,6 +1521,31 @@ (define-public ruby-minitest-bacon
|
|||
(home-page "https://github.com/seattlerb/minitest-bacon")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ruby-minitest-focus
|
||||
(package
|
||||
(name "ruby-minitest-focus")
|
||||
(version "1.1.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (rubygems-uri "minitest-focus" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1zgjslp6d7dzcn8smj595idymgd5j603p9g2jqkfgi28sqbhz6m0"))))
|
||||
(build-system ruby-build-system)
|
||||
(propagated-inputs
|
||||
`(("ruby-minitest" ,ruby-minitest)))
|
||||
(native-inputs
|
||||
`(("ruby-hoe" ,ruby-hoe)))
|
||||
(synopsis "Allows a few specific tests to be focused on")
|
||||
(description
|
||||
"@code{minitest-focus} gives the ability focus on a few tests with ease
|
||||
without having to use command-line arguments. It introduces a @code{focus}
|
||||
class method for use in testing classes, specifying that the next defined test
|
||||
is to be run.")
|
||||
(home-page "https://github.com/seattlerb/minitest-focus")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ruby-daemons
|
||||
(package
|
||||
(name "ruby-daemons")
|
||||
|
|
Loading…
Reference in a new issue