123456789_123456789_123456789_123456789_123456789_

Class: RDoc::Stats::Verbose

Relationships & Source Files
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
self, Normal, Quiet
Instance Chain:
self, Normal, Quiet
Inherits: RDoc::Stats::Normal
Defined in: lib/rdoc/stats/verbose.rb

Overview

::RDoc::Stats printer that prints everything documented, including the documented status

Class Method Summary

Quiet - Inherited

.new

Creates a new Quiet that will print nothing.

Instance Method Summary

Normal - Inherited

#print_file

Prints a file with a progress bar.

#begin_adding, #done_adding

Quiet - Inherited

#begin_adding

Prints a message at the beginning of parsing.

#done_adding

Prints when ::RDoc::RDoc is done.

#print_alias

Prints when an alias is added.

#print_attribute

Prints when an attribute is added.

#print_class

Prints when a class is added.

#print_constant

Prints when a constant is added.

#print_file

Prints when a file is added.

#print_method

Prints when a method is added.

#print_module

Prints when a module is added.

Constructor Details

This class inherits a constructor from RDoc::Stats::Quiet

Instance Method Details

#nodoc(co)

Returns a marker for ::RDoc::CodeObject co being undocumented

[ GitHub ]

  
# File 'lib/rdoc/stats/verbose.rb', line 11

def nodoc co
  " (undocumented)" unless co.documented?
end