childprocess icon indicating copy to clipboard operation
childprocess copied to clipboard

Cross-platform Ruby library for managing child processes.

Results 11 childprocess issues
Sort by recently updated
recently updated
newest added

i have this code in a test which works well on macos ```ruby process = ChildProcess.build('mydir/myscript') r, w = IO.pipe process.io.stdout = w process.start w.close expect(r.readline.strip).to eq("starting up...") process.stop expect(r.readline.strip).to...