Flowdock
method

pretty_print

Importance_0
pretty_print(q) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/rdoc/normal_class.rb, line 39
  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
Register or log in to add new notes.