mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add ruby-bio-logger.
* gnu/packages/ruby.scm (ruby-bio-logger): New variable.
This commit is contained in:
parent
47770296d2
commit
212d563d26
1 changed files with 22 additions and 0 deletions
|
@ -1198,3 +1198,25 @@ (define-public ruby-cucumber-core
|
|||
and trust on your team.")
|
||||
(home-page "https://cucumber.io/")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ruby-bio-logger
|
||||
(package
|
||||
(name "ruby-bio-logger")
|
||||
(version "1.0.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (rubygems-uri "bio-logger" version))
|
||||
(sha256
|
||||
(base32
|
||||
"02pylfy8nkdqzyzplvnhn1crzmfkj1zmi3qjhrj2f2imlxvycd28"))))
|
||||
(build-system ruby-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f)) ; rake errors, missing shoulda
|
||||
(propagated-inputs
|
||||
`(("ruby-log4r" ,ruby-log4r)))
|
||||
(synopsis "Log4r wrapper for Ruby")
|
||||
(description "Bio-logger is a wrapper around Log4r adding extra logging
|
||||
features such as filtering and fine grained logging.")
|
||||
(home-page "https://github.com/pjotrp/bioruby-logger-plugin")
|
||||
(license license:expat)))
|
||||
|
|
Loading…
Reference in a new issue