Module: Pod::UserInterface

Defined in:
lib/cocoapods-multithread-installpod.rb

Class Method Summary collapse

Class Method Details

.wrap_string(string, indent = 0) ⇒ Object



107
108
109
110
111
112
113
114
115
# File 'lib/cocoapods-multithread-installpod.rb', line 107

def wrap_string(string, indent = 0)
  if disable_wrap
    string
  else
    first_space = ' ' * indent
    # indented = CLAide::Helper.wrap_with_indent(string, indent, 9999)
    # first_space + indented
  end
end