class Dapp::Dimg::Config::Directive::Artifact

Attributes

_config[R]

Public Class Methods

new(config:, **kwargs, &blk) click to toggle source
Calls superclass method
# File lib/dapp/dimg/config/directive/artifact.rb, line 8
def initialize(config:, **kwargs, &blk)
  @_config = config
  super(**kwargs, &blk)
end

Public Instance Methods

_export() click to toggle source
Calls superclass method
# File lib/dapp/dimg/config/directive/artifact.rb, line 13
def _export
  super do |export|
    export._before ||= @_before
    export._after ||= @_after
    export._config = _config
  end
end