Method: Metior::GitHub::Repository#load_name_and_description

Defined in:
lib/metior/github/repository.rb

#load_name_and_descriptionObject (private) Also known as: load_description, load_name

Loads both the name and description of the project contained in the repository from GitHub

See Also:



108
109
110
111
112
# File 'lib/metior/github/repository.rb', line 108

def load_name_and_description
  github_repo  = Octokit.repo @path
  @description = github_repo.description
  @name        = github_repo.name
end