gnu: Add ruby-formatador.

* gnu/packages/ruby.scm (ruby-formatador): New variable.
This commit is contained in:
Ricardo Wurmus 2015-09-16 11:02:32 +02:00 committed by David Thompson
parent d152162fc1
commit 8528365b0e
1 changed files with 20 additions and 0 deletions

View File

@ -626,6 +626,26 @@ libraries such as Libnotify.")
(home-page "https://github.com/guard/notiffany")
(license license:expat)))
(define-public ruby-formatador
(package
(name "ruby-formatador")
(version "0.2.5")
(source (origin
(method url-fetch)
(uri (rubygems-uri "formatador" version))
(sha256
(base32
"1gc26phrwlmlqrmz4bagq1wd5b7g64avpx0ghxr9xdxcvmlii0l0"))))
(build-system ruby-build-system)
;; Circular dependency: Tests require ruby-shindo, which requires
;; ruby-formatador at runtime.
(arguments `(#:tests? #f))
(synopsis "Ruby library to format text on stdout")
(description "Formatador is a Ruby library to format text printed to the
standard output stream.")
(home-page "http://github.com/geemus/formatador")
(license license:expat)))
(define-public ruby-useragent
(package
(name "ruby-useragent")