Sha256: 0b1e5017c75914ad4226d762f72ae0b6b558b8ef7d1891f6d5c97e86453df63f
Contents?: true
Size: 1.23 KB
Versions: 5
Compression:
Stored size: 1.23 KB
Contents
<% @tables.each do |table| %> <% if table[:content].any? || table[:resolved].any? %> <table> <thead> <tr> <th width="50"></th> <th width="100%" data-kind="<%= table[:name] %>"> <% if table[:count] > 0 %> <%= table[:count] %> <%= table[:name] %><%= "s" unless table[:count] == 1 %> <% else %> :white_check_mark: <%= random_compliment %> <% end %> </th> </tr> </thead> <tbody> <% table[:content].each do |violation| -%> <tr> <td>:<%= table[:emoji] %>:</td> <td data-sticky="<%= violation.sticky %>"><%= violation.message %></td> </tr> <% end %> <% table[:resolved].each do |message| -%> <tr> <td>:white_check_mark:</td> <td data-sticky="true"><del><%= message %></del></td> </tr> <% end %> </tbody> </table> <% end %> <% end %> <% @markdowns.each do |current| %> <%= current %> <%# the previous line has to be aligned far to the left, otherwise markdown can break easily %> <% end %> <p align="right" data-meta="generated_by_danger" data-base-commit="<%= @base_commit %>" data-head-commit="<%= @head_commit %>" > Generated by :no_entry_sign: <a href="https://github.com/danger/danger/">danger</a> </p>
Version data entries
5 entries across 5 versions & 1 rubygems