module Pod::UserInterface

Public Class Methods

wrap_string(string, indent = 0) click to toggle source
# 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