Sha256: 206e9f9f3992b907af50651a826f4df5d199b1ca9bf9f8b4961345f05d396178

Contents?: true

Size: 979 Bytes

Versions: 2

Compression:

Stored size: 979 Bytes

Contents

<%= @exception.class.to_s =~ /^[aeiou]/i ? 'An' : 'A' %> <%= @exception.class %> occurred in <%= @kontroller.controller_name %>#<%= @kontroller.action_name %>:

  <%= raw @exception.message %>
  <%= raw @backtrace.first %>

<%
    sections = @sections.map do |section|
      begin
        summary = render(section).strip
        unless summary.blank?
          title = render("title", :title => section).strip
          "#{title}\n\n#{summary.gsub(/^/, "  ")}\n\n"
        end

      rescue Exception => e
        title = render("title", :title => section).strip
        summary = ["ERROR: Failed to generate exception summary:", [e.class.to_s, e.message].join(": "), e.backtrace && e.backtrace.join("\n")].compact.join("\n\n")

        [title, summary.gsub(/^/, "  "), nil].join("\n\n")
      end
    end.join
    sections = sections.force_encoding('UTF-8').encode('UTF-16', :invalid => :replace).encode('UTF-8') if sections.respond_to?(:force_encoding)
%>

<%= raw sections %>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
exception_notification-3.0.0 lib/exception_notifier/views/exception_notifier/exception_notification.text.erb
exception_notification-3.0.0.rc1 lib/exception_notifier/views/exception_notifier/exception_notification.text.erb