Sha256: 59d0d218458e07e63e0a237202731e5dc3f9f942509666f71a8827b70b8f1348
Contents?: true
Size: 1.21 KB
Versions: 2
Compression:
Stored size: 1.21 KB
Contents
<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <title><%= @filename %></title> <link rel="stylesheet" href="css/coco.css" type="text/css" /> </head> <body> <p class="menu"> <a href="index.html">Index</a> | <a href="https://github.com/lkdjiin/coco/wiki">Wiki</a> | <a href="https://github.com/lkdjiin/coco">Source</a> | <a href="http://lkdjiin.github.com/coco/">Web site</a> </p> <h2><%= @filename %></h2> <p class="date"><%= "#{Time.now}" %></p> <table class="source"> <thead> <tr> <th>line num</th> <th>source code</th> <th> <abbr title="Number of time this line has been hit during test."> line hits </abbr> </th> </tr> </thead> <% @lines.each do |num, text, hit|%> <% classes = { nil => 'never', 0 => 'miss' } %> <% hit_class = classes[hit] || 'hit' %> <tr class="<%= hit_class %>"> <td class='line-num'><pre><%= num %> </pre></td> <td class='line-source'><pre><%= text %></pre></td> <td class='line-hits'><%= hit %></td> </tr> <% end%> </table> </body> </html>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
coco-0.15.0 | template/file.erb |
coco-0.14.0 | template/file.erb |