Sha256: 63ce062cc2cdc61fdb2365230fe6432d5f9e7b0fb00a233a38503c333ec85d8e
Contents?: true
Size: 579 Bytes
Versions: 9
Compression:
Stored size: 579 Bytes
Contents
<div onClick="toggle('errors_table');"> <h2>Exceptions raised during the analysis (click to see them)</h2 ></div> <div id='errors_table' style='display:none'> <table> <tr> <th>Error</th> <th>Location</th> </tr> <% tracker.errors.each do |warning| %> <tr> <td><%= CGI.escapeHTML warning[:error] %></td> <td> <% if tracker.options[:debug] %> <% warning[:backtrace].each do |line| %> <%= line %><br/> <% end %> <% else %> <%= warning[:backtrace][0] %> <% end %> </td> </tr> <% end %> </table> </div>
Version data entries
9 entries across 9 versions & 1 rubygems