Skip to content

Instantly share code, notes, and snippets.

/spec_helper.rb Secret

Created December 1, 2014 13:19
Show Gist options
  • Save anonymous/33a6c99e07ed99872151 to your computer and use it in GitHub Desktop.
Save anonymous/33a6c99e07ed99872151 to your computer and use it in GitHub Desktop.
# stdout, stderr pipes
rout, wout = IO.pipe
rerr, werr = IO.pipe
Process.spawn('rake run_fake_service', :out => wout, :err => werr)
# close write ends so we could read them
wout.close
werr.close
stdout = rout.readlines.join("\n")
stderr = rerr.readlines.join("\n")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment