Module: Kernel (Ruby 2.3.4)

In Files

  • pp.rb

Methods

Class/Module Index [+]

Quicksearch

Kernel

Public Instance Methods

pretty_inspect()

Returns a pretty printed object as a string.

In order to use this method you must first require the PP module:

require 'pp'

See the PP module for more information.

 
               # File pp.rb, line 13
def pretty_inspect
  PP.pp(self, ''.dup)
end