In a ruby file:
When I do system("rspec file_spec.rb")
I get a nice colored output.
When I do this:
result = `rspec file_spec.rb`
puts result
I get no color at all.
Is there any way to preserve the color?
btw, I'm on OSX with Terminal.app if that matters.