Class: Dip::Commands::Runners::LocalRunner

Inherits:
Base
  • Object
show all
Defined in:
lib/dip/commands/runners/local_runner.rb

Instance Method Summary collapse

Methods inherited from Base

#initialize

Constructor Details

This class inherits a constructor from Dip::Commands::Runners::Base

Instance Method Details

#executeObject



10
11
12
13
14
15
16
# File 'lib/dip/commands/runners/local_runner.rb', line 10

def execute
  Dip::Command.exec_program(
    command[:command],
    command_args,
    shell: command[:shell]
  )
end