gnu: Add ruby-maruku.
Required for ruby-minitest-reporters. * gnu/packages/ruby.scm (ruby-maruku): New variable.master
parent
5d8fe6de26
commit
b9511aa93b
|
@ -1847,6 +1847,39 @@ It allows writing tests, checking results and automated testing in Ruby.")
|
|||
(home-page "https://test-unit.github.io/")
|
||||
(license (list license:psfl license:ruby))))
|
||||
|
||||
(define-public ruby-maruku
|
||||
(package
|
||||
(name "ruby-maruku")
|
||||
(version "0.7.3")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (rubygems-uri "maruku" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1r7bxpgnx2hp3g12bjrmdrpv663dfqxsdp0af69kjhxmaxpia56x"))))
|
||||
(build-system ruby-build-system)
|
||||
(arguments
|
||||
'(;; TODO: 3 tests seem to fail due to HTML encoding issues
|
||||
#:tests? #f
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(replace 'check
|
||||
(lambda* (#:key tests? #:allow-other-keys)
|
||||
(when tests?
|
||||
(invoke "rspec"))
|
||||
#t)))))
|
||||
(native-inputs
|
||||
`(("ruby-rspec" ,ruby-rspec)
|
||||
("ruby-simplecov" ,ruby-simplecov)
|
||||
("ruby-nokogiri-diff" ,ruby-nokogiri-diff)))
|
||||
(synopsis "Markdown interpreter in Ruby")
|
||||
(description
|
||||
"Maruku is a Markdown interpreter in Ruby. It can export Markdown to
|
||||
HTML, and PDF through LaTeX.")
|
||||
(home-page "https://github.com/bhollis/maruku")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ruby-metaclass
|
||||
(package
|
||||
(name "ruby-metaclass")
|
||||
|
|
Reference in New Issue