Sha256: f4d576dafbfc9828f327507545bdecadbb21af43f029e08b2697188a487f9f4f

Contents?: true

Size: 770 Bytes

Versions: 10

Compression:

Stored size: 770 Bytes

Contents

<% n = 1 %>
<li class="r<%= n %>">
  <%= all_features_link %>
</li>
<% n = n == 2 ? 1 : 2 %>
<% @items.each do |feature| %>
<li class="r<%= n %>">
  <%= "<a class='toggle'></a>" unless feature.scenarios.empty? %>
  <%= linkify feature, feature.value %>
  <small><%= feature.location %></small>
</li>
<% n = n == 2 ? 1 : 2 %>
<% if feature.scenarios %>
<ul>
  <% feature.scenarios.each_with_index do |scenario,index| %>
  <li class="r<%= n %>">
    <span class='object_link'>
       <a href="<%= url_for(scenario.feature,"scenario_#{index}") %>"
           title="<%= h scenario.value %>">
         <%= h scenario.value %>
       </a>
     </span>
     <small><%= scenario.location %></small>
  </li>
        <% n = n == 2 ? 1 : 2 %>
  <% end %>
</ul>
<% end %>
<% end %>

Version data entries

10 entries across 10 versions & 2 rubygems

Version Path
yard-cucumber-3.0.0 lib/templates/default/fulldoc/html/full_list_features.erb
yard-cucumber2-2.3.4 lib/templates/default/fulldoc/html/full_list_features.erb
yard-cucumber2-2.3.3 lib/templates/default/fulldoc/html/full_list_features.erb
yard-cucumber-2.3.2 lib/templates/default/fulldoc/html/full_list_features.erb
yard-cucumber-2.3.1 lib/templates/default/fulldoc/html/full_list_features.erb
yard-cucumber-2.3.0 lib/templates/default/fulldoc/html/full_list_features.erb
yard-cucumber-2.2.3 lib/templates/default/fulldoc/html/full_list_features.erb
yard-cucumber-2.2.2 lib/templates/default/fulldoc/html/full_list_features.erb
yard-cucumber-2.2.1 lib/templates/default/fulldoc/html/full_list_features.erb
yard-cucumber-2.2.0 lib/templates/default/fulldoc/html/full_list_features.erb