Class RDoc::RI::Cache
In: ri/cache.rb
Parent: Object

We represent everything know about all ‘ri’ files accessible to this program

Methods

new  

Public Class methods

[Source]

     # File ri/cache.rb, line 177
177:   def initialize(dirs)
178:     # At the top level we have a dummy module holding the
179:     # overall namespace
180:     @toplevel = RDoc::RI::TopLevelEntry.new('', '::', nil)
181: 
182:     dirs.each do |dir|
183:       @toplevel.load_from(dir)
184:     end
185:   end

[Validate]