Sha256: 2f89f517c6cf935366ee805149bf23297c8015a3ebc76af91f193da6d743e58d
Contents?: true
Size: 806 Bytes
Versions: 18
Compression:
Stored size: 806 Bytes
Contents
<html> <head> <title>Flay Results</title> <style> <%= inline_css("default.css") %> </style> </head> <body> <h1>Flay Results</h1> <h2>Total Score (lower is better): <%= @flay[:total_score] %></h2> <p><a href='http://ruby.sadi.st/Flay.html'>Flay</a> analyzes ruby code for structural similarities.</p> <table> <tr> <th>Files</th> <th>Matches</th> </tr> <% count = 0 %> <% @flay[:matches].each do |match| %> <tr class='<%= cycle("light", "dark", count) %>'> <td> <% match[:matches].each do |file| %> <%= file[:name] %>:<%= file[:line] %><br /> <% end %> </td> <td><%= match[:reason] %></td> </tr> <% count += 1 %> <% end %> </table> <p>Generated on <%= Time.now.localtime %></p> </body> </html>
Version data entries
18 entries across 18 versions & 4 rubygems