Class: Producer::Core::Actions::ShellCommand

Inherits:
Producer::Core::Action show all
Defined in:
lib/producer/core/actions/shell_command.rb

Constant Summary

Constants inherited from Producer::Core::Action

Producer::Core::Action::INSPECT_ARGUMENTS_SUM_LEN

Instance Attribute Summary

Attributes inherited from Producer::Core::Action

#arguments, #env, #options

Instance Method Summary collapse

Methods inherited from Producer::Core::Action

#initialize, #to_s

Constructor Details

This class inherits a constructor from Producer::Core::Action

Instance Method Details

#applyObject



14
15
16
# File 'lib/producer/core/actions/shell_command.rb', line 14

def apply
  remote.execute(@command, output, error_output)
end

#nameObject



10
11
12
# File 'lib/producer/core/actions/shell_command.rb', line 10

def name
  'sh'
end

#setupObject



5
6
7
8
# File 'lib/producer/core/actions/shell_command.rb', line 5

def setup
  check_arguments_size! 1
  @command = arguments.first
end