In Files

  • rubygems/user_interaction.rb

Parent

Methods

Class/Module Index [+]

Quicksearch

Gem::StreamUI::SilentProgressReporter

An absolutely silent progress reporter.

Attributes

count[R]

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

Public Class Methods

new(out_stream, size, initial_message, terminal_message = nil) click to toggle source

Creates a silent progress reporter that ignores all input arguments.

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

Public Instance Methods

done() click to toggle source

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

 
               # File rubygems/user_interaction.rb, line 411
def done
end
            
updated(message) click to toggle source

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

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