Class: AwesomePrint::Indentator

Inherits:
Object
  • Object
show all
Defined in:
lib/awesome_print/indentator.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(indentation) ⇒ Indentator

Returns a new instance of Indentator.



6
7
8
9
# File 'lib/awesome_print/indentator.rb', line 6

def initialize(indentation)
  @indentation = indentation
  @shift_width = indentation.freeze
end

Instance Attribute Details

#indentationObject (readonly)

Returns the value of attribute indentation.



4
5
6
# File 'lib/awesome_print/indentator.rb', line 4

def indentation
  @indentation
end

#shift_widthObject (readonly)

Returns the value of attribute shift_width.



4
5
6
# File 'lib/awesome_print/indentator.rb', line 4

def shift_width
  @shift_width
end

Instance Method Details

#indentObject



11
12
13
14
15
16
# File 'lib/awesome_print/indentator.rb', line 11

def indent
  @indentation += shift_width
  yield
ensure
  @indentation -= shift_width
end