Sha256: a508f318d79097679aeafcd55ae2fbd4d4d521bcdd5274729870437e6f51fa54

Contents?: true

Size: 1.06 KB

Versions: 3

Compression:

Stored size: 1.06 KB

Contents

<h3>Rcov Code Coverage Results</h3>

<p>C0 code coverage information.</p>

<img src="rcov.png?<%= Time.now %>">

<p>Total Coverage: <%= @rcov.delete(:global_percent_run) %>% </p>
<table class="sortable">
  <tr>
    <th>File Path</th>
    <th>Percent run</th>
  </tr>
  <% count = 0 %>
  <% @rcov.sort_by{ |k,v| v[:percent_run] }.each do |fname, file| %>
    <tr>
      <td><a href="#<%= fname.gsub(/[^a-z]+/, '_') %>"><%= fname %></a></td>
      <td><%= file[:percent_run] %></td>
    </tr>
    <% count += 1 %>
  <% end %>
</table>

<% @rcov.sort_by{ |k,v| v[:percent_run] }.each do |fname, file| %>
  <h2 id="<%= fname.gsub(/[^a-z]+/, '_') %>"> <%= fname %></h2>
  <div class="rcov_overflow">
    <table class="rcov_code">
    <% file[:lines].each_with_index do |line, index| %>
      <tr>
        <% css_class = line[:was_run] ? "rcov_run" : "rcov_not_run" %>
        <td class="<%= css_class %>"><%= link_to_filename(fname, index + 1, "<pre>#{line[:content]}</pre>") %></td>
      </tr>
    <% end %>
    </table>
  </div>
<% end %>
<p>Generated on <%= Time.now.localtime %></p>	

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
iain-metric_fu-0.1.0 lib/templates/awesome/rcov.html.erb
iain-metric_fu-0.1.1 lib/templates/awesome/rcov.html.erb
iain-metric_fu-0.1.2 lib/templates/awesome/rcov.html.erb