Sha256: 88b25242b283a6e38a265f6d4d578575bfd997a732965fdcf81af826a1cd6db6
Contents?: true
Size: 847 Bytes
Versions: 3
Compression:
Stored size: 847 Bytes
Contents
ActionDispatch::DebugExceptions.class_eval do def render_exception_with_web_console(env, exception) render_exception_without_web_console(env, exception).tap do error = ActionDispatch::ExceptionWrapper.new(env, exception).exception # Get the original exception if ExceptionWrapper decides to follow it. env['web_console.exception'] = error # ActionView::Template::Error bypass ExceptionWrapper original # exception following. The backtrace in the view is generated from # reaching out to original_exception in the view. if error.is_a?(ActionView::Template::Error) env['web_console.exception'] = error.original_exception end end end alias_method :render_exception_without_web_console, :render_exception alias_method :render_exception, :render_exception_with_web_console end
Version data entries
3 entries across 3 versions & 2 rubygems