Sha256: c3ef3720984c67a2368735e4d32e70fb4c95e467bd1cbadd8cac4f1634d3e9bd
Contents?: true
Size: 615 Bytes
Versions: 2
Compression:
Stored size: 615 Bytes
Contents
# Sometimes it's a README fix, or something like that - which isn't relevant for # including in a project's CHANGELOG for example declared_trivial = github.pr_title.include? "#trivial" # Make it more obvious that a PR is a work in progress and shouldn't be merged yet warn("PR is classed as Work in Progress") if github.pr_title.include? "[WIP]" # Warn when there is a big PR warn("Big PR") if git.lines_of_code > 500 # Don't let testing shortcuts get into master by accident fail("fdescribe left in tests") if `grep -r fdescribe specs/`.length > 1 fail("fit left in tests") if `grep -r "fit specs/ `.length > 1
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
xcfit-0.9.0 | XCFitDemo/Dangerfile |
danger-2.0.1 | lib/assets/DangerfileTemplate |