Donovan Daniels
b1c702e3cd
poorly tested but it worked well enough, I'm sure I'll be patching bugs over the next few weeks Also remove turbo because it sucks Also changed the way we handle hosts in dev
12 lines
279 B
Plaintext
12 lines
279 B
Plaintext
<%# locals: (backtrace:) -%>
|
|
|
|
<ul class="backtrace">
|
|
<% if defined?(exception) %>
|
|
<li><%= exception.class.to_s %> exception raised</li>
|
|
<% end %>
|
|
|
|
<% Rails.backtrace_cleaner.clean(backtrace).each do |b| %>
|
|
<li class="backtrace-line"><%= b %></li>
|
|
<% end %>
|
|
</ul>
|