Sha256: 5030295069e3c027527048c32c371e1d72332e8453a363221f5d3ee20e877236
Contents?: true
Size: 494 Bytes
Versions: 38
Compression:
Stored size: 494 Bytes
Contents
<% if @row_headers %> <% @row_headers.each_with_index do |row, index| %> <% if row %> <tr> <th width="150"> <%= row%> </th> <% @explanation.each do |exp| %> <td> <%= exp[index]%> </td> <% end %> </tr> <% end %> <% end %> <% else %> <tr> <th width="150">Plan</th> <td> <p class="plan"> <% @explanation.each do |row| %> <% row.each do |col| %> <%= h(col) %> <% end %> <% end %> </p> </td> </tr> <% end %>
Version data entries
38 entries across 38 versions & 1 rubygems