Module: AwesomePrint
- Defined in:
- lib/awesome_print/version.rb,
lib/awesome_print/formatter.rb,
lib/awesome_print/inspector.rb,
lib/awesome_print/ext/mongoid.rb,
lib/awesome_print/ext/nokogiri.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
Overview
Copyright © 2010-2011 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, Logger, MongoMapper, Mongoid, Nokogiri Classes: Formatter, Inspector
Class Attribute Summary collapse
-
.defaults ⇒ Object
Returns the value of attribute defaults.
-
.force_colors ⇒ Object
Returns the value of attribute force_colors.
Class Method Summary collapse
-
.force_colors!(value = true) ⇒ Object
Class accessor to force colorized output (ex. forked subprocess where TERM might be dumb).
- .version ⇒ Object
Class Attribute Details
.defaults ⇒ Object
Returns the value of attribute defaults.
9 10 11 |
# File 'lib/awesome_print/inspector.rb', line 9 def defaults @defaults end |
.force_colors ⇒ Object
Returns the value of attribute force_colors.
9 10 11 |
# File 'lib/awesome_print/inspector.rb', line 9 def force_colors @force_colors end |
Class Method Details
.force_colors!(value = true) ⇒ Object
Class accessor to force colorized output (ex. forked subprocess where TERM might be dumb).
14 15 16 |
# File 'lib/awesome_print/inspector.rb', line 14 def force_colors!(value = true) @force_colors = value end |
.version ⇒ Object
7 8 9 |
# File 'lib/awesome_print/version.rb', line 7 def self.version '1.0.2' end |