class LabClient::RegistryRepository

Inspect Helper

Public Instance Methods

inspect() click to toggle source
# File lib/labclient/registry/repository.rb, line 7
def inspect
  "#<RegistryRepository id: #{id}>"
end
project() click to toggle source
# File lib/labclient/registry/repository.rb, line 11
def project
  client.projects.show(project_id)
end
tags() click to toggle source
# File lib/labclient/registry/repository.rb, line 15
def tags
  project_id = collect_project_id
  client.registry.tags(project_id, id)
end