Sha256: 614c0876578969b5295ea9d755d1c6d6e002acba6a86c700a18bf9c987673c7c
Contents?: true
Size: 1008 Bytes
Versions: 2
Compression:
Stored size: 1008 Bytes
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> <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.2 | lib/templates/awesome/rcov.html.erb |
edouard-metric_fu-1.0.4.5 | lib/templates/awesome/rcov.html.erb |