Sha256: 095c5e3cd55843b72e5ce0549ce876dcb4e9ced6528ad6f4456f83cf911f0d1c

Contents?: true

Size: 946 Bytes

Versions: 5

Compression:

Stored size: 946 Bytes

Contents

<html>
<head>
	<title>Reek Results</title>
	<style>
	<%= inline_css("default.css") %>	
	</style>
</head>

<body>
	<h1>Reek Results</h1>
  <a href="index.html">back to menu</a>
	<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><%= link_to_filename(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

5 entries across 5 versions & 1 rubygems

Version Path
kjeldahl-metric_fu-1.1.5.1 lib/templates/standard/reek.html.erb
kjeldahl-metric_fu-1.1.5.2 lib/templates/standard/reek.html.erb
kjeldahl-metric_fu-1.1.5.3 lib/templates/standard/reek.html.erb
kjeldahl-metric_fu-1.1.5.4 lib/templates/standard/reek.html.erb
kjeldahl-metric_fu-1.1.5 lib/templates/standard/reek.html.erb