codeclimate/codeclimate-rubocop

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

Summary

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

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

    # good
    def attribute=(value)
    end

    # bad
    def get_attribute
    end

    # good
    def attribute
    end