Sha256: 768427585921d27696cb7130167e7aa08c223140565379ddbc8aadeffda71c32
Contents?: true
Size: 803 Bytes
Versions: 50
Compression:
Stored size: 803 Bytes
Contents
<% sections.each do |(section_key, section_name, section_description, configs)| %> <h2 id="<%=section_key%>"><%=section_name%></h2> <%= "<p>#{section_description}</p>" unless section_description.nil? %> <dl class="clamshell-list"> <% configs.each do |config|%> <!-- ********** <%= config[:key] %> ********** --> <dt id="<%= config[:key].gsub('.', '-') %>"><%=config[:key]%></dt> <dd> <table class="specs"> <tbody> <tr> <th>Type</th> <td><%=config[:type]%></td> </tr> <tr> <th>Default</th> <td><%=config[:default]%></td> </tr> <tr> <th>Environ variable</th> <td><code><%=config[:env_var]%></code></td> </tr> </tbody> </table> <p><%=config[:description]%></p> </dd> <% end %> </dl> <% end %>
Version data entries
50 entries across 50 versions & 2 rubygems