class YARD::Server::LibraryVersion

def initialize(name, version = nil, yardoc = nil, source = :disk)

Parameters:
  • source (Symbol) -- the location of the files used to build the yardoc.
  • yardoc (String) -- the location of the yardoc file, or nil if it is
  • version (String) -- the specific (usually, but not always, numeric) library
  • name (String) -- the name of the library
def initialize(name, version = nil, yardoc = nil, source = :disk)
  self.name = name
  self.yardoc_file = yardoc
  self.version = version
  self.source = source
end