summaryrefslogtreecommitdiff
path: root/lib/rdoc/generator/template/darkfish/_sidebar_methods.rhtml
blob: 45df08d8fe779e07057b3457bc877333b0a43c1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<% unless klass.method_list.empty? then %>
<!-- Method Quickref -->
<div id="method-list-section" class="nav-section">
  <h3>Methods</h3>

  <ul class="link-list" role="directory">
    <% klass.each_method do |meth| %>
    <li <% if meth.calls_super %>class="calls-super" <% end %>><a href="#<%= meth.aref %>"><%= meth.singleton ? '::' : '#' %><%= h meth.name %></a>
    <% end %>
  </ul>
</div>
<% end %>