module Pod::UserInterface::BuildFailedReport

Public Class Methods

report(command, output) click to toggle source
# File lib/cocoapods-packager/user_interface/build_failed_report.rb, line 5
        def report(command, output)
          <<-EOF
Build command failed: #{command}
Output:
#{output.map { |line| "    #{line}" }.join}
          EOF
        end