gnu: Add ruby-progressbar.

* gnu/packages/ruby.scm (ruby-progressbar): New variable.
master
Christopher Baines 2019-01-27 08:58:51 +00:00
parent 2ed201c112
commit 158a9253da
No known key found for this signature in database
GPG Key ID: 5E28A33B0B84F577
1 changed files with 22 additions and 0 deletions

View File

@ -2526,6 +2526,28 @@ rate.")
(home-page "https://github.com/paul/progress_bar")
(license license:wtfpl2)))
(define-public ruby-progressbar
(package
(name "ruby-progressbar")
(version "1.10.0")
(source
(origin
(method url-fetch)
(uri (rubygems-uri "ruby-progressbar" version))
(sha256
(base32
"1cv2ym3rl09svw8940ny67bav7b2db4ms39i4raaqzkf59jmhglk"))))
(build-system ruby-build-system)
(arguments
'(;; TODO: There looks to be a circular dependency with ruby-fuubar.
#:tests? #f))
(synopsis "Text progress bar library for Ruby")
(description
"Ruby/ProgressBar is an flexible text progress bar library for Ruby.
The output can be customized with a formatting system.")
(home-page "https://github.com/jfelchner/ruby-progressbar")
(license license:expat)))
(define-public ruby-pry
(package
(name "ruby-pry")