-
-
Save bluemont/3269228 to your computer and use it in GitHub Desktop.
Removed require 'cgi' to avoid segmentation fault
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# encoding: utf-8 | |
STDOUT.sync = true | |
STDERR.sync = true | |
require 'pathname' | |
at_exit do | |
if (e = $!) && !e.instance_of?(SystemExit) | |
require "#{ENV['TM_SUPPORT_PATH']}/lib/escape" | |
io = IO.for_fd(ENV['TM_ERROR_FD'].to_i) | |
io.write "<div id='exception_report' class='framed'>\n" | |
io.write "<p id='exception'><strong>#{e.class.name}:</strong> #{e.message.sub(/`(\w+)'/, '‘\1’').sub(/ -- /, ' — ')}</p>\n" | |
io.write "<blockquote><table border='0' cellspacing='4' cellpadding='0'>\n" | |
e.backtrace.each do |b| | |
if b =~ /(.*?):(\d+)(?::in\s*`(.*?)')?/ then | |
file, line, method = $1, $2, $3 | |
url, display_name = '', 'untitled document'; | |
if file != '-' && File.exists?(file) && !ENV['TM_SCRIPT_IS_UNTITLED'] then | |
file = Pathname.new(file).realpath.to_s | |
url = '&url=file://' + e_url(file) | |
display_name = File.basename(file) | |
end | |
io << "<tr><td><a class='near' href='txmt://open?line=#{line + url}'>" | |
io << (method ? "method #{method}" : '<em>at top level</em>') | |
io << "</a></td>\n<td>in <strong>#{display_name}</strong> at line #{line}</td></tr>\n" | |
end | |
end | |
io.write "</table></blockquote></div>" | |
io.flush | |
exit! | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment