Sha256: 242e51aff25e844407c367a29453bf2bf31fd1ef58ddb60638b1a8f066482898
Contents?: true
Size: 1.14 KB
Versions: 2
Compression:
Stored size: 1.14 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.execute_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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
fig-0.1.81 | lib/fig/command/action/run_command_line.rb |
fig-0.1.79 | lib/fig/command/action/run_command_line.rb |