class YARD::RegistryStore

def load!(file = nil)

Other tags:
    Since: - 0.5.1

Other tags:
    See: #load_all -

Returns:
  • (Boolean) - whether the database was loaded

Parameters:
  • file (String, nil) -- the name of the yardoc db to load
def load!(file = nil)
  if load(file)
    load_all
    true
  else
    false
  end
end