Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
danger / lib / danger / plugin_support / templates / readme_table.html.erb
Size: Mime:
<% json.each do |plugin| %>

### <%= plugin["instance_name"] %>

<%= plugin["body_md"] %>
<%- plugin["example_code"].each do |example| %>
<blockquote><%= example["title"] %>
  <pre><%= example["text"] %></pre>
</blockquote>
<%- end %>

<%- unless plugin["attributes"].empty? %>
#### Attributes
<%- plugin["attributes"].each do |attribute| %>
`<%= attribute.keys.first %>` - <%= attribute.values.first["write"]["body_md"] %>
<%- end %>
<%- end %>

<%- unless plugin["methods"].empty? %>
#### Methods
<%- plugin["methods"].each do |method| %>
`<%= method["name"] %>` - <%= method["body_md"] %>
<%- end %>
<%- end %>

<% end %>