gnu: Add ruby-htmlentities.

* gnu/packages/ruby.scm (ruby-htmlentities): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Brian Leung 2019-08-13 06:44:20 +02:00 committed by Ludovic Courtès
parent 9e065a8aa2
commit 7bddb6aa53
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -8572,6 +8572,33 @@ (define-public ruby-mustermann
(home-page "https://github.com/sinatra/mustermann")
(license license:expat)))
(define-public ruby-htmlentities
(package
(name "ruby-htmlentities")
(version "4.3.4")
(source
(origin
(method url-fetch)
(uri (rubygems-uri "htmlentities" version))
(sha256
(base32
"1nkklqsn8ir8wizzlakncfv42i32wc0w9hxp00hvdlgjr7376nhj"))))
(build-system ruby-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(replace 'check
(lambda _
(map (lambda (file)
(invoke "ruby" "-Itest" file))
(find-files "./test" ".*_test\\.rb")))))))
(synopsis "Encode and decode (X)HTML entities")
(description
"This package provides a module for encoding and decoding (X)HTML
entities.")
(home-page "https://github.com/threedaymonk/htmlentities")
(license license:expat)))
(define-public ruby-sinatra
(package
(name "ruby-sinatra")