Sha256: 569fd685e4193aba86e1d790ac1cf39e4a25dfaea604831f381a1b597a2ee74e
Contents?: true
Size: 595 Bytes
Versions: 1
Compression:
Stored size: 595 Bytes
Contents
<html> <head> <title>Source Control Churn Results</title> <style> <%= inline_css("default.css") %> </style> </head> <body> <h1>Source Control Churn Results</h1> <p>Files that change a lot in your project may be bad a sign. This task uses your source control log to identify those files. </p> <table> <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> <p>Generated on <%= Time.now.localtime %></p> </body> </html>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
indirect-metric_fu-0.9.0 | lib/templates/churn.html.erb |