gitextract_cr8xe6x0/ ├── .coveralls.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── assets/ │ ├── highlight.pack.js │ └── slather.css ├── bin/ │ └── slather ├── lib/ │ ├── cocoapods_plugin.rb │ ├── slather/ │ │ ├── command/ │ │ │ ├── coverage_command.rb │ │ │ ├── setup_command.rb │ │ │ └── version_command.rb │ │ ├── coverage_file.rb │ │ ├── coverage_info.rb │ │ ├── coverage_service/ │ │ │ ├── cobertura_xml_output.rb │ │ │ ├── coveralls.rb │ │ │ ├── gutter_json_output.rb │ │ │ ├── hardcover.rb │ │ │ ├── html_output.rb │ │ │ ├── json_output.rb │ │ │ ├── llvm_cov_output.rb │ │ │ ├── simple_output.rb │ │ │ └── sonarqube_xml_output.rb │ │ ├── coveralls_coverage.rb │ │ ├── profdata_coverage_file.rb │ │ ├── project.rb │ │ └── version.rb │ └── slather.rb ├── slather.gemspec └── spec/ ├── fixtures/ │ ├── FixtureFramework/ │ │ ├── FixtureFramework.h │ │ ├── FlashExperiment.swift │ │ └── Info.plist │ ├── FixtureFrameworkTests/ │ │ ├── FixtureFrameworkTests.swift │ │ ├── FlashExperimentTests.swift │ │ └── Info.plist │ ├── fixtures/ │ │ ├── Fixtures.swift │ │ ├── Supporting Files/ │ │ │ └── fixtures-Prefix.pch │ │ ├── fixtures.h │ │ ├── fixtures.m │ │ ├── fixtures_cpp.cpp │ │ ├── fixtures_cpp.h │ │ ├── fixtures_m.h │ │ ├── fixtures_m.m │ │ ├── fixtures_mm.h │ │ ├── fixtures_mm.mm │ │ ├── more_files/ │ │ │ ├── Branches.h │ │ │ ├── Branches.m │ │ │ ├── Empty.h │ │ │ ├── Empty.m │ │ │ ├── peekaview.h │ │ │ └── peekaview.m │ │ └── other_fixtures.m │ ├── fixtures.xcodeproj/ │ │ ├── project.pbxproj │ │ ├── project.xcworkspace/ │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ ├── aggregateFixturesTests.xcscheme │ │ ├── fixtures.xcscheme │ │ ├── fixturesTests.xcscheme │ │ ├── fixturesTestsSecond.xcscheme │ │ └── fixturesTwo.xcscheme │ ├── fixtures.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ ├── IDEWorkspaceChecks.plist │ │ └── xcschemes/ │ │ └── fixturesTestsWorkspace.xcscheme │ ├── fixturesTests/ │ │ ├── BranchesTests.m │ │ ├── Supporting Files/ │ │ │ ├── en.lproj/ │ │ │ │ └── InfoPlist.strings │ │ │ └── fixturesTests-Info.plist │ │ ├── fixturesTests.m │ │ ├── fixturesTestsSecond.m │ │ └── peekaviewTests💣.m │ ├── fixturesTwo/ │ │ ├── fixturesTwo.h │ │ └── fixturesTwo.m │ ├── fixtures_html/ │ │ ├── Branches.m.html │ │ ├── BranchesTests.m.html │ │ ├── fixtures.m.html │ │ ├── fixturesTests.m.html │ │ ├── index.html │ │ └── peekaviewTests💣.m.html │ ├── gutter.json │ └── sonarqube-generic-coverage.xml ├── slather/ │ ├── cocoapods_plugin_spec.rb │ ├── coverage_file_spec.rb │ ├── coverage_service/ │ │ ├── cobertura_xml_spec.rb │ │ ├── coveralls_spec.rb │ │ ├── gutter_json_spec.rb │ │ ├── hardcover_spec.rb │ │ ├── html_output_spec.rb │ │ ├── json_spec.rb │ │ ├── llvm_cov_spec.rb │ │ ├── simple_output_spec.rb │ │ └── sonarqube_xml_spec.rb │ ├── profdata_coverage_spec.rb │ └── project_spec.rb └── spec_helper.rb