Sha256: db571903f6aa9583f7a45de2c2a61801fd34eb878f3045c5232d115a68ba6220
Contents?: true
Size: 393 Bytes
Versions: 29
Compression:
Stored size: 393 Bytes
Contents
class Indocker::Repositories::Abstract include Indocker::Concerns::Inspectable attr_reader :name def initialize(name) @name = name end def setup(*args) self end def is_local? self.is_a?(Indocker::Repositories::Local) end def is_git? self.is_a?(Indocker::Repositories::Git) end def is_no_sync? self.is_a?(Indocker::Repositories::NoSync) end end
Version data entries
29 entries across 29 versions & 1 rubygems