Class: UffizziCore::Repo
Defined Under Namespace
Classes: Amazon, Azure, DockerHub, Github, GithubContainerRegistry, Google
Instance Method Summary
collapse
Instance Method Details
#azure? ⇒ Boolean
22
23
24
|
# File 'app/models/uffizzi_core/repo.rb', line 22
def azure?
type == UffizziCore::Repo::Azure.name
end
|
#docker_hub? ⇒ Boolean
18
19
20
|
# File 'app/models/uffizzi_core/repo.rb', line 18
def docker_hub?
type == UffizziCore::Repo::DockerHub.name
end
|
#google? ⇒ Boolean
26
27
28
|
# File 'app/models/uffizzi_core/repo.rb', line 26
def google?
type == UffizziCore::Repo::Google.name
end
|