class Dapp::Dimg::Artifact
Public Instance Methods
after_stages_build!()
click to toggle source
# File lib/dapp/dimg/artifact.rb, line 8 def after_stages_build! end
artifact?()
click to toggle source
# File lib/dapp/dimg/artifact.rb, line 19 def artifact? true end
last_stage_class()
click to toggle source
# File lib/dapp/dimg/artifact.rb, line 27 def last_stage_class Build::Stage::BuildArtifact end
name()
click to toggle source
# File lib/dapp/dimg/artifact.rb, line 4 def name dapp.consistent_uniq_slugify(config._name) unless config._name.nil? end
should_be_built?()
click to toggle source
# File lib/dapp/dimg/artifact.rb, line 23 def should_be_built? false end
stage_should_be_introspected_after_build?(name)
click to toggle source
# File lib/dapp/dimg/artifact.rb, line 15 def stage_should_be_introspected_after_build?(name) dapp.options[:introspect_artifact_stage] == name end
stage_should_be_introspected_before_build?(name)
click to toggle source
# File lib/dapp/dimg/artifact.rb, line 11 def stage_should_be_introspected_before_build?(name) dapp.options[:introspect_artifact_before] == name end