Class: RuboCop::Cop::InSpecStyle::DeprecatedAttributes
- Inherits:
-
RuboCop::Cop
- Object
- RuboCop::Cop
- RuboCop::Cop::InSpecStyle::DeprecatedAttributes
- Includes:
- RangeHelp
- Defined in:
- lib/rubocop/cop/inspecstyle/deprecated_attributes.rb
Overview
Constant Summary collapse
- MSG =
'Use `#input` instead of `#attribute`.'
Instance Method Summary collapse
Instance Method Details
#on_send(node) ⇒ Object
27 28 29 30 |
# File 'lib/rubocop/cop/inspecstyle/deprecated_attributes.rb', line 27 def on_send(node) return unless attribute?(node) add_offense(node, location: range(node)) end |