codeclimate/codeclimate-rubocop

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

Summary

Maintainability
Test Coverage
This cop makes sure that accessor methods are named properly.

### Example:
    # bad
    def set_attribute(value) ...

    # good
    def attribute=(value)

    # bad
    def get_attribute ...

    # good
    def attribute ...