Sha256: 387440a25bfc65a4bfe81c4b171cec7643d3a972b9f501720be0a31ff4c4d081
Contents?: true
Size: 868 Bytes
Versions: 2
Compression:
Stored size: 868 Bytes
Contents
<html> <head> <title>Dcov Code Coverage Results</title> <style> <%= inline_css("default.css") %> </style> </head> <body> <h2>Dcov Results</h2> <h3>Documentation coverage information.</h3> <p> Total Files: <%=@dcov[:file_count]%><br /> <% ["Module","Class","Method"].each do |t| %> Total <%=t.pluralize%>: <%=@dcov["total_#{t.pluralize.downcase}".to_sym]%> with <%=@dcov["#{t.downcase}_coverage".to_sym][:coverage]%> coverage.<br /> <% end %> </P> <br/> <% ["Module","Class","Method"].each do |t| %> <h3>Undocumented <%=t.pluralize%>:</h3> <table> <tr> <th><%= t%></th> <th>Location</th> </tr> <%@dcov["#{t.downcase}_coverage".to_sym][:not_covored].each_pair do |k,v| %> <tr> <td><%= k%></td> <td><%= v%></td> </tr> <% end %> </table> <% end %> <p>Generated on <%= Time.now.localtime %></p> </body> </html>
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
mtdewboy-metric_fu-1.1.5.1 | lib/templates/standard/dcov.html.erb |
pjstadig-metric_fu-1.1.5.1 | lib/templates/standard/dcov.html.erb |