Class: Gem::StreamUI::SilentDownloadReporter

Inherits:
Object
  • Object
show all
Defined in:
lib/rubygems/user_interaction.rb

Overview

An absolutely silent download reporter.

Instance Method Summary collapse

Constructor Details

#initialize(out_stream, *args) ⇒ SilentDownloadReporter

The silent download reporter ignores all arguments



545
546
# File 'lib/rubygems/user_interaction.rb', line 545

def initialize(out_stream, *args)
end

Instance Method Details

#doneObject

The silent download reporter won’t tell you when the download is done. Because it is silent.



565
566
# File 'lib/rubygems/user_interaction.rb', line 565

def done
end

#fetch(filename, filesize) ⇒ Object

The silent download reporter does not display filename or care about filesize because it is silent.



552
553
# File 'lib/rubygems/user_interaction.rb', line 552

def fetch(filename, filesize)
end

#update(current) ⇒ Object

Nothing can update the silent download reporter.



558
559
# File 'lib/rubygems/user_interaction.rb', line 558

def update(current)
end