README.rdoc in powerbar-1.0.3 vs README.rdoc in powerbar-1.0.4
- old
+ new
@@ -11,11 +11,11 @@
* By default prints to stderr but can call any output-method
of your choice (e.g. your favorite Logger).
* Fully customizable; all output is template-driven.
-* All output is optional. You may use PowerBar to silently collect progress
+* All output is optional. You may set PowerBar to silently collect progress
information (percentage-done, throughput, ETA, etc.) and then use the
computed values elsewhere in your app.
* All state can be updated at any time. For example: If you're monitoring a
multi-part operation then you can change the status-message of a running
@@ -48,10 +48,10 @@
total = 100000
step = 1000
p = PowerBar.new
- # Override some default values to demonstrate how the settings work
+ # Override some defaults to demonstrate how the settings work
p.settings.tty.finite.template.barchar = '*'
p.settings.tty.finite.template.padchar = '.'
# Dummy loop to simulate some progress
(0..total).step(step).each do |i|