Class: Gem::StreamUI::SilentProgressReporter

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

Overview

An absolutely silent progress reporter.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(out_stream, size, initial_message, terminal_message = nil) ⇒ SilentProgressReporter

Creates a silent progress reporter that ignores all input arguments.



423
424
# File 'lib/rubygems/user_interaction.rb', line 423

def initialize(out_stream, size, initial_message, terminal_message = nil)
end

Instance Attribute Details

#countObject (readonly)

The count of items is never updated for the silent progress reporter.



418
419
420
# File 'lib/rubygems/user_interaction.rb', line 418

def count
  @count
end

Instance Method Details

#doneObject

Does not print anything when complete as this object has taken a vow of silence.



437
438
# File 'lib/rubygems/user_interaction.rb', line 437

def done
end

#updated(message) ⇒ Object

Does not print message when updated as this object has taken a vow of silence.



430
431
# File 'lib/rubygems/user_interaction.rb', line 430

def updated(message)
end