Class: AmazingPrint::Indentator
- Defined in:
- lib/amazing_print/indentator.rb
Instance Attribute Summary collapse
-
#indentation ⇒ Object
readonly
Returns the value of attribute indentation.
-
#shift_width ⇒ Object
readonly
Returns the value of attribute shift_width.
Instance Method Summary collapse
- #indent ⇒ Object
-
#initialize(indentation) ⇒ Indentator
constructor
A new instance of Indentator.
Constructor Details
#initialize(indentation) ⇒ Indentator
Returns a new instance of Indentator.
7 8 9 10 |
# File 'lib/amazing_print/indentator.rb', line 7 def initialize(indentation) @indentation = indentation @shift_width = indentation.freeze end |
Instance Attribute Details
#indentation ⇒ Object (readonly)
Returns the value of attribute indentation.
5 6 7 |
# File 'lib/amazing_print/indentator.rb', line 5 def indentation @indentation end |
#shift_width ⇒ Object (readonly)
Returns the value of attribute shift_width.
5 6 7 |
# File 'lib/amazing_print/indentator.rb', line 5 def shift_width @shift_width end |
Instance Method Details
#indent ⇒ Object
12 13 14 15 16 17 |
# File 'lib/amazing_print/indentator.rb', line 12 def indent @indentation += shift_width yield ensure @indentation -= shift_width end |