Sha256: b19112b44b036ba82967d9ebe57b2fe3070c496476dbe2fb680f51029abbbf49
Contents?: true
Size: 674 Bytes
Versions: 18
Compression:
Stored size: 674 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> <% count = 0 %> <% @churn[:changes].each do |change| %> <tr> <td><%= change[:file_path] %></td> <td><%= change[:times_changed] %></td> </tr> <% count += 1 %> <% end %> </table> <p>Generated on <%= Time.now.localtime %></p> </body> </html>
Version data entries
18 entries across 18 versions & 4 rubygems