[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/08: gnu: Add ruby-progress_bar.
From: |
Christopher Baines |
Subject: |
06/08: gnu: Add ruby-progress_bar. |
Date: |
Sat, 30 Sep 2017 06:47:13 -0400 (EDT) |
cbaines pushed a commit to branch master
in repository guix.
commit 268643b94ab42bfc68fa940e774b7b47bf3a5ba8
Author: Christopher Baines <address@hidden>
Date: Fri Sep 22 20:15:29 2017 +0100
gnu: Add ruby-progress_bar.
* gnu/packages/ruby.scm (ruby-progress_bar): New variable.
---
gnu/packages/ruby.scm | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index d6aa590..3b0a67b 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -2111,6 +2111,37 @@ for select languages.")
(home-page "http://coderay.rubychan.de")
(license license:expat)))
+(define-public ruby-progress_bar
+ (package
+ (name "ruby-progress_bar")
+ (version "1.1.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (rubygems-uri "progress_bar" version))
+ (sha256
+ (base32
+ "1qc40mr6p1z9a3vlpnsg1zfgk1qswviql2a31y63wpv3vr6b5f48"))))
+ (build-system ruby-build-system)
+ (arguments
+ '(#:test-target "spec"))
+ (propagated-inputs
+ `(("ruby-highline" ,ruby-highline)
+ ("ruby-options" ,ruby-options)))
+ (native-inputs
+ `(("bundler" ,bundler)
+ ("ruby-rspec" ,ruby-rspec)
+ ("ruby-timecop" ,ruby-timecop)))
+ (synopsis
+ "Ruby library for displaying progress bars")
+ (description
+ "ProgressBar is a simple library for displaying progress bars. The
+maximum value is configurable, and additional information can be displayed
+like the percentage completion, estimated time remaining, elapsed time and
+rate.")
+ (home-page "https://github.com/paul/progress_bar")
+ (license license:wtfpl2)))
+
(define-public ruby-pry
(package
(name "ruby-pry")
- branch master updated (6e79949 -> afcbb02), Christopher Baines, 2017/09/30
- 01/08: gnu: Add ruby-httpclient., Christopher Baines, 2017/09/30
- 04/08: gnu: Add ruby-code-statistics., Christopher Baines, 2017/09/30
- 05/08: gnu: Add ruby-highline., Christopher Baines, 2017/09/30
- 07/08: gnu: Add ruby-rubyzip., Christopher Baines, 2017/09/30
- 02/08: gnu: Add ruby-multi-json., Christopher Baines, 2017/09/30
- 03/08: gnu: Add ruby-options., Christopher Baines, 2017/09/30
- 08/08: gnu: Add ruby-es-dump-restore., Christopher Baines, 2017/09/30
- 06/08: gnu: Add ruby-progress_bar.,
Christopher Baines <=