Class: Gem::StreamUI::SilentDownloadReporter
- Inherits:
 - 
      Object
      
        
- Object
 - Gem::StreamUI::SilentDownloadReporter
 
 
- Defined in:
 - lib/rubygems/user_interaction.rb
 
Overview
An absolutely silent download reporter.
Instance Method Summary collapse
- 
  
    
      #done  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
The silent download reporter won’t tell you when the download is done.
 - 
  
    
      #fetch(filename, filesize)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
The silent download reporter does not display
filenameor care aboutfilesizebecause it is silent. - 
  
    
      #initialize(out_stream, *args)  ⇒ SilentDownloadReporter 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
The silent download reporter ignores all arguments.
 - 
  
    
      #update(current)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Nothing can update the silent download reporter.
 
Constructor Details
#initialize(out_stream, *args) ⇒ SilentDownloadReporter
The silent download reporter ignores all arguments
      520 521  | 
    
      # File 'lib/rubygems/user_interaction.rb', line 520 def initialize(out_stream, *args) end  | 
  
Instance Method Details
#done ⇒ Object
The silent download reporter won’t tell you when the download is done. Because it is silent.
      540 541  | 
    
      # File 'lib/rubygems/user_interaction.rb', line 540 def done end  | 
  
#fetch(filename, filesize) ⇒ Object
The silent download reporter does not display filename or care about filesize because it is silent.
      527 528  | 
    
      # File 'lib/rubygems/user_interaction.rb', line 527 def fetch(filename, filesize) end  | 
  
#update(current) ⇒ Object
Nothing can update the silent download reporter.
      533 534  | 
    
      # File 'lib/rubygems/user_interaction.rb', line 533 def update(current) end  |