CocoaPods/cocoapods-packager

View on GitHub
lib/cocoapods-packager/user_interface/build_failed_report.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Pod
  module UserInterface
    module BuildFailedReport
      class << self
        def report(command, output)
          <<-EOF
Build command failed: #{command}
Output:
#{output.map { |line| "    #{line}" }.join}
          EOF
        end
      end
    end
  end
end