mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: Add ruby-rubypants.
* gnu/packages/ruby.scm (ruby-rubypants): New variable.
This commit is contained in:
parent
0684f1d6b5
commit
f90c25c1c8
1 changed files with 22 additions and 0 deletions
|
@ -4467,3 +4467,25 @@ (define-public ruby-code-statistics
|
|||
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 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)))
|
||||
|
|
Loading…
Reference in a new issue