Module: Kernel
- Defined in:
- lib/pp.rb
Class Method Summary collapse
-
.pp(*objs) ⇒ Object
prints arguments in pretty form.
Instance Method Summary collapse
-
#pretty_inspect ⇒ Object
Returns a pretty printed object as a string.
Class Method Details
.pp(*objs) ⇒ Object
prints arguments in pretty form.
pp returns argument(s).
602 603 604 605 606 607 |
# File 'lib/pp.rb', line 602 def pp(*objs) objs.each {|obj| PP.pp(obj) } objs.size <= 1 ? objs.first : objs end |
Instance Method Details
#pretty_inspect ⇒ Object
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.
595 596 597 |
# File 'lib/pp.rb', line 595 def pretty_inspect PP.pp(self, ''.dup) end |