Class: Fig::Command::Action::RunCommandStatement

Inherits:
Object
  • Object
show all
Includes:
Fig::Command::Action, Fig::Command::Action::Role::HasNoSubAction
Defined in:
lib/fig/command/action/run_command_statement.rb

Constant Summary

Constants included from Fig::Command::Action

EXIT_FAILURE, EXIT_SUCCESS

Instance Attribute Summary

Attributes included from Fig::Command::Action

#execution_context

Instance Method Summary collapse

Methods included from Fig::Command::Action::Role::HasNoSubAction

#sub_action?

Methods included from Fig::Command::Action

#allow_both_descriptor_and_file?, #base_package_can_come_from_descriptor?, #cares_about_asset_options?, #execute_immediately_after_command_line_parse?, #list_dependencies?, #list_variables?, #prepare_repository, #primary_option, #publish?, #remote_operation_necessary?, #reset_environment?, #retrieves_should_happen?

Instance Method Details

#apply_base_config?Boolean

Returns:

  • (Boolean)


36
37
38
# File 'lib/fig/command/action/run_command_statement.rb', line 36

def apply_base_config?()
  return true
end

#apply_config?Boolean

Returns:

  • (Boolean)


32
33
34
# File 'lib/fig/command/action/run_command_statement.rb', line 32

def apply_config?()
  return true
end

#configure(options) ⇒ Object



40
41
42
43
44
45
# File 'lib/fig/command/action/run_command_statement.rb', line 40

def configure(options)
  @extra_argv = options.command_extra_argv
  @descriptor = options.descriptor

  return
end

#descriptor_requirementObject



16
17
18
# File 'lib/fig/command/action/run_command_statement.rb', line 16

def descriptor_requirement()
  return nil
end

#executeObject



47
48
49
50
51
52
53
54
55
56
57
58
59
# File 'lib/fig/command/action/run_command_statement.rb', line 47

def execute()
  environment   = @execution_context.environment
  base_package  = @execution_context.base_package
  base_config   = @execution_context.base_config

  environment.expand_command_statement_from_config(
    base_package, base_config, @descriptor, @extra_argv || []
  ) {
    |command| @execution_context.operating_system.plain_or_shell_exec command
  }

  # Will never get here.
end

#load_base_package?Boolean

Returns:

  • (Boolean)


24
25
26
# File 'lib/fig/command/action/run_command_statement.rb', line 24

def load_base_package?()
  return true
end

#modifies_repository?Boolean

Returns:

  • (Boolean)


20
21
22
# File 'lib/fig/command/action/run_command_statement.rb', line 20

def modifies_repository?()
  return false
end

#optionsObject



12
13
14
# File 'lib/fig/command/action/run_command_statement.rb', line 12

def options()
  return %w<--command-extra-args>
end

#register_base_package?Boolean

Returns:

  • (Boolean)


28
29
30
# File 'lib/fig/command/action/run_command_statement.rb', line 28

def register_base_package?()
  return true
end