Class: Gem::StreamUI::SimpleProgressReporter
- Inherits:
 - 
      Object
      
        
- Object
 - Gem::StreamUI::SimpleProgressReporter
 
 
- Includes:
 - DefaultUserInteraction
 
- Defined in:
 - lib/rubygems/user_interaction.rb
 
Overview
A basic dotted progress reporter.
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")  ⇒ SimpleProgressReporter 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
Creates a new progress reporter that will write to
out_streamforsizeitems. - 
  
    
      #updated(message)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Prints out a dot and ignores
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") ⇒ SimpleProgressReporter
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.
      431 432 433 434 435 436 437 438 439  | 
    
      # File 'lib/rubygems/user_interaction.rb', line 431 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.
      424 425 426  | 
    
      # File 'lib/rubygems/user_interaction.rb', line 424 def count @count end  | 
  
Instance Method Details
#done ⇒ Object
Prints out the terminal message.
      453 454 455  | 
    
      # File 'lib/rubygems/user_interaction.rb', line 453 def done @out.puts "\n#{@terminal_message}" end  | 
  
#updated(message) ⇒ Object
Prints out a dot and ignores message.
      444 445 446 447 448  | 
    
      # File 'lib/rubygems/user_interaction.rb', line 444 def updated() @count += 1 @out.print "." @out.flush end  |