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