class Dapp::Dimg::Builder::Base

Attributes

dimg[R]

Public Class Methods

new(dimg) click to toggle source
# File lib/dapp/dimg/builder/base.rb, line 6
def initialize(dimg)
  @dimg = dimg
end

Public Instance Methods

before_build_check() click to toggle source
# File lib/dapp/dimg/builder/base.rb, line 10
def before_build_check
end
before_dimg_should_be_built_check() click to toggle source
# File lib/dapp/dimg/builder/base.rb, line 13
def before_dimg_should_be_built_check
end
before_install(_image) click to toggle source
# File lib/dapp/dimg/builder/base.rb, line 20
def before_install(_image)
  raise
end
before_install?() click to toggle source
# File lib/dapp/dimg/builder/base.rb, line 16
def before_install?
  false
end
before_install_checksum() click to toggle source
# File lib/dapp/dimg/builder/base.rb, line 24
def before_install_checksum
  raise
end
before_setup(_image) click to toggle source
# File lib/dapp/dimg/builder/base.rb, line 32
def before_setup(_image)
  raise
end
before_setup?() click to toggle source
# File lib/dapp/dimg/builder/base.rb, line 28
def before_setup?
  false
end
before_setup_checksum() click to toggle source
# File lib/dapp/dimg/builder/base.rb, line 36
def before_setup_checksum
  raise
end
build_artifact(_image) click to toggle source
# File lib/dapp/dimg/builder/base.rb, line 68
def build_artifact(_image)
  raise
end
build_artifact?() click to toggle source
# File lib/dapp/dimg/builder/base.rb, line 64
def build_artifact?
  false
end
build_artifact_checksum() click to toggle source
# File lib/dapp/dimg/builder/base.rb, line 72
def build_artifact_checksum
  raise
end
install(_image) click to toggle source
# File lib/dapp/dimg/builder/base.rb, line 44
def install(_image)
  raise
end
install?() click to toggle source
# File lib/dapp/dimg/builder/base.rb, line 40
def install?
  false
end
install_checksum() click to toggle source
# File lib/dapp/dimg/builder/base.rb, line 48
def install_checksum
  raise
end
setup(_image) click to toggle source
# File lib/dapp/dimg/builder/base.rb, line 56
def setup(_image)
  raise
end
setup?() click to toggle source
# File lib/dapp/dimg/builder/base.rb, line 52
def setup?
  false
end
setup_checksum() click to toggle source
# File lib/dapp/dimg/builder/base.rb, line 60
def setup_checksum
  raise
end