view app/views/pastes/show.html.erb @ 83:ae360c3b0bb0

Disable explain when using jruby because it's not supported. The patch for this support exist but for some reason still not included in latest release of the jdbc adapter. Reference: https://github.com/jruby/activerecord-jdbc-adapter/pull/206
author Edho Arief <edho@myconan.net>
date Mon, 15 Oct 2012 03:45:18 -0700
parents 285cce9725bf
children d100218b96c9
line wrap: on
line source

<% provide :title, 'Show' %>
<div class="page-header">
  <h1>Paste</h1>
</div>
<pre class="prettyprint linenums"><%= @paste.paste.gsub(/^$/, ' ') %></pre>

<ul class="nav nav-pills">
  <li><%= link_to 'Raw', paste_path(@paste, :txt) %></li>
  <li><%= link_to 'New paste based on this', root_path(:base => @paste.id) %></li>
  <li><%= link_to 'More Paste', root_path %></li>
</ul>