class Dapp::Dimg::Config::Directive::GitArtifactLocal::Export

Attributes

_as[RW]

Public Instance Methods

_artifact_options() click to toggle source
Calls superclass method Dapp::Dimg::Config::Directive::ArtifactBase::Export#_artifact_options
# File lib/dapp/dimg/config/directive/git_artifact_local.rb, line 37
def _artifact_options
  super.merge(stages_dependencies: stage_dependencies.to_h, as: _as)
end
stage_dependencies(&blk) click to toggle source
# File lib/dapp/dimg/config/directive/git_artifact_local.rb, line 29
def stage_dependencies(&blk)
  @stage_dependencies ||= StageDependencies.new(&blk)
end
validate!() click to toggle source
# File lib/dapp/dimg/config/directive/git_artifact_local.rb, line 33
def validate!
  raise ::Dapp::Error::Config, code: :add_to_required if _to.nil?
end