new(path, type = nil)
public
Creates a new Store of type that will load
or save to path
# File lib/rdoc/ri/store.rb, line 29
def initialize path, type = nil
@type = type
@path = path
@cache = {
:class_methods => {},
:instance_methods => {},
:attributes => {},
:modules => [],
:ancestors => {},
}
end