File: children.erb

package info (click to toggle)
ruby-enumerable-statistics 2.0.7%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,132 kB
  • sloc: ruby: 2,220; ansic: 1,921; javascript: 408; makefile: 8; sh: 4
file content (8 lines) | stat: -rwxr-xr-x 291 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
<h2>Defined Under Namespace</h2>
<p class="children">
  <% @inner.each do |name, list| %>
    <% if list.size > 0 %>
      <strong class="<%= name %>"><%= name.to_s.capitalize %>:</strong> <%= list.map {|child| linkify(child, child.name(true)) }.join(", ") %>
    <% end %>
  <% end %>
</p>