Module: AwesomePrint

Defined in:
lib/awesome_print/version.rb,
lib/awesome_print/colorize.rb,
lib/awesome_print/formatter.rb,
lib/awesome_print/inspector.rb,
lib/awesome_print/ext/ripple.rb,
lib/awesome_print/ext/sequel.rb,
lib/awesome_print/indentator.rb,
lib/awesome_print/ext/mongoid.rb,
lib/awesome_print/ext/ostruct.rb,
lib/awesome_print/ext/nokogiri.rb,
lib/awesome_print/ext/nobrainer.rb,
lib/awesome_print/core_ext/logger.rb,
lib/awesome_print/ext/action_view.rb,
lib/awesome_print/ext/mongo_mapper.rb,
lib/awesome_print/ext/active_record.rb,
lib/awesome_print/ext/active_support.rb,
lib/awesome_print/formatters/dir_formatter.rb,
lib/awesome_print/formatters/base_formatter.rb,
lib/awesome_print/formatters/file_formatter.rb,
lib/awesome_print/formatters/hash_formatter.rb,
lib/awesome_print/formatters/array_formatter.rb,
lib/awesome_print/formatters/class_formatter.rb,
lib/awesome_print/formatters/method_formatter.rb,
lib/awesome_print/formatters/object_formatter.rb,
lib/awesome_print/formatters/simple_formatter.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


Defined Under Namespace

Modules: ActionView, ActiveRecord, ActiveSupport, Colorize, Formatters, Logger, MongoMapper, Mongoid, NoBrainer, Nokogiri, OpenStruct, Ripple, Sequel Classes: Formatter, Indentator, Inspector

Class Attribute Summary collapse

Class Method Summary collapse

Class Attribute Details

.defaultsObject

Returns the value of attribute defaults.



11
12
13
# File 'lib/awesome_print/inspector.rb', line 11

def defaults
  @defaults
end

.force_colorsObject

Returns the value of attribute force_colors.



11
12
13
# File 'lib/awesome_print/inspector.rb', line 11

def force_colors
  @force_colors
end

Class Method Details

.console?Boolean

Returns:

  • (Boolean)


20
21
22
# File 'lib/awesome_print/inspector.rb', line 20

def console?
  !!(defined?(IRB) || defined?(Pry))
end

.force_colors!(value = true) ⇒ Object

Class accessor to force colorized output (ex. forked subprocess where TERM might be dumb).




16
17
18
# File 'lib/awesome_print/inspector.rb', line 16

def force_colors!(value = true)
  @force_colors = value
end

.irb!Object



28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# File 'lib/awesome_print/inspector.rb', line 28

def irb!
  return unless defined?(IRB)
  unless IRB.version.include?("DietRB")
    IRB::Irb.class_eval do
      def output_value
        ap @context.last_value
      end
    end
  else # MacRuby
    IRB.formatter = Class.new(IRB::Formatter) do
      def inspect_object(object)
        object.ai
      end
    end.new
  end
end

.pry!Object



45
46
47
48
49
# File 'lib/awesome_print/inspector.rb', line 45

def pry!
  if defined?(Pry)
    Pry.print = proc { |output, value| output.puts value.ai }
  end
end

.rails_console?Boolean

Returns:

  • (Boolean)


24
25
26
# File 'lib/awesome_print/inspector.rb', line 24

def rails_console?
  console? && !!(defined?(Rails::Console) || ENV["RAILS_ENV"])
end

.versionObject



7
8
9
# File 'lib/awesome_print/version.rb', line 7

def self.version
  '1.7.0'
end