Class: AmazingPrint::Formatters::ClassFormatter
- Inherits:
-
BaseFormatter
- Object
- BaseFormatter
- AmazingPrint::Formatters::ClassFormatter
- Defined in:
- lib/amazing_print/formatters/class_formatter.rb
Constant Summary
Constants inherited from BaseFormatter
BaseFormatter::DEFAULT_LIMIT_SIZE, BaseFormatter::INDENT_CACHE
Instance Attribute Summary collapse
-
#inspector ⇒ Object
readonly
Returns the value of attribute inspector.
-
#klass ⇒ Object
readonly
Returns the value of attribute klass.
-
#options ⇒ Object
readonly
Returns the value of attribute options.
Instance Method Summary collapse
- #format ⇒ Object
-
#initialize(klass, inspector) ⇒ ClassFormatter
constructor
A new instance of ClassFormatter.
Methods inherited from BaseFormatter
#align, #get_limit_size, #indent, #indentation, #indented, #limited, #method_tuple, #outdent, #should_be_limited?
Methods included from Colorize
Constructor Details
#initialize(klass, inspector) ⇒ ClassFormatter
Returns a new instance of ClassFormatter.
10 11 12 13 14 15 |
# File 'lib/amazing_print/formatters/class_formatter.rb', line 10 def initialize(klass, inspector) super() @klass = klass @inspector = inspector @options = inspector. end |
Instance Attribute Details
#inspector ⇒ Object (readonly)
Returns the value of attribute inspector.
8 9 10 |
# File 'lib/amazing_print/formatters/class_formatter.rb', line 8 def inspector @inspector end |
#klass ⇒ Object (readonly)
Returns the value of attribute klass.
8 9 10 |
# File 'lib/amazing_print/formatters/class_formatter.rb', line 8 def klass @klass end |
#options ⇒ Object (readonly)
Returns the value of attribute options.
8 9 10 |
# File 'lib/amazing_print/formatters/class_formatter.rb', line 8 def @options end |
Instance Method Details
#format ⇒ Object
17 18 19 20 21 22 23 24 |
# File 'lib/amazing_print/formatters/class_formatter.rb', line 17 def format superclass = klass.superclass if superclass colorize("#{klass.inspect} < #{superclass}", :class) else colorize(klass.inspect, :class) end end |