Sha256: c64ec7737788c925a39d3bd49e7f49a1e4864a328406208b968c402ad1cb5f46
Contents?: true
Size: 796 Bytes
Versions: 3
Compression:
Stored size: 796 Bytes
Contents
<div class="file_list_container"> <table class="file_list pure-table"> <thead> <tr> <th>File</th> <th>Lines</th> <th>Lines of Code</th> <th>Churns</th> <th>Smells</th> <th>Duplication</th> <th>Complexity</th> <th>Complexity/Method</th> </tr> </thead> <tbody> <% stats.each do |stat| %> <tr> <td><%= link_to_source_file(stat) %></td> <td><%= stat.lines.count %></td> <td><%= stat.lines_of_code %></td> <td><%= stat.churns %></td> <td><%= stat.smells.count %></td> <td><%= stat.duplication %></td> <td><%= stat.complexity %></td> <td><%= stat.complexity_per_method %></td> </tr> <% end %> </tbody> </table> </div>
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
code_poetry-html-0.3.1 | views/file_list.erb |
code_poetry-html-0.3.0 | views/file_list.erb |
code_poetry-html-0.2.0 | views/file_list.erb |