Method: Metior::Repository#description

Defined in:
lib/metior/repository.rb

#descriptionString

Returns the description of the project contained in the repository

This will load the description through a VCS specific mechanism if required.

Returns:

  • (String)

    The description of the project in the repository

See Also:



142
143
144
145
# File 'lib/metior/repository.rb', line 142

def description
  load_description if @description.nil?
  @description
end