From: Michael Campbell Date: 2003-07-17T03:43:45+09:00 Subject: Re: Other languages' features in Ruby > > Processes calling ruby scripts as subprocesses and scraping their output > > might have to be retooled if they start getting new warnings > > that weren't > > there...? > > Nice guess, but I don't think that's an issue... the > warnings seem to go to stderr, not stdout. It was a guess. How about: output = `ruby some_script 2>&1` # ?