class Dapp::Dimg::Build::Stage::AfterSetupArtifact

Public Class Methods

new(dimg, next_stage) click to toggle source
Calls superclass method
# File lib/dapp/dimg/build/stage/after_setup_artifact.rb, line 6
def initialize(dimg, next_stage)
  @prev_stage = if dimg.artifact?
    Setup::Setup.new(dimg, self)
  else
    Setup::GAPostSetupPatch.new(dimg, self)
  end
  super
end