Class: Overcommit::Subprocess
- Inherits:
-
Object
- Object
- Overcommit::Subprocess
- Defined in:
- lib/overcommit/subprocess.rb
Overview
Manages execution of a child process, collecting the exit status and standard out/error output.
Defined Under Namespace
Classes: Result
Class Method Summary collapse
-
.spawn(args, options = {}) ⇒ Result
Spawns a new process using the given array of arguments (the first element is the command).
-
.spawn_detached(args) ⇒ Object
Spawns a new process in the background using the given array of arguments (the first element is the command).
Class Method Details
.spawn(args, options = {}) ⇒ Result
Spawns a new process using the given array of arguments (the first element is the command).
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
# File 'lib/overcommit/subprocess.rb', line 30 def spawn(args, = {}) args = win32_prepare_args(args) if OS.windows? process = ChildProcess.build(*args) out, err = assign_output_streams(process) process.duplex = true if [:input] # Make stdin available if needed process.start if [:input] begin process.io.stdin.puts([:input]) rescue StandardError # Silently ignore if the standard input stream of the spawned # process is closed before we get a chance to write to it. This # happens on JRuby a lot. ensure process.io.stdin.close end end process.wait err.rewind out.rewind Result.new(process.exit_code, out.read, err.read) end |
.spawn_detached(args) ⇒ Object
Spawns a new process in the background using the given array of arguments (the first element is the command).
60 61 62 63 64 65 66 67 68 69 |
# File 'lib/overcommit/subprocess.rb', line 60 def spawn_detached(args) args = win32_prepare_args(args) if OS.windows? process = ChildProcess.build(*args) process.detach = true assign_output_streams(process) process.start end |