Class: AmazingPrint::Formatters::ClassFormatter

Inherits:
BaseFormatter show all
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

Instance Method Summary collapse

Methods inherited from BaseFormatter

#align, #get_limit_size, #indent, #indentation, #indented, #limited, #method_tuple, #outdent, #should_be_limited?

Methods included from Colorize

#colorize

Constructor Details

#initialize(klass, inspector) ⇒ ClassFormatter

Returns a new instance of ClassFormatter.



10
11
12
13
14
# File 'lib/amazing_print/formatters/class_formatter.rb', line 10

def initialize(klass, inspector)
  @klass = klass
  @inspector = inspector
  @options = inspector.options
end

Instance Attribute Details

#inspectorObject (readonly)

Returns the value of attribute inspector.



8
9
10
# File 'lib/amazing_print/formatters/class_formatter.rb', line 8

def inspector
  @inspector
end

#klassObject (readonly)

Returns the value of attribute klass.



8
9
10
# File 'lib/amazing_print/formatters/class_formatter.rb', line 8

def klass
  @klass
end

#optionsObject (readonly)

Returns the value of attribute options.



8
9
10
# File 'lib/amazing_print/formatters/class_formatter.rb', line 8

def options
  @options
end

Instance Method Details

#formatObject



16
17
18
19
20
21
22
23
# File 'lib/amazing_print/formatters/class_formatter.rb', line 16

def format
  superclass = klass.superclass
  if superclass
    colorize("#{klass.inspect} < #{superclass}", :class)
  else
    colorize(klass.inspect, :class)
  end
end