Sha256: cb2fa6d0161708054bb51cac5ba5705ef58b2e0616459e62411a947ff38041d6
Contents?: true
Size: 596 Bytes
Versions: 10
Compression:
Stored size: 596 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
10 entries across 10 versions & 4 rubygems