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 lib/rubygems/user_interaction.rb, line 415
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 lib/rubygems/user_interaction.rb, line 429
def done
end
updated(message)

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

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