mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 07:56:16 -05:00
gnu: Add ruby-flores.
* gnu/packages/ruby.scm (ruby-flores): New variable.
This commit is contained in:
parent
ac633a7acb
commit
f00552b1b1
1 changed files with 25 additions and 0 deletions
|
@ -3996,6 +3996,31 @@ (define-public ruby-fiber-local
|
|||
(home-page "https://github.com/socketry/fiber-local")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ruby-flores
|
||||
(package
|
||||
(name "ruby-flores")
|
||||
(version "0.0.8")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (rubygems-uri "flores" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0pd8gqgy67rp1baq5r7himl0r9jzv5kqlhdmqh8wngynv548w2ai"))))
|
||||
(build-system ruby-build-system)
|
||||
(arguments
|
||||
(list #:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(replace 'check
|
||||
(lambda* (#:key tests? #:allow-other-keys)
|
||||
(when tests?
|
||||
(invoke "rspec")))))))
|
||||
(native-inputs (list ruby-rspec ruby-simplecov))
|
||||
(synopsis "Fuzzing, randomization, and stress testing library")
|
||||
(description "Flores is a fuzzing, randomization, and stress library to
|
||||
help tests uncover more bugs.")
|
||||
(home-page "https://github.com/jordansissel/ruby-flores")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public ruby-net-http-persistent
|
||||
(package
|
||||
(name "ruby-net-http-persistent")
|
||||
|
|
Loading…
Reference in a new issue