Module: SProc::ShellType

Included in:
SProc, SProc::SProc::TaskRunner
Defined in:
lib/sproc/core.rb

Overview

Defines the shell under which to invoke the sub-process

Constant Summary collapse

SHELL_TYPES =
[
  # Start the process without any shell
  NONE = 0,
  # Will create a 'bash' instance and run the subprocess
  # within that instance.
  BASH = 1
].freeze