Sha256: 04ec4806859c4a617f6ffdaf566b4e4d718881f93019dcb1876a60e445ca8f8b
Contents?: true
Size: 1.13 KB
Versions: 34
Compression:
Stored size: 1.13 KB
Contents
require 'fig/command/action' require 'fig/command/action/role/has_no_sub_action' module Fig; end class Fig::Command; end module Fig::Command::Action; end class Fig::Command::Action::RunCommandLine include Fig::Command::Action include Fig::Command::Action::Role::HasNoSubAction def options() return %w<--> end def descriptor_requirement() return nil end def modifies_repository?() return false end def load_base_package?() return true end def register_base_package?() return true end def apply_config?() return true end def apply_base_config?() return true end def configure(options) @command_line = options.shell_command @descriptor = options.descriptor return end def execute() environment = @execution_context.environment base_package = @execution_context.base_package base_config = @execution_context.base_config environment.expand_command_line( base_package, base_config, @descriptor, @command_line ) do |command| @execution_context.operating_system.plain_or_shell_exec command end # Will never get here. end end
Version data entries
34 entries across 34 versions & 1 rubygems