Sha256: 6b6df708a2511d9009ad3ed97439cc12243795b2ea6755f677e56893abb4876d
Contents?: true
Size: 1.16 KB
Versions: 3
Compression:
Stored size: 1.16 KB
Contents
<h3>Flog Results</h3> <p><a href='http://ruby.sadi.st/Flog.html'>Flog</a> measures code complexity.</p> <h2>Total Flog score for all methods: <%= @flog[:total]%></h2> <h2>Average Flog score for all methods: <%= @flog[:average]%></h2> <table> <tr> <th>File</th> <th>Total score</th> <th>Methods</th> <th>Average score</th> <th>Highest score</th> </tr> <% @flog[:pages].each do |page| %> <tr> <td><%= page[:path] %></td> <td><%= page[:score].round %></td> <td><%= page[:scanned_methods].length %></td> <td><%= page[:average_score].round %></td> <td><%= page[:highest_score].round %></td> </tr> <% end %> </table> <% @flog[:pages].each do |page| %> <h2><%= page[:path] %></h2> <% page[:scanned_methods].each do |sm| %> <p><%= sm[:name] %></p> <table> <tr> <th>Score</th> <th>Operator</th> </tr> <% sm[:operators].each do |operator| %> <tr> <td><%= operator[:score] %></td> <td><%= operator[:operator] %></td> </tr> <% end %> </table> <% end %> <% end %> <p>Generated on <%= Time.now.localtime %></p>
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
edouard-metric_fu-1.0.3.3 | lib/templates/awesome/flog.html.erb |
edouard-metric_fu-1.0.3.4 | lib/templates/awesome/flog.html.erb |
edouard-metric_fu-1.0.3.5 | lib/templates/awesome/flog.html.erb |