Class: DocLoader
- Inherits:
-
Object
- Object
- DocLoader
- Defined in:
- lib/rdoc/generator/doc_loader.rb
Overview
DocLoader reads RDoc documentation from RDoc store and builds a hash that will be passed to HTML template or written to JSON file.
Instance Method Summary collapse
-
#initialize(options, store) ⇒ DocLoader
constructor
A new instance of DocLoader.
- #load ⇒ Object
Constructor Details
#initialize(options, store) ⇒ DocLoader
Returns a new instance of DocLoader.
4 5 6 7 |
# File 'lib/rdoc/generator/doc_loader.rb', line 4 def initialize(, store) @options = @store = store end |
Instance Method Details
#load ⇒ Object
9 10 11 |
# File 'lib/rdoc/generator/doc_loader.rb', line 9 def load build_classes end |