Class: Gem::StreamUI::VerboseProgressReporter
- Inherits:
-
Object
- Object
- Gem::StreamUI::VerboseProgressReporter
- Includes:
- DefaultUserInteraction
- Defined in:
- lib/rubygems/user_interaction.rb
Overview
A progress reporter that prints out messages about the current progress.
Instance Attribute Summary collapse
-
#count ⇒ Object
readonly
The number of progress items counted so far.
Instance Method Summary collapse
-
#done ⇒ Object
Prints out the terminal message.
-
#initialize(out_stream, size, initial_message, terminal_message = 'complete') ⇒ VerboseProgressReporter
constructor
Creates a new progress reporter that will write to
out_stream
forsize
items. -
#updated(message) ⇒ Object
Prints out the position relative to the total and the
message
.
Methods included from DefaultUserInteraction
ui, #ui, ui=, #ui=, use_ui, #use_ui
Methods included from Text
#clean_text, #format_text, #levenshtein_distance, #min3, #truncate_text
Constructor Details
#initialize(out_stream, size, initial_message, terminal_message = 'complete') ⇒ VerboseProgressReporter
Creates a new progress reporter that will write to out_stream
for size
items. Shows the given initial_message
when progress starts and the terminal_message
when it is complete.
489 490 491 492 493 494 495 496 497 |
# File 'lib/rubygems/user_interaction.rb', line 489 def initialize(out_stream, size, , = 'complete') @out = out_stream @total = size @count = 0 @terminal_message = @out.puts end |
Instance Attribute Details
#count ⇒ Object (readonly)
The number of progress items counted so far.
482 483 484 |
# File 'lib/rubygems/user_interaction.rb', line 482 def count @count end |
Instance Method Details
#done ⇒ Object
Prints out the terminal message.
510 511 512 |
# File 'lib/rubygems/user_interaction.rb', line 510 def done @out.puts @terminal_message end |
#updated(message) ⇒ Object
Prints out the position relative to the total and the message
.
502 503 504 505 |
# File 'lib/rubygems/user_interaction.rb', line 502 def updated() @count += 1 @out.puts "#{@count}/#{@total}: #{}" end |