diff --git a/CHANGELOG.md b/CHANGELOG.md index 2965ea51..6a2104f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,7 @@ default of Capistrano 3.4.0 and earlier. Other changes: +* Internal Rubocop cleanups. * `remove` DSL method for removing values like from arrays like `linked_dirs` * `append` DSL method for pushing values like `linked_dirs` [#1447](https://github.com/capistrano/capistrano/pull/1447), diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index ce82fd8c..115a1cd5 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -55,11 +55,11 @@ Currently, the Capistrano Travis build does *not* run the Cucumber suite. This m ## Coding guidelines -This project uses [RuboCop](https://github.com/bbatsov/rubocop) to enforce standard Ruby coding guidelines. Currently we run RuboCop's lint rules only, which check for readability issues like indentation, ambiguity, and useless/unreachable code. +This project uses [RuboCop](https://github.com/bbatsov/rubocop) to enforce standard Ruby coding guidelines. -* Test that your contributions pass with `rake lint` -* The linter is also run as part of the full test suite with `rake` -* Note the Travis build will fail and your PR cannot be merged if the linter finds errors +* Test that your contributions pass with `rake rubocop` +* Rubocop is also run as part of the full test suite with `rake` +* Note the Travis build will fail and your PR cannot be merged if Rubocop finds errors ## Submitting a pull request