class Indocker::Registries::Abstract
Attributes
repository_name[R]
Public Class Methods
new(repository_name)
click to toggle source
# File lib/indocker/registries/abstract.rb, line 6 def initialize(repository_name) @repository_name = repository_name end
Public Instance Methods
is_local?()
click to toggle source
# File lib/indocker/registries/abstract.rb, line 14 def is_local? self.is_a?(Indocker::Registries::Local) end
setup(*args)
click to toggle source
# File lib/indocker/registries/abstract.rb, line 10 def setup(*args) self end