Class: Formatter
- Inherits:
-
Object
- Object
- Formatter
- Defined in:
- lib/formatter.rb
Instance Method Summary collapse
Instance Method Details
#print_progress_bar_long ⇒ Object
23 24 25 26 27 28 29 30 31 |
# File 'lib/formatter.rb', line 23 def puts '' = ProgressBar.new 100.times do sleep 0.075 .increment! end puts '' end |
#print_progress_bar_short ⇒ Object
33 34 35 36 37 38 39 40 41 |
# File 'lib/formatter.rb', line 33 def puts '' = ProgressBar.new 100.times do sleep 0.0055 .increment! end puts '' end |