From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37102) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eUHTl-0004GE-VX for guix-patches@gnu.org; Wed, 27 Dec 2017 14:35:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eUHTi-0005ic-NK for guix-patches@gnu.org; Wed, 27 Dec 2017 14:35:05 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:45479) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eUHTi-0005iI-Gy for guix-patches@gnu.org; Wed, 27 Dec 2017 14:35:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eUHTi-0008Ab-AO for guix-patches@gnu.org; Wed, 27 Dec 2017 14:35:02 -0500 Subject: [bug#29869] [PATCH 1/2] gnu: Add ruby-rubypants. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:36264) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eUHSb-00044g-QT for guix-patches@gnu.org; Wed, 27 Dec 2017 14:33:54 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eUHSY-0004DU-OJ for guix-patches@gnu.org; Wed, 27 Dec 2017 14:33:53 -0500 Received: from mail.lassieur.org ([83.152.10.219]:49048) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1eUHSY-000497-CH for guix-patches@gnu.org; Wed, 27 Dec 2017 14:33:50 -0500 Received: from localhost.localdomain (192.168.0.254 [192.168.0.254]) by mail.lassieur.org (OpenSMTPD) with ESMTPSA id 1cd32bf7 (TLSv1.2:ECDHE-RSA-AES128-GCM-SHA256:128:NO) for ; Wed, 27 Dec 2017 19:33:45 +0000 (UTC) From: =?UTF-8?Q?Cl=C3=A9ment?= Lassieur Date: Wed, 27 Dec 2017 20:33:14 +0100 Message-Id: <20171227193315.27267-1-clement@lassieur.org> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 29869@debbugs.gnu.org * 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