codeclimate/codeclimate-rubocop

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

Summary

Maintainability
Test Coverage
This cop checks for the use of the send method.

### Example:
    # bad
    Foo.send(:bar)
    quuz.send(:fred)

    # good
    Foo.__send__(:bar)
    quuz.public_send(:fred)