Sha256: f14c389ac66738a02f2cca060575069b3a6c081bb32cc6a0f4ecfb20bded0b37
Contents?: true
Size: 1.39 KB
Versions: 3
Compression:
Stored size: 1.39 KB
Contents
<h3>Flog Results</h3> <p><a href='http://ruby.sadi.st/Flog.html'>Flog</a> measures code complexity.</p> <img src="flog.png?<%= Time.now %>"> <h2>Total Flog score for all methods: <%= @flog[:total]%></h2> <h2>Average Flog score for all methods: <%= @flog[:average]%></h2> <table class="sortable"> <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><a href="#<%= page[:path].gsub(/[^a-z]+/, '_') %>"><%= page[:path] %></a></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 id="<%= page[:path].gsub(/[^a-z]+/, '_') %>"><%= link_to_filename page[:path] %></h2> <% page[:scanned_methods].each do |sm| %> <p><%= sm[:name] %></p> <p>Total Score: <%=sm[:score]%></p> <table class="sortable"> <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 |
---|---|
iain-metric_fu-0.1.0 | lib/templates/awesome/flog.html.erb |
iain-metric_fu-0.1.1 | lib/templates/awesome/flog.html.erb |
iain-metric_fu-0.1.2 | lib/templates/awesome/flog.html.erb |