codeclimate/codeclimate-rubocop

View on GitHub
config/contents/style/method_call_without_args_parentheses.md

Summary

Maintainability
Test Coverage
This cop checks for unwanted parentheses in parameterless method calls.

### Example:
    # bad
    object.some_method()

    # good
    object.some_method