Class: RDoc::Stats::Quiet

Inherits:
Object
  • Object
show all
Defined in:
lib/rdoc/stats/quiet.rb

Overview

Stats printer that prints nothing

Direct Known Subclasses

Normal

Instance Method Summary collapse

Constructor Details

#initialize(num_files) ⇒ Quiet

Creates a new Quiet that will print nothing


9
10
11
# File 'lib/rdoc/stats/quiet.rb', line 9

def initialize num_files
  @num_files = num_files
end

Instance Method Details

#begin_addingObject

Prints a message at the beginning of parsing


16
# File 'lib/rdoc/stats/quiet.rb', line 16

def begin_adding(*) end

#done_addingObject

Prints when RDoc is done


56
# File 'lib/rdoc/stats/quiet.rb', line 56

def done_adding(*) end

Prints when an alias is added


21
# File 'lib/rdoc/stats/quiet.rb', line 21

def print_alias(*) end

Prints when an attribute is added


26
# File 'lib/rdoc/stats/quiet.rb', line 26

def print_attribute(*) end

Prints when a class is added


31
# File 'lib/rdoc/stats/quiet.rb', line 31

def print_class(*) end

Prints when a constant is added


36
# File 'lib/rdoc/stats/quiet.rb', line 36

def print_constant(*) end

Prints when a file is added


41
# File 'lib/rdoc/stats/quiet.rb', line 41

def print_file(*) end

Prints when a method is added


46
# File 'lib/rdoc/stats/quiet.rb', line 46

def print_method(*) end

Prints when a module is added


51
# File 'lib/rdoc/stats/quiet.rb', line 51

def print_module(*) end