Sha256: 64babe4de35f3c020e3c5c0a9eee4c33da036349c86fe371b416c78a2cf68695
Contents?: true
Size: 732 Bytes
Versions: 5
Compression:
Stored size: 732 Bytes
Contents
<html> <head> <title>Source Control Churn Results</title> <style> <%= inline_css("default.css") %> </style> </head> <body> <h1>Source Control Churn Results</h1> <a href="index.html">back to menu</a> <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><%= link_to_filename(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
5 entries across 5 versions & 1 rubygems