My rakefile needs to abort when an html
file can’t be parsed into REXML, so I
can report the error and fix it. But…
Running tidy in a subshell, I can find
no way to access the error message it
sends to std error. I can see it, but
is there a way to get ruby to see it?
This idiom doesn’t seem to work
sh "tidy ... > file" do |ok, res|
if !ok then
# Never runs
end
end
The “result” is an empty string. Std out
goes to the file, as expected, but std
error does not go to res.
Trying to run htree instead, I have some
strange “.so not found” error that I
posted last week, but am unable to decipher
on my own. (Of necessity, ruby is in a
non-standard location, and that seems to be
causing difficulties.)
I need a workaround, or a different strategy.
On Jul 17, 2006, at 11:39 PM, Eric A. wrote:
end
end
You can redirect stderr to a file:
tidy … > file 2> errlog
Maybe that will get you going in the right direction.
Eric A. wrote:
My rakefile needs to abort when an html
file can’t be parsed into REXML, so I
can report the error and fix it. But…
Running tidy in a subshell, I can find
no way to access the error message it
sends to std error. I can see it, but
is there a way to get ruby to see it?
You can:
I’ve used the second method quite successfully. It’s dead simple, but
you’ve got to be careful about different Ruby threads using the library.
It’s quite easy to make it go pop unless you wrap it in a critical
section.
Thanks, Alex. And you, too, “gwtmp01”.
Cripes. I never knew about “2>”! That’s
the easiest solution, in this case.
I appreciate the additional information,
as well. They give me some alternatives
to examine.
You guys saved the day! Thanks much.