guix-patches
[Top][All Lists]
Advanced

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

[bug#29869] [PATCH 1/2] gnu: Add ruby-rubypants.


From: Clément Lassieur
Subject: [bug#29869] [PATCH 1/2] gnu: Add ruby-rubypants.
Date: Wed, 27 Dec 2017 20:33:14 +0100

* gnu/packages/ruby.scm (ruby-rubypants): New variable.
---
 gnu/packages/ruby.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index c66c0a414..6eaaef4f1 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -4466,3 +4466,25 @@ are doing, you can fiddle with every last bit of your 
email directly.")
 more robust and work for non rails projects.")
     (home-page "http://github.com/danmayer/code_statistics";)
     (license license:expat)))
+
+(define-public ruby-rubypants
+  (package
+    (name "ruby-rubypants")
+    (version "0.6.0")
+    (source (origin
+              (method url-fetch)
+              (uri (rubygems-uri "rubypants" version))
+              (sha256
+               (base32
+                "0xpqkslan2wkyal2h9qhplkr5d4sdn7q6csigrhnljjpp8j4qfsh"))))
+    (build-system ruby-build-system)
+    (arguments
+     '(#:tests? #f)) ; need Codecov
+    (synopsis "Port of the smart-quotes library SmartyPants")
+    (description
+     "RubyPants is a Ruby port of the smart-quotes library
+SmartyPants.  The original SmartyPants is a free web publishing plug-in for
+Movable Type, Blosxom, and BBEdit that easily translates plain ASCII
+punctuation characters into smart typographic punctuation HTML entities.")
+    (home-page "https://github.com/jmcnevin/rubypants";)
+    (license license:bsd-2)))
-- 
2.15.1






reply via email to

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