Sha256: 8a37983197dbb064dc605493d5a07edcdecb2016e14e91c973373036f9d1f2ea
Contents?: true
Size: 590 Bytes
Versions: 17
Compression:
Stored size: 590 Bytes
Contents
<html> <head> <style> <%= inline_css("default.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
17 entries across 17 versions & 5 rubygems