Module: Kernel

Defined in:
lib/awesome_print/core_ext/kernel.rb

Overview

Copyright © 2010-2013 Michael Dvorkin

Awesome Print is freely distributable under the terms of MIT license. See LICENSE file or www.opensource.org/licenses/mit-license.php


Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.ap(object, options = {}) ⇒ Object



19
20
21
22
# File 'lib/awesome_print/core_ext/kernel.rb', line 19

def ap(object, options = {})
  puts object.ai(options)
  object unless AwesomePrint.console?
end

Instance Method Details

#ai(options = {}) ⇒ Object Also known as: awesome_inspect



8
9
10
11
12
13
14
15
16
# File 'lib/awesome_print/core_ext/kernel.rb', line 8

def ai(options = {})
  ap = AwesomePrint::Inspector.new(options)
  awesome = ap.awesome self
  if options[:html]
    awesome = "<pre>#{awesome}</pre>"
    awesome = awesome.html_safe if defined? ActiveSupport
  end
  awesome
end