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