class KuberKit::Core::Artifacts::Local
Public Instance Methods
cloned_path()
click to toggle source
# File lib/kuber_kit/core/artifacts/local.rb, line 11 def cloned_path root_path end
root_path()
click to toggle source
# File lib/kuber_kit/core/artifacts/local.rb, line 7 def root_path @root_path || (raise ArgumentError.new("root path was not set. Set it using setup method")) end
setup(root_path)
click to toggle source
# File lib/kuber_kit/core/artifacts/local.rb, line 2 def setup(root_path) @root_path = File.expand_path(root_path) self end