Sha256: df783984139debeafe24916ba17a28fbcd5e2ced0e09f4f7087d5c67bd43b835
Contents?: true
Size: 614 Bytes
Versions: 6
Compression:
Stored size: 614 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><%= link_to_filename(change[0]) %></td><td class='warning'><%= change[1] %></td></tr> <% end %> </table> <p>Generated on <%= Time.now.localtime %></p> </body> </html>
Version data entries
6 entries across 6 versions & 1 rubygems