Class: GCPT::Executable::Indenter
- Inherits:
-
Array
- Object
- Array
- GCPT::Executable::Indenter
- Defined in:
- lib/gcpt/utils/executable.rb
Overview
Helper class that allows to write to an IO instance taking into account the UI indentation level.
Instance Attribute Summary collapse
-
#indent ⇒ Fixnum
readonly
The indentation level of the UI.
-
#io ⇒ IO
readonly
The IO to which the output should be printed.
Instance Method Summary collapse
-
#<<(value) ⇒ void
Stores a portion of the output and prints it to the IO instance.
-
#initialize(io = nil) ⇒ Indenter
constructor
Init a new Indenter.
Constructor Details
#initialize(io = nil) ⇒ Indenter
Init a new Indenter
212 213 214 215 |
# File 'lib/gcpt/utils/executable.rb', line 212 def initialize(io = nil) @io = io @indent = '' end |
Instance Attribute Details
#indent ⇒ Fixnum (readonly)
Returns The indentation level of the UI.
202 203 204 |
# File 'lib/gcpt/utils/executable.rb', line 202 def indent @indent end |
#io ⇒ IO (readonly)
Returns the IO to which the output should be printed.
206 207 208 |
# File 'lib/gcpt/utils/executable.rb', line 206 def io @io end |
Instance Method Details
#<<(value) ⇒ void
This method returns an undefined value.
Stores a portion of the output and prints it to the IO instance.
224 225 226 227 |
# File 'lib/gcpt/utils/executable.rb', line 224 def <<(value) super io << "#{indent}#{value}" if io end |