class YARD::Server::LibraryVersion

def prepare!

Raises:
  • (LibraryNotPreparedError) - if the library is not ready to be

Other tags:
    Note: - You should not directly override this method. Instead, implement
def prepare!
  return if ready?
  meth = "load_yardoc_from_#{source}"
  send(meth) if respond_to?(meth, true)
end