Sha256: 9c70e6cf6a00d3063205da51c72788fb71797ac4f3e0980355569e4af60979b5
Contents?: true
Size: 721 Bytes
Versions: 18
Compression:
Stored size: 721 Bytes
Contents
<html> <head> <title>Roodi Results</title> <style> <%= inline_css("default.css") %> </style> </head> <body> <h1>Roodi Results</h1> <p><a href="http://roodi.rubyforge.org/">Roodi</a> parses your Ruby code and warns you about design issues you have based on the checks that is has configured.</p> <table> <tr> <th>File Path</th> <th>Warning</th> </tr> <% count = 0 %> <% @roodi[:problems].each do |problem| %> <tr class='<%= cycle("light", "dark", count) %>'> <td><%= problem[:file] %>:<%= problem[:line] %></td> <td><%= problem[:problem] %></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