3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: Add ruby-redcarpet.

* gnu/packages/ruby.scm (ruby-redcarpet): New variable.
This commit is contained in:
Ricardo Wurmus 2015-11-20 12:13:33 +01:00
parent 97aee8d3eb
commit d93062fd5c

View file

@ -1223,6 +1223,38 @@ definitions on a Ruby object.")
(home-page "https://github.com/floehopper/introspection")
(license license:expat)))
(define-public ruby-redcarpet
(package
(name "ruby-redcarpet")
(version "3.3.3")
(source (origin
(method url-fetch)
(uri (rubygems-uri "redcarpet" version))
(sha256
(base32
"14i3wypp97bpk20679d1csy88q4hsgfqbnqw6mryl77m2g0d09pk"))))
(build-system ruby-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
;; The gem archive does not include the conformance tests.
(add-after 'unpack 'disable-conformance-tests
(lambda _
(substitute* "Rakefile"
(("task :test => %w\\[test:unit test:conformance\\]")
"task :test => %w[test:unit]"))
#t)))))
(native-inputs
`(("bundler" ,bundler)
("ruby-test-unit" ,ruby-test-unit)
("ruby-rake-compiler" ,ruby-rake-compiler)))
(synopsis "Extensible Markdown to (X)HTML converter")
(description
"Redcarpet is an extensible Ruby library for Markdown processing and
conversion to (X)HTML.")
(home-page "http://github.com/vmg/redcarpet")
(license license:expat)))
(define-public ruby-minitest
(package
(name "ruby-minitest")