guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

22/23: gnu: Add ruby-sanitize.


From: Ricardo Wurmus
Subject: 22/23: gnu: Add ruby-sanitize.
Date: Mon, 14 Dec 2015 13:11:00 +0000

rekado pushed a commit to branch master
in repository guix.

commit d56ff88b6c63bb4f3e7877986b313ed944d6f341
Author: Ricardo Wurmus <address@hidden>
Date:   Wed Nov 25 17:11:14 2015 +0100

    gnu: Add ruby-sanitize.
    
    * gnu/packages/ruby.scm (ruby-sanitize): New variable.
---
 gnu/packages/ruby.scm |   32 ++++++++++++++++++++++++++++++++
 1 files changed, 32 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index cb81340..846e358 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -2367,6 +2367,38 @@ access the result as a Nokogiri parsed document.")
     (home-page "https://github.com/rubys/nokogumbo/";)
     (license license:asl2.0)))
 
+(define-public ruby-sanitize
+  (package
+    (name "ruby-sanitize")
+    (version "4.0.0")
+    (source (origin
+              (method url-fetch)
+              ;; The gem does not include the Rakefile, so we download the
+              ;; release tarball from Github.
+              (uri (string-append "https://github.com/rgrove/";
+                                  "sanitize/archive/v" version ".tar.gz"))
+              (file-name (string-append name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "055xnj38l60gxnnng76kpy2l2jbrp0byjdyq17jw79w7l4b40znr"))))
+    (build-system ruby-build-system)
+    (propagated-inputs
+     `(("ruby-crass" ,ruby-crass)
+       ("ruby-nokogiri" ,ruby-nokogiri)
+       ("ruby-nokogumbo" ,ruby-nokogumbo)))
+    (native-inputs
+     `(("bundler" ,bundler)
+       ("ruby-minitest" ,ruby-minitest)
+       ("ruby-redcarpet" ,ruby-redcarpet)
+       ("ruby-yard" ,ruby-yard)))
+    (synopsis "Whitelist-based HTML and CSS sanitizer")
+    (description
+     "Sanitize is a whitelist-based HTML and CSS sanitizer.  Given a list of
+acceptable elements, attributes, and CSS properties, Sanitize will remove all
+unacceptable HTML and/or CSS from a string.")
+    (home-page "https://github.com/rgrove/sanitize/";)
+    (license license:expat)))
+
 (define-public ruby-ox
   (package
     (name "ruby-ox")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]