{"id":13994336,"url":"https://github.com/fastlane-community/xcresult","last_synced_at":"2026-02-04T16:11:17.105Z","repository":{"id":48490379,"uuid":"208924276","full_name":"fastlane-community/xcresult","owner":"fastlane-community","description":"Ruby interface for inspecting data and exporting data from Xcode 11 .xcresult files","archived":false,"fork":false,"pushed_at":"2025-11-10T09:05:00.000Z","size":116,"stargazers_count":36,"open_issues_count":6,"forks_count":9,"subscribers_count":2,"default_branch":"master","last_synced_at":"2026-01-04T20:15:26.343Z","etag":null,"topics":["fastlane","xcode11","xcresult"],"latest_commit_sha":null,"homepage":"https://github.com/fastlane-community/xcresult","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fastlane-community.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2019-09-17T00:35:14.000Z","updated_at":"2025-11-10T07:37:43.000Z","dependencies_parsed_at":"2024-08-27T07:25:46.286Z","dependency_job_id":"94f528d4-f10c-4640-afb8-70d108fe29c5","html_url":"https://github.com/fastlane-community/xcresult","commit_stats":{"total_commits":11,"total_committers":3,"mean_commits":"3.6666666666666665","dds":"0.18181818181818177","last_synced_commit":"5f4a6ff65ff5bdb33d75804a31b5e4bbb95bb32f"},"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/fastlane-community/xcresult","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fastlane-community%2Fxcresult","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fastlane-community%2Fxcresult/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fastlane-community%2Fxcresult/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fastlane-community%2Fxcresult/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fastlane-community","download_url":"https://codeload.github.com/fastlane-community/xcresult/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fastlane-community%2Fxcresult/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29089924,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-04T03:31:03.593Z","status":"ssl_error","status_checked_at":"2026-02-04T03:29:50.742Z","response_time":62,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["fastlane","xcode11","xcresult"],"created_at":"2024-08-09T14:02:49.398Z","updated_at":"2026-02-04T16:11:17.090Z","avatar_url":"https://github.com/fastlane-community.png","language":"Ruby","funding_links":[],"categories":["Ruby"],"sub_categories":[],"readme":"# XCResult\n\n[![Twitter: @joshdholtz](https://img.shields.io/badge/contact-@joshdholtz-blue.svg?style=flat)](https://twitter.com/KrauseFx)\n[![License](https://img.shields.io/badge/license-MIT-green.svg?style=flat)](https://github.com/KrauseFx/trainer/blob/master/LICENSE)\n[![Gem](https://img.shields.io/gem/v/xcresult.svg?style=flat)](http://rubygems.org/gems/trainer)\n\nRuby interface for inspecting data and exporting data from Xcode 11 `.xcresult` files\n\n## Installation\n\nAdd this line to your application's Gemfile:\n\n```ruby\ngem 'xcresult'\n```\n\nAnd then execute:\n\n    $ bundle\n\nOr install it yourself as:\n\n    $ gem install xcresult\n\n## Roadmap\n\n- [x] Allow for easy querying of test plan summaires\n- [x] Allow for easy exporting of `.xccovreport` files\n- [ ] Allow for exporting of screenshots\n- [ ] Add full documentation on all classes and methods\n- [ ] Add more and better explain examples\n- [ ] Add tests and improved code coverage\n\n## Usage\n\n### Export .xccovreport files from .xcresult\n\n```rb\nparser = XCResult::Parser.new(path: 'YourProject.xcresult')\nexport_xccovreport_paths = parser.export_xccovreports(destination: './outputs')\n```\n\n### Get test plan summaries from .xcresult\n\n```rb\nparser = XCResult::Parser.new(path: 'YourProject.xcresult')\nsummaries = parser.action_test_plan_summaries\n```\n\n## Development\n\nAfter checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.\n\nTo install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).\n\n## Contributing\n\nBug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/xcresult.\n\n## License\n\nThe gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffastlane-community%2Fxcresult","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffastlane-community%2Fxcresult","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffastlane-community%2Fxcresult/lists"}