Sha256: f429cb43a7bbb17996a626f0d4919c8324f3f7da07fa4ec8d67c0b54e81054db
Contents?: true
Size: 865 Bytes
Versions: 94
Compression:
Stored size: 865 Bytes
Contents
# frozen_string_literal: true require 'eac_cli/core_ext' module Avm module EacWebappBase0 module Instances module Runners class ApachePath runner_with :help do desc 'Configure Apache path configuration for instance.' end def run if result.error? fatal_error result.to_s else infov 'Result', result.label end end private def apache_path_uncached stereotype_apache_path_class.new(runner_context.call(:instance)) end def result_uncached apache_path.run end def stereotype_apache_path_class "#{runner_context.call(:instance).class.name.deconstantize}::ApachePath".constantize end end end end end end
Version data entries
94 entries across 94 versions & 2 rubygems