Class: DocLoader

Inherits:
Object
  • Object
show all
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

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(options, store)
  @options = options
  @store = store
end

Instance Method Details

#loadObject



9
10
11
# File 'lib/rdoc/generator/doc_loader.rb', line 9

def load
  build_classes
end