Class: AwesomePrint::Formatters::SimpleFormatter
- Inherits:
-
BaseFormatter
- Object
- BaseFormatter
- AwesomePrint::Formatters::SimpleFormatter
- Defined in:
- lib/awesome_print/formatters/simple_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.
-
#options ⇒ Object
readonly
Returns the value of attribute options.
-
#string ⇒ Object
readonly
Returns the value of attribute string.
-
#type ⇒ Object
readonly
Returns the value of attribute type.
Instance Method Summary collapse
- #format ⇒ Object
-
#initialize(string, type, inspector) ⇒ SimpleFormatter
constructor
A new instance of SimpleFormatter.
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(string, type, inspector) ⇒ SimpleFormatter
Returns a new instance of SimpleFormatter.
9 10 11 12 13 14 |
# File 'lib/awesome_print/formatters/simple_formatter.rb', line 9 def initialize(string, type, inspector) @string = string @type = type @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/simple_formatter.rb', line 7 def inspector @inspector end |
#options ⇒ Object (readonly)
Returns the value of attribute options.
7 8 9 |
# File 'lib/awesome_print/formatters/simple_formatter.rb', line 7 def @options end |
#string ⇒ Object (readonly)
Returns the value of attribute string.
7 8 9 |
# File 'lib/awesome_print/formatters/simple_formatter.rb', line 7 def string @string end |
#type ⇒ Object (readonly)
Returns the value of attribute type.
7 8 9 |
# File 'lib/awesome_print/formatters/simple_formatter.rb', line 7 def type @type end |
Instance Method Details
#format ⇒ Object
16 17 18 |
# File 'lib/awesome_print/formatters/simple_formatter.rb', line 16 def format colorize(string, type) end |