Class: AwesomePrint::Formatters::MethodFormatter
- Inherits:
-
BaseFormatter
- Object
- BaseFormatter
- AwesomePrint::Formatters::MethodFormatter
- Defined in:
- lib/awesome_print/formatters/method_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.
-
#method ⇒ Object
readonly
Returns the value of attribute method.
-
#options ⇒ Object
readonly
Returns the value of attribute options.
Instance Method Summary collapse
- #format ⇒ Object
-
#initialize(method, inspector) ⇒ MethodFormatter
constructor
A new instance of MethodFormatter.
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(method, inspector) ⇒ MethodFormatter
Returns a new instance of MethodFormatter.
9 10 11 12 13 |
# File 'lib/awesome_print/formatters/method_formatter.rb', line 9 def initialize(method, inspector) @method = method @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/method_formatter.rb', line 7 def inspector @inspector end |
#method ⇒ Object (readonly)
Returns the value of attribute method.
7 8 9 |
# File 'lib/awesome_print/formatters/method_formatter.rb', line 7 def method @method end |
#options ⇒ Object (readonly)
Returns the value of attribute options.
7 8 9 |
# File 'lib/awesome_print/formatters/method_formatter.rb', line 7 def @options end |
Instance Method Details
#format ⇒ Object
15 16 17 18 19 |
# File 'lib/awesome_print/formatters/method_formatter.rb', line 15 def format name, args, owner = method_tuple(method) "#{colorize(owner, :class)}##{colorize(name, :method)}#{colorize(args, :args)}" end |