summaryrefslogtreecommitdiff
path: root/jni/ruby/lib/rdoc/generator/template/darkfish/_sidebar_extends.rhtml
diff options
context:
space:
mode:
Diffstat (limited to 'jni/ruby/lib/rdoc/generator/template/darkfish/_sidebar_extends.rhtml')
-rw-r--r--jni/ruby/lib/rdoc/generator/template/darkfish/_sidebar_extends.rhtml15
1 files changed, 15 insertions, 0 deletions
diff --git a/jni/ruby/lib/rdoc/generator/template/darkfish/_sidebar_extends.rhtml b/jni/ruby/lib/rdoc/generator/template/darkfish/_sidebar_extends.rhtml
new file mode 100644
index 0000000..2bd8efe
--- /dev/null
+++ b/jni/ruby/lib/rdoc/generator/template/darkfish/_sidebar_extends.rhtml
@@ -0,0 +1,15 @@
+<% unless klass.extends.empty? then %>
+<div id="extends-section" class="nav-section">
+ <h3>Extended With Modules</h3>
+
+ <ul class="link-list">
+ <% klass.each_extend do |ext| %>
+ <% unless String === ext.module then %>
+ <li><a class="extend" href="<%= klass.aref_to ext.module.path %>"><%= ext.module.full_name %></a>
+ <% else %>
+ <li><span class="extend"><%= ext.name %></span>
+ <% end %>
+ <% end %>
+ </ul>
+</div>
+<% end %>