Class RI::RiCache
In: ri/ri_cache.rb
Parent: Object

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

Methods

new  

Attributes

toplevel  [R] 

Public Class methods

[Source]

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

[Validate]