Sha256: a0ae80f5ad57e98d927119c897e055d64db68b86fe742681f429c2487152b881

Contents?: true

Size: 665 Bytes

Versions: 4

Compression:

Stored size: 665 Bytes

Contents

<div class="file_list_container" id="<%= title_id %>">
  <h2>
    <span class="group_name"><%= title %></span>
  </h2>
  <a name="<%= title_id %>"></a>
  <table class="file_list">
    <thead>
      <tr>
        <th>File name</th>
        <th>Deprecations detected</th>
        <th>Examples with deprecations</th>
      </tr>
    </thead>
    <tbody>
      <% source_files.each do |source_file| %>
      <tr>
        <td class="strong"><%= link_to_source_file(source_file) %></td>
        <td><%= source_file[1].count %></td>
        <td><%= source_file[1].inject(0) { |old, val| old += val.count } %></td>
      </tr>
      <% end %>
    </tbody>
  </table>
</div>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
deprecations_detector-0.2.2 lib/deprecations_detector/formatters/html/views/file_list.erb
deprecations_detector-0.2.1 lib/deprecations_detector/formatters/html/views/file_list.erb
deprecations_detector-0.2.0 lib/deprecations_detector/formatters/html/views/file_list.erb
deprecations_detector-0.0.1 lib/deprecations_detector/formatters/html/views/file_list.erb