Class: Pod::Executable::Indenter

Inherits:
Array
  • Object
show all
Defined in:
lib/cocoapods/executable.rb

Overview

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(io = nil) ⇒ Indenter

Returns a new instance of Indenter.

Parameters:

  • io (IO) (defaults to: nil)

    @see io



99
100
101
102
# File 'lib/cocoapods/executable.rb', line 99

def initialize(io = nil)
  @io = io
  @indent = ' ' * UI.indentation_level
end

Instance Attribute Details

#indentFixnum

Returns The indentation level of the UI.

Returns:

  • (Fixnum)

    The indentation level of the UI.



91
92
93
# File 'lib/cocoapods/executable.rb', line 91

def indent
  @indent
end

#ioIO

Returns the IO to which the output should be printed.

Returns:

  • (IO)

    the IO to which the output should be printed.



95
96
97
# File 'lib/cocoapods/executable.rb', line 95

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.

Parameters:

  • value (String)

    the output to print.



111
112
113
114
115
# File 'lib/cocoapods/executable.rb', line 111

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