Sha256: 4e272318711479da08664b394b7eb35ff6081f3dc6850d561f097148b9042f95
Contents?: true
Size: 1.36 KB
Versions: 2
Compression:
Stored size: 1.36 KB
Contents
# danger-shroud A danger plugin for enforcing code coverage coverage via a Jacoco coverage reports. ![Shroud Banner Image](images/bannerImage.png) ## Installation Add this line to your application's Gemfile: ```ruby gem 'danger-shroud' ``` ## Usage Shroud depends on having a Jacoco coverage report generated for your project. For Android projects, [jacoco-android-gradle-plugin](https://github.com/arturdm/jacoco-android-gradle-plugin) works well. Running shroud with default values: ```ruby # Report coverage of modified files, fail if either total # project coverage or any modified file's coverage is under 90% shroud.report 'path/to/jacoco/report.xml' ``` Running shroud with custom coverage thresholds: ```ruby # Report coverage of modified files, fail if total project coverage is under 80%, # or if any modified file's coverage is under 95% shroud.report 'path/to/jacoco/report.xml', 80, 95 ``` Warn on builds instead of fail: ```ruby # Report coverage of modified files the same as the above example, except the # builds will only warn instead of fail if below thresholds shroud.report 'path/to/jacoco/report.xml', 80, 95, 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.
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
danger-shroud-0.0.4 | README.md |
danger-shroud-0.0.3 | README.md |