5 lines
170 B
Ruby
5 lines
170 B
Ruby
# This is required otherwise libxml writes out memory errors to
|
|
# the standard output and exits uncleanly
|
|
LibXML::XML::Error.set_handler do |message|
|
|
raise message
|
|
end
|