Sha256: c85dcc1a34a69346a47786cc04cb2db380fe2925b1eed9436416c31b3c86426f

Contents?: true

Size: 1 KB

Versions: 148

Compression:

Stored size: 1 KB

Contents

<% found_method = false %>
<% object.inheritance_tree(true)[1..-1].each do |superclass| %>
  <% next if superclass.is_a?(YARD::CodeObjects::Proxy) %>
  <% next if options.embed_mixins.size > 0 && options.embed_mixins_match?(superclass) != false %>
  <% meths = prune_method_listing(superclass.meths(:included => false, :inherited => false)) %>
  <% meths.reject! {|m| object.child(:scope => m.scope, :name => m.name) != nil } %>
  <% meths.reject! {|m| m.is_alias? || m.is_attribute? } %>
  <% next if meths.size == 0 %>
  <% if method_listing.size == 0 && !found_method %><h2>Method Summary</h2><% end %>
  <% found_method = true %>
  <h3 class="inherited">Methods <%= superclass.type == :class ? 'inherited' : 'included' %> from <%= linkify superclass %></h3>
  <p class="inherited"><%=
    meths.sort_by {|o| o.name.to_s }.map do |m|
      name = m.name(true)
      name = name.gsub(/^#/,'') if superclass.type == :module && object.class_mixins.include?(superclass)
      linkify(m, name)
    end.join(", ")
  %></p>
<% end %>

Version data entries

148 entries across 129 versions & 17 rubygems

Version Path
challah-0.6.2 vendor/bundle/gems/yard-0.8.2/templates/default/module/html/inherited_methods.erb
yard-0.8.2.1 templates/default/module/html/inherited_methods.erb
challah-0.6.1 vendor/bundle/gems/yard-0.8.1/templates/default/module/html/inherited_methods.erb
challah-0.6.1 vendor/bundle/gems/yard-0.8.2/templates/default/module/html/inherited_methods.erb
yard-0.8.2 templates/default/module/html/inherited_methods.erb
challah-0.6.0 vendor/bundle/gems/yard-0.8.1/templates/default/module/html/inherited_methods.erb
yard-0.8.1 templates/default/module/html/inherited_methods.erb
yard-0.8.0 templates/default/module/html/inherited_methods.erb