Class: AmazingPrint::Formatters::MethodFormatter

Inherits:
BaseFormatter show all
Defined in:
lib/amazing_print/formatters/method_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(method, inspector) ⇒ MethodFormatter

Returns a new instance of MethodFormatter.



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

def initialize(method, inspector)
  @method = method
  @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/method_formatter.rb', line 8

def inspector
  @inspector
end

#methodObject (readonly)

Returns the value of attribute method.



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

def method
  @method
end

#optionsObject (readonly)

Returns the value of attribute options.



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

def options
  @options
end

Instance Method Details

#formatObject



16
17
18
19
20
# File 'lib/amazing_print/formatters/method_formatter.rb', line 16

def format
  name, args, owner = method_tuple(method)

  "#{colorize(owner, :class)}##{colorize(name, :method)}#{colorize(args, :args)}"
end