├── .gitignore ├── .rocket.yml ├── .swift-version ├── .travis.yml ├── Dangerfile.swift ├── Gemfile ├── Gemfile.lock ├── Images └── DangerXCodeSummary.png ├── Package.resolved ├── Package.swift ├── README.md ├── Sources ├── DangerDependencies │ └── Fake.swift └── DangerXCodeSummary │ ├── CompilerMessageParser.swift │ ├── FilePathParser.swift │ ├── MissingFileErrorParser.swift │ ├── Result.swift │ ├── SymbolsErrorsParser.swift │ ├── TestFailuresParser.swift │ └── XCodeSummary.swift └── Tests ├── DangerXCodeSummaryTests ├── CompilerMessageParserTests.swift ├── FilePathParserTests.swift ├── Fixtures │ ├── CompilerErrorJSON.swift │ ├── DuplicatesJSON.swift │ ├── ErrorsJSON.swift │ ├── FailedTestsJSON.swift │ ├── FilterWariningsJSON.swift │ ├── JSONFiles.swift │ ├── ReportTestJSON.swift │ ├── TestsSummaryJSON.swift │ └── WarningsJSON.swift ├── MissingFileErrorParserTests.swift ├── TestFailuresParserTests.swift ├── XCTestManifests.swift └── XCodeSummaryTests.swift └── LinuxMain.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-meloni/danger-swift-xcodesummary/HEAD/.gitignore -------------------------------------------------------------------------------- /.rocket.yml: -------------------------------------------------------------------------------- 1 | after: 2 | - push -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 5.1 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-meloni/danger-swift-xcodesummary/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dangerfile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-meloni/danger-swift-xcodesummary/HEAD/Dangerfile.swift -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-meloni/danger-swift-xcodesummary/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-meloni/danger-swift-xcodesummary/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Images/DangerXCodeSummary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-meloni/danger-swift-xcodesummary/HEAD/Images/DangerXCodeSummary.png -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-meloni/danger-swift-xcodesummary/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-meloni/danger-swift-xcodesummary/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-meloni/danger-swift-xcodesummary/HEAD/README.md -------------------------------------------------------------------------------- /Sources/DangerDependencies/Fake.swift: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Sources/DangerXCodeSummary/CompilerMessageParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-meloni/danger-swift-xcodesummary/HEAD/Sources/DangerXCodeSummary/CompilerMessageParser.swift -------------------------------------------------------------------------------- /Sources/DangerXCodeSummary/FilePathParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-meloni/danger-swift-xcodesummary/HEAD/Sources/DangerXCodeSummary/FilePathParser.swift -------------------------------------------------------------------------------- /Sources/DangerXCodeSummary/MissingFileErrorParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-meloni/danger-swift-xcodesummary/HEAD/Sources/DangerXCodeSummary/MissingFileErrorParser.swift -------------------------------------------------------------------------------- /Sources/DangerXCodeSummary/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-meloni/danger-swift-xcodesummary/HEAD/Sources/DangerXCodeSummary/Result.swift -------------------------------------------------------------------------------- /Sources/DangerXCodeSummary/SymbolsErrorsParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-meloni/danger-swift-xcodesummary/HEAD/Sources/DangerXCodeSummary/SymbolsErrorsParser.swift -------------------------------------------------------------------------------- /Sources/DangerXCodeSummary/TestFailuresParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-meloni/danger-swift-xcodesummary/HEAD/Sources/DangerXCodeSummary/TestFailuresParser.swift -------------------------------------------------------------------------------- /Sources/DangerXCodeSummary/XCodeSummary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-meloni/danger-swift-xcodesummary/HEAD/Sources/DangerXCodeSummary/XCodeSummary.swift -------------------------------------------------------------------------------- /Tests/DangerXCodeSummaryTests/CompilerMessageParserTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-meloni/danger-swift-xcodesummary/HEAD/Tests/DangerXCodeSummaryTests/CompilerMessageParserTests.swift -------------------------------------------------------------------------------- /Tests/DangerXCodeSummaryTests/FilePathParserTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-meloni/danger-swift-xcodesummary/HEAD/Tests/DangerXCodeSummaryTests/FilePathParserTests.swift -------------------------------------------------------------------------------- /Tests/DangerXCodeSummaryTests/Fixtures/CompilerErrorJSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-meloni/danger-swift-xcodesummary/HEAD/Tests/DangerXCodeSummaryTests/Fixtures/CompilerErrorJSON.swift -------------------------------------------------------------------------------- /Tests/DangerXCodeSummaryTests/Fixtures/DuplicatesJSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-meloni/danger-swift-xcodesummary/HEAD/Tests/DangerXCodeSummaryTests/Fixtures/DuplicatesJSON.swift -------------------------------------------------------------------------------- /Tests/DangerXCodeSummaryTests/Fixtures/ErrorsJSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-meloni/danger-swift-xcodesummary/HEAD/Tests/DangerXCodeSummaryTests/Fixtures/ErrorsJSON.swift -------------------------------------------------------------------------------- /Tests/DangerXCodeSummaryTests/Fixtures/FailedTestsJSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-meloni/danger-swift-xcodesummary/HEAD/Tests/DangerXCodeSummaryTests/Fixtures/FailedTestsJSON.swift -------------------------------------------------------------------------------- /Tests/DangerXCodeSummaryTests/Fixtures/FilterWariningsJSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-meloni/danger-swift-xcodesummary/HEAD/Tests/DangerXCodeSummaryTests/Fixtures/FilterWariningsJSON.swift -------------------------------------------------------------------------------- /Tests/DangerXCodeSummaryTests/Fixtures/JSONFiles.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-meloni/danger-swift-xcodesummary/HEAD/Tests/DangerXCodeSummaryTests/Fixtures/JSONFiles.swift -------------------------------------------------------------------------------- /Tests/DangerXCodeSummaryTests/Fixtures/ReportTestJSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-meloni/danger-swift-xcodesummary/HEAD/Tests/DangerXCodeSummaryTests/Fixtures/ReportTestJSON.swift -------------------------------------------------------------------------------- /Tests/DangerXCodeSummaryTests/Fixtures/TestsSummaryJSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-meloni/danger-swift-xcodesummary/HEAD/Tests/DangerXCodeSummaryTests/Fixtures/TestsSummaryJSON.swift -------------------------------------------------------------------------------- /Tests/DangerXCodeSummaryTests/Fixtures/WarningsJSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-meloni/danger-swift-xcodesummary/HEAD/Tests/DangerXCodeSummaryTests/Fixtures/WarningsJSON.swift -------------------------------------------------------------------------------- /Tests/DangerXCodeSummaryTests/MissingFileErrorParserTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-meloni/danger-swift-xcodesummary/HEAD/Tests/DangerXCodeSummaryTests/MissingFileErrorParserTests.swift -------------------------------------------------------------------------------- /Tests/DangerXCodeSummaryTests/TestFailuresParserTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-meloni/danger-swift-xcodesummary/HEAD/Tests/DangerXCodeSummaryTests/TestFailuresParserTests.swift -------------------------------------------------------------------------------- /Tests/DangerXCodeSummaryTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-meloni/danger-swift-xcodesummary/HEAD/Tests/DangerXCodeSummaryTests/XCTestManifests.swift -------------------------------------------------------------------------------- /Tests/DangerXCodeSummaryTests/XCodeSummaryTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-meloni/danger-swift-xcodesummary/HEAD/Tests/DangerXCodeSummaryTests/XCodeSummaryTests.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f-meloni/danger-swift-xcodesummary/HEAD/Tests/LinuxMain.swift --------------------------------------------------------------------------------