Sha256: 961723eb753aa64f3e3ddc55f5f49d1ee59ae0677e4ec250c8c618ad2206eb63

Contents?: true

Size: 521 Bytes

Versions: 4

Compression:

Stored size: 521 Bytes

Contents

<% n = 1 %>
<% @items.each do |tag| %>
  <li class="r<%= n %>">
	<a class='toggle'></a>
	<%= linkify tag, tag.value %>
	<small><%= tag.all_scenarios.size %></small>
  </li>
	<ul>
	<% tag.features.each do |feature| %>
	<li>
		<%= linkify feature, feature.value %>
		<small><%= feature.location %></small>
	</li>
	<% end %>
	<% tag.scenarios.each do |scenario| %>
	<li>
		<%= linkify scenario.feature, scenario.value %>
		<small><%= scenario.location %></small>
	</li>
	<% end %>
	</ul>
  <% n = n == 2 ? 1 : 2 %>
<% end %>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
cucumber-in-the-yard-1.5.4 lib/templates/default/fulldoc/html/full_list_tags.erb
cucumber-in-the-yard-1.5.3 lib/templates/default/fulldoc/html/full_list_tags.erb
cucumber-in-the-yard-1.5.2 lib/templates/default/fulldoc/html/full_list_tags.erb
cucumber-in-the-yard-1.5.1 lib/templates/default/fulldoc/html/full_list_tags.erb