Class: Pindo::Plistbuddyexecutable::Plistbuddyindenter

Inherits:
Array
  • Object
show all
Defined in:
lib/pindo/base/plistbuddyexecutable.rb

Overview

Helper class that allows to write to an IO instance taking into account the UI indentation level.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(io = nil) ⇒ Plistbuddyindenter

Init a new Indenter



103
104
105
106
# File 'lib/pindo/base/plistbuddyexecutable.rb', line 103

def initialize(io = nil)
  @io = io
  @indent = ' '
end

Instance Attribute Details

#indentFixnum (readonly)



93
94
95
# File 'lib/pindo/base/plistbuddyexecutable.rb', line 93

def indent
  @indent
end

#ioIO (readonly)



97
98
99
# File 'lib/pindo/base/plistbuddyexecutable.rb', line 97

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.



115
116
117
118
# File 'lib/pindo/base/plistbuddyexecutable.rb', line 115

def <<(value)
  super
  io << "#{indent}#{value}" if io
end