Class: RDoc::Stats::Quiet
- Inherits:
 - 
      Object
      
        
- Object
 - RDoc::Stats::Quiet
 
 
- Defined in:
 - lib/rdoc/stats/quiet.rb
 
Overview
Stats printer that prints nothing
Direct Known Subclasses
Instance Method Summary collapse
- 
  
    
      #begin_adding  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Prints a message at the beginning of parsing.
 - 
  
    
      #done_adding  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Prints when RDoc is done.
 - 
  
    
      #initialize(num_files)  ⇒ Quiet 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
Creates a new Quiet that will print nothing.
 - 
  
    
      #print_alias  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Prints when an alias is added.
 - 
  
    
      #print_attribute  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Prints when an attribute is added.
 - 
  
    
      #print_class  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Prints when a class is added.
 - 
  
    
      #print_constant  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Prints when a constant is added.
 - 
  
    
      #print_file  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Prints when a file is added.
 - 
  
    
      #print_method  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Prints when a method is added.
 - 
  
    
      #print_module  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Prints when a module is added.
 
Constructor Details
#initialize(num_files) ⇒ Quiet
Creates a new Quiet that will print nothing
      10 11 12  | 
    
      # File 'lib/rdoc/stats/quiet.rb', line 10 def initialize num_files @num_files = num_files end  | 
  
Instance Method Details
#begin_adding ⇒ Object
Prints a message at the beginning of parsing
      17  | 
    
      # File 'lib/rdoc/stats/quiet.rb', line 17 def begin_adding(*) end  | 
  
#done_adding ⇒ Object
Prints when RDoc is done
      57  | 
    
      # File 'lib/rdoc/stats/quiet.rb', line 57 def done_adding(*) end  | 
  
#print_alias ⇒ Object
Prints when an alias is added
      22  | 
    
      # File 'lib/rdoc/stats/quiet.rb', line 22 def print_alias(*) end  | 
  
#print_attribute ⇒ Object
Prints when an attribute is added
      27  | 
    
      # File 'lib/rdoc/stats/quiet.rb', line 27 def print_attribute(*) end  | 
  
#print_class ⇒ Object
Prints when a class is added
      32  | 
    
      # File 'lib/rdoc/stats/quiet.rb', line 32 def print_class(*) end  | 
  
#print_constant ⇒ Object
Prints when a constant is added
      37  | 
    
      # File 'lib/rdoc/stats/quiet.rb', line 37 def print_constant(*) end  | 
  
#print_file ⇒ Object
Prints when a file is added
      42  | 
    
      # File 'lib/rdoc/stats/quiet.rb', line 42 def print_file(*) end  | 
  
#print_method ⇒ Object
Prints when a method is added
      47  | 
    
      # File 'lib/rdoc/stats/quiet.rb', line 47 def print_method(*) end  | 
  
#print_module ⇒ Object
Prints when a module is added
      52  | 
    
      # File 'lib/rdoc/stats/quiet.rb', line 52 def print_module(*) end  |