Sha256: b9fd96f7f5b3dd8fe4f4e8a809d46b134daa8bcc421defe936f50a5f660f6bdb
Contents?: true
Size: 1.29 KB
Versions: 15
Compression:
Stored size: 1.29 KB
Contents
# coding: utf-8 module Fig; end class Fig::Command; end module Fig::Command::Action; end module Fig::Command::Action::Role; end module Fig::Command::Action::Role::HasSubAction attr_accessor :sub_action def sub_action?() true end def check_sub_action_presence() return if sub_action raise 'Bug in code. Sub-action missing.' end def descriptor_requirement() check_sub_action_presence() return sub_action.descriptor_requirement() end def modifies_repository?() check_sub_action_presence() return sub_action.modifies_repository? end def load_base_package?() check_sub_action_presence() return sub_action.load_base_package? end def register_base_package?() check_sub_action_presence() return sub_action.register_base_package? end def apply_config?() check_sub_action_presence() return sub_action.apply_config? end def apply_base_config?() check_sub_action_presence() return sub_action.apply_base_config? end def configure(options) check_sub_action_presence() return sub_action.configure(options) end def execution_context=(context) check_sub_action_presence() sub_action.execution_context = context end def execute() check_sub_action_presence() return sub_action.execute() end end
Version data entries
15 entries across 15 versions & 1 rubygems