Sha256: e89f0c18099cb1675b80834b3400edd16bb0fec1069b5eb2ce4a8b5e62f7fb08
Contents?: true
Size: 487 Bytes
Versions: 4
Compression:
Stored size: 487 Bytes
Contents
<html> <head> <title>Source Control Churn Results</title> <style> <%= open(File.join(MetricFu::TEMPLATE_DIR, "#{template_name}.css")) { |f| f.read } %> </style> </head> <body> <h1>Source Control Churn Results</h1> <table width="100%" border="1"> <tr><th>File Path</th><th>Times Changed</th></tr> <% @changes.to_a.sort {|x,y| y[1] <=> x[1]}.each do |change| %> <tr><td><%= change[0] %></td><td class='warning'><%= change[1] %></td></tr> <% end %> </table> </body> </html>
Version data entries
4 entries across 4 versions & 2 rubygems