Flowdock
method

create_template

Importance_0
v5.1.7 - Show latest stable - 0 notes - Class: DebugExceptions
create_template(request, wrapper) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/lib/action_dispatch/middleware/debug_exceptions.rb, line 130
      def create_template(request, wrapper)
        traces = wrapper.traces

        trace_to_show = "Application Trace"
        if traces[trace_to_show].empty? && wrapper.rescue_template != "routing_error"
          trace_to_show = "Full Trace"
        end

        if source_to_show = traces[trace_to_show].first
          source_to_show_id = source_to_show[:id]
        end

        DebugView.new([RESCUES_TEMPLATE_PATH],
          request: request,
          exception: wrapper.exception,
          traces: traces,
          show_source_idx: source_to_show_id,
          trace_to_show: trace_to_show,
          routes_inspector: routes_inspector(wrapper.exception),
          source_extracts: wrapper.source_extracts,
          line_number: wrapper.line_number,
          file: wrapper.file
        )
      end
Register or log in to add new notes.