Method: PP::ObjectMixin#pretty_print

Defined in:
lib/pp.rb

#pretty_print(q) ⇒ Object

A default pretty printing method for general objects. It calls #pretty_print_instance_variables to list instance variables.

If self has a customized (redefined) #inspect method, the result of self.inspect is used but it obviously has no line break hints.

This module provides predefined #pretty_print methods for some of the most commonly used built-in classes for convenience.



353
354
355
356
357
358
359
360
361
362
363
364
365
366
# File 'lib/pp.rb', line 353

def pretty_print(q)
  umethod_method = Object.instance_method(:method)
  begin
    inspect_method = umethod_method.bind_call(self, :inspect)
  rescue NameError
  end
  if inspect_method && inspect_method.owner != Kernel
    q.text self.inspect
  elsif !inspect_method && self.respond_to?(:inspect)
    q.text self.inspect
  else
    q.pp_object(self)
  end
end