class RDoc::Stats::Quiet

Stats printer that prints nothing

Public Class Methods

new(num_files) click to toggle source

Creates a new Quiet that will print nothing

# File rdoc/stats/quiet.rb, line 10
def initialize num_files
  @num_files = num_files
end

Public Instance Methods

begin_adding(*) click to toggle source

Prints a message at the beginning of parsing

# File rdoc/stats/quiet.rb, line 17
def begin_adding(*) end
done_adding(*) click to toggle source

Prints when RDoc is done

# File rdoc/stats/quiet.rb, line 57
def done_adding(*) end
print_alias(*) click to toggle source

Prints when an alias is added

print_attribute(*) click to toggle source

Prints when an attribute is added

print_class(*) click to toggle source

Prints when a class is added

print_constant(*) click to toggle source

Prints when a constant is added

print_file(*) click to toggle source

Prints when a file is added

print_method(*) click to toggle source

Prints when a method is added

print_module(*) click to toggle source

Prints when a module is added