Sha256: 793918c45aa3caf69d47b4a808348c1fd42a4f1924a27e47f9e163ec778eded4
Contents?: true
Size: 1.11 KB
Versions: 1
Compression:
Stored size: 1.11 KB
Contents
<!DOCTYPE html> <html lang="ja"> <head> <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> <%= stylesheet("reset", erb.filename) %> <%= stylesheet("coverage", erb.filename) %> <title>C0 Coverage</title> </head> <body> <h1><%= project_name %> C0 Coverage Information</h1> <table> <thead> <tr> <th>Name</th> <th>Total Lines</th> <th>Lines of Code</th> <th>Total Coverage</th> <th>Code Coverage</th> </tr> </thead> <tbody> <%- @files.each do |detail| -%> <tr> <td><%= detail.link %></td> <td><%= detail.total %></td> <td><%= detail.lines_of_code %></td> <td><%= detail.total_coverage %></td> <td><%= detail.code_coverage %></td> </tr> <%- end -%> </tbody> <tfooter> <tr> <td>Total</td> <td><%= total %></td> <td><%= lines_of_code %></td> <td><%= total_coverage %></td> <td><%= code_coverage %></td> </tr> </tfooter> </table> </body> </html>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
coverage-printer-0.1.0 | data/templates/index.html.erb |