gnu: Add ruby-multi-xml.

* gnu/packages/ruby.scm (ruby-multi-xml): New variable.
This commit is contained in:
Christopher Baines 2019-02-17 17:12:12 +00:00
parent 2a8581ac38
commit ca914b5bb1
No known key found for this signature in database
GPG key ID: 5E28A33B0B84F577

View file

@ -3098,6 +3098,27 @@ (define-public ruby-slop-3
(base32
"00w8g3j7k7kl8ri2cf1m58ckxk8rn350gp4chfscmgv6pq1spk3n"))))))
(define-public ruby-multi-xml
(package
(name "ruby-multi-xml")
(version "0.6.0")
(source
(origin
(method url-fetch)
(uri (rubygems-uri "multi_xml" version))
(sha256
(base32
"0lmd4f401mvravi1i1yq7b2qjjli0yq7dfc4p1nj5nwajp7r6hyj"))))
(build-system ruby-build-system)
(arguments
'(#:tests? #f)) ; No included tests
(synopsis "Swappable XML backends for Ruby")
(description
"@code{MultiXml} provides swappable XML backends utilizing either LibXML,
Nokogiri, Ox, or REXML.")
(home-page "https://github.com/sferik/multi_xml")
(license license:expat)))
(define-public ruby-multipart-post
(package
(name "ruby-multipart-post")