code_buddy 0.0.3 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile.lock
CHANGED
@@ -20,7 +20,7 @@
|
|
20
20
|
|
21
21
|
<% traces.each do |name, trace| %>
|
22
22
|
<div id="<%= name.gsub /\s/, '-' %>" style="display: <%= name == "Application Trace" ? 'block' : 'none' %>;">
|
23
|
-
<pre><code><%= trace.enum_with_index.collect { |line, index| link_to line, "code_buddy/stack/#{index}" }.join("\n")
|
23
|
+
<pre><code><%= trace.enum_with_index.collect { |line, index| link_to line, "code_buddy/stack/#{index}" }.join("\n") -%></code></pre>
|
24
24
|
</div>
|
25
25
|
<% end %>
|
26
26
|
</div>
|
data/lib/code_buddy/version.rb
CHANGED