Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/valeriomazzeo/danger-xcodebuild
Exposes warnings, errors and test results.
https://github.com/valeriomazzeo/danger-xcodebuild
Last synced: 16 days ago
JSON representation
Exposes warnings, errors and test results.
- Host: GitHub
- URL: https://github.com/valeriomazzeo/danger-xcodebuild
- Owner: valeriomazzeo
- License: mit
- Created: 2016-08-01T19:12:04.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-04-06T15:35:16.000Z (over 7 years ago)
- Last Synced: 2024-03-24T00:02:54.844Z (8 months ago)
- Language: Ruby
- Size: 24.4 KB
- Stars: 12
- Watchers: 1
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
- awesome-danger - danger-xcodebuild - Exposes warnings, errors and test results. (Plugins / Ruby (danger))
README
# danger-xcodebuild
[![Gem Version](https://badge.fury.io/rb/danger-xcodebuild.svg)](https://badge.fury.io/rb/danger-xcodebuild) [![Build Status](https://travis-ci.org/valeriomazzeo/danger-xcodebuild.svg?branch=master)](https://travis-ci.org/valeriomazzeo/danger-xcodebuild)
Exposes warnings, errors and test results. It requires a JSON generated using [xcpretty-json-formatter](https://github.com/marcelofabri/xcpretty-json-formatter), to be passed as an argument for it to work.
## Installation
$ gem install danger-xcodebuild
## Usage
xcodebuild.json_file = "./fastlane/reports/xcpretty-json-formatter-results.json"
xcodebuild.parse_warnings # returns number of warnings
xcodebuild.parse_errors # returns number of errors
xcodebuild.parse_tests # returns number of test failures
xcodebuild.perfect_build # returns a bool indicating if the build was perfectMessages are posted by default. You can stop them like this:
xcodebuild.post_messages = false
## Development
1. Clone this repo
2. Run `bundle install` to setup dependencies.
3. Run `bundle exec rake spec` to run the tests.
4. Use `bundle exec guard` to automatically have tests run as you make changes.
5. Make your changes.