Sha256: cdf72542454ce4b7f285c6bf0e3a3b0b4856b646a82ab1c10777e2266286b40d

Contents?: true

Size: 1.09 KB

Versions: 2

Compression:

Stored size: 1.09 KB

Contents

<div class="box_info">
  <% if CodeObjects::ClassObject === object && object.superclass %>
  <dl>
    <dt>Inherits:</dt>
    <dd>
      <span class="inheritName"><%= linkify object.superclass %></span>
      <% if object.superclass.name != :BasicObject %>
        <ul class="fullTree">
          <li><%= linkify P(:Object) %></li>
          <% object.inheritance_tree.reverse.each_with_index do |obj, i| %>
            <li class="next"><%= obj == object ? obj.path : linkify(obj) %></li>
          <% end %>
        </ul>
        <a href="#" class="inheritanceTree">show all</a>
      <% end %>
    </dd>
  </dl>
  <% end %>

  <% [[:class, "Extended by"], [:instance, "Includes"]].each do |scope, name| %>
  <% if (mix = run_verifier(object.mixins(scope))).size > 0 %>
  <dl>
      <dt><%= name %>:</dt>
      <dd><%= mix.sort_by {|o| o.path }.map {|o| linkify(o) }.join(", ") %></dd>
  </dl>
  <% end %>
  <% end %>

  <% if (mixed_into = mixed_into(object)).size > 0 %>
  <dl>
    <dt>Included in:</dt>
    <dd><%= mixed_into.sort_by {|o| o.path }.map {|o| linkify(o) }.join(", ") %></dd>
  </dl>
  <% end %>

</div>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
yard-sketchup-1.4.1 lib/yard-sketchup/templates/default/module/html/box_info.erb
yard-sketchup-1.1.5 lib/yard-sketchup/templates/default/module/html/box_info.erb