summaryrefslogtreecommitdiff
path: root/lib/rdoc/normal_class.rb
blob: f67380e783fbfe17f93668c6e0bd6304c884711d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
require 'rdoc/class_module'

##
# A normal class, neither singleton nor anonymous

class RDoc::NormalClass < RDoc::ClassModule

  ##
  # Appends the superclass, if any, to the included modules.

  def ancestors
    superclass ? super + [superclass] : super
  end

  ##
  # The definition of this class, <tt>class MyClassName</tt>

  def definition
    "class #{full_name}"
  end

  def inspect # :nodoc:
    superclass = @superclass ? " < #{@superclass}" : nil
    "<%s:0x%x class %s%s includes: %p attributes: %p methods: %p aliases: %p>" % [
      self.class, object_id,
      full_name, superclass, @includes, @attributes, @method_list, @aliases
    ]
  end

  def to_s # :nodoc:
    display = "#{self.class.name} #{self.full_name}"
    if superclass
      display << ' < ' << (superclass.is_a?(String) ? superclass : superclass.full_name)
    end
    display << ' -> ' << is_alias_for.to_s if is_alias_for
    display
  end

  def pretty_print q # :nodoc:
    superclass = @superclass ? " < #{@superclass}" : nil

    q.group 2, "[class #{full_name}#{superclass} ", "]" do
      q.breakable
      q.text "includes:"
      q.breakable
      q.seplist @includes do |inc| q.pp inc end

      q.breakable
      q.text "attributes:"
      q.breakable
      q.seplist @attributes do |inc| q.pp inc end

      q.breakable
      q.text "methods:"
      q.breakable
      q.seplist @method_list do |inc| q.pp inc end

      q.breakable
      q.text "aliases:"
      q.breakable
      q.seplist @aliases do |inc| q.pp inc end

      q.breakable
      q.text "comment:"
      q.breakable
      q.pp comment
    end
  end

end