Sha256: 86a623ec9d3c3a8b09e9179006740c54fe5a25a7aa8d3f25a80ddcbdd7e8ef66
Contents?: true
Size: 597 Bytes
Versions: 21
Compression:
Stored size: 597 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 = 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 pr_title.include? "[WIP]" # Warn when there is a big PR warn("Big PR") if 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
21 entries across 21 versions & 1 rubygems