Sha256: 2df53215c0abf8351fd3e91179d3dda26b35890886fc27fd0c3e3aad0d4e7216
Contents?: true
Size: 888 Bytes
Versions: 18
Compression:
Stored size: 888 Bytes
Contents
<html> <head> <title>Reek Results</title> <style> <%= inline_css("default.css") %> </style> </head> <body> <h1>Reek Results</h1> <p><a href="http://reek.rubyforge.org/">Reek</a> detects common code smells in ruby code.</p> <table> <tr> <th>File Path</th> <th>Method</th> <th>Description</th> <th>Type</th> </tr> <% count = 0 %> <% @reek[:matches].each do |match| %> <% match[:code_smells].each do |smell| %> <tr class='<%= cycle("light", "dark", count) %>'> <td><%= match[:file_path] %></td> <td> <%= smell[:method] %> </td> <td> <%= smell[:message] %> </td> <td> <%= smell[:type] %> </td> </tr> <% count += 1 %> <% end %> <% end %> </table> <p>Generated on <%= Time.now.localtime %></p> </body> </html>
Version data entries
18 entries across 18 versions & 4 rubygems