aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/middleware/templates/rescues/_source.erb
blob: 032705c01a737e18785ab067e9a9f90d54dbd0cd (plain) (blame)
1
2
3
4
5
6
7
8
<% if @source_extract %>
Extracted source (around line <strong>#<%= @line_number %></strong>):
<pre>
<% @source_extract.each do |line, source| %>
<%= "#{(@line_number == line) ? "> " : "  "}#{line}: #{source}" -%>
<% end %>
</pre>
<% end %>