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 56
def initialize path, type = nil
@dry_run = false
@type = type
@path = path
@encoding = nil
@cache = {
:ancestors => {},
:attributes => {},
:class_methods => {},
:encoding => @encoding,
:instance_methods => {},
:modules => [],
}
end