class Indocker::Artifacts::Remote
Attributes
files[R]
name[R]
Public Class Methods
new(name:, files: [], source_path: nil, target_path: nil)
click to toggle source
# File lib/indocker/artifacts/remote.rb, line 4 def initialize(name:, files: [], source_path: nil, target_path: nil) @name = name @files = build_all_files( files: files, source_path: source_path, target_path: target_path, ) end
Public Instance Methods
build_source_path(path)
click to toggle source
# File lib/indocker/artifacts/remote.rb, line 14 def build_source_path(path) path end