Sha256: 711707680209da4089495720f15517095e625a983a053efe9cbb8db9c6ca9af5
Contents?: true
Size: 410 Bytes
Versions: 10
Compression:
Stored size: 410 Bytes
Contents
class KuberKit::Core::Artifacts::Local < KuberKit::Core::Artifacts::AbstractArtifact def setup(root_path) @root_path = File.expand_path(root_path) self end def root_path @root_path || (raise ArgumentError.new("root path was not set. Set it using setup method")) end def cloned_path root_path end def sync_description "local" end def cleanup_needed? false end end
Version data entries
10 entries across 10 versions & 1 rubygems