Sha256: 201a0a8f564c38370565281d8c29ea6a4a0137028cc9d4a00ee72a502585fbfa

Contents?: true

Size: 1018 Bytes

Versions: 2

Compression:

Stored size: 1018 Bytes

Contents

<h3>Rcov Code Coverage Results</h3>

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

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

<p>Total Coverage: <%= @rcov.delete(:global_percent_run) %>% </p>
<table>
  <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 do |line| %>
      <tr>
        <% css_class = line[:was_run] ? "rcov_run" : "rcov_not_run" %>
        <td class="<%= css_class %>"><pre><%= line[:content] %></pre></td>
      </tr>
    <% end %>
    </table>
  </div>
<% end %>
<p>Generated on <%= Time.now.localtime %></p>	

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
edouard-metric_fu-1.0.4.3 lib/templates/awesome/rcov.html.erb
edouard-metric_fu-1.0.4.4 lib/templates/awesome/rcov.html.erb