Sha256: 3e519186380757cae5eaaab758a4c5ea94e3498602226c4576db38b36531bdda
Contents?: true
Size: 568 Bytes
Versions: 15
Compression:
Stored size: 568 Bytes
Contents
<html> <head> <style> <%= inline_css("flog.css") %> </style> </head> <body> <p>Score: <%= score %></p> <% scanned_methods.each do |sm| %> <p><strong><%= sm.name %> (<%= sm.score %>)</strong></p> <table> <tr><th>Score</th><th>Operator</th></tr> <% sm.operators.each_with_index do |operator, count| %> <tr class='<%= cycle("light", "dark", count) %>'> <td class='score'><%= sprintf(SCORE_FORMAT, operator.score) %></td> <td class='score'><%= operator.operator %></td> </tr> <% end %> </table> <% end %> </body> </html>
Version data entries
15 entries across 15 versions & 1 rubygems