Class: AwesomePrint::Formatters::ClassFormatter
- Inherits:
-
BaseFormatter
- Object
- BaseFormatter
- AwesomePrint::Formatters::ClassFormatter
- Defined in:
- lib/awesome_print/formatters/class_formatter.rb
Constant Summary
Constants inherited from BaseFormatter
BaseFormatter::DEFAULT_LIMIT_SIZE
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.
9 10 11 12 13 |
# File 'lib/awesome_print/formatters/class_formatter.rb', line 9 def initialize(klass, inspector) @klass = klass @inspector = inspector @options = inspector. end |
Instance Attribute Details
#inspector ⇒ Object (readonly)
Returns the value of attribute inspector.
7 8 9 |
# File 'lib/awesome_print/formatters/class_formatter.rb', line 7 def inspector @inspector end |
#klass ⇒ Object (readonly)
Returns the value of attribute klass.
7 8 9 |
# File 'lib/awesome_print/formatters/class_formatter.rb', line 7 def klass @klass end |
#options ⇒ Object (readonly)
Returns the value of attribute options.
7 8 9 |
# File 'lib/awesome_print/formatters/class_formatter.rb', line 7 def @options end |
Instance Method Details
#format ⇒ Object
15 16 17 18 19 20 21 22 |
# File 'lib/awesome_print/formatters/class_formatter.rb', line 15 def format superclass = klass.superclass if superclass colorize("#{klass.inspect} < #{superclass}", :class) else colorize(klass.inspect, :class) end end |