Skip to Content Skip to Search

An absolutely silent progress reporter.

Methods
D
N
U

Attributes

[R] count

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

Class Public methods

new(out_stream, size, initial_message, terminal_message = nil)

Creates a silent progress reporter that ignores all input arguments.

# File ruby/lib/rubygems/user_interaction.rb, line 395
def initialize(out_stream, size, initial_message, terminal_message = nil)
end

Instance Public methods

done()

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

# File ruby/lib/rubygems/user_interaction.rb, line 409
def done
end

updated(message)

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

# File ruby/lib/rubygems/user_interaction.rb, line 402
def updated(message)
end