module Pod::ErrorUtil

Public Class Methods

error_report(command, output) click to toggle source
# File lib/cocoapods-framework/util/error_util.rb, line 4
def error_report(command, output)
  UI.puts "<<-EOF
  Build command failed: #{command}
  Output:
  #{output.map { |line| "    #{line}" }.join}
            EOF"
end