Sha256: 9d3f6a968aef20bf5950d044268f04fff281f0a2c2c2e22e846541eea4d4b58f
Contents?: true
Size: 1.16 KB
Versions: 6483
Compression:
Stored size: 1.16 KB
Contents
# frozen_string_literal: true module RuboCop module Cop module Rails # Checks that ActiveRecord aliases are not used. The direct method names # are more clear and easier to read. # # @example # #bad # Book.update_attributes!(author: 'Alice') # # #good # Book.update!(author: 'Alice') class ActiveRecordAliases < Cop MSG = 'Use `%<prefer>s` instead of `%<current>s`.'.freeze ALIASES = { update_attributes: :update, update_attributes!: :update! }.freeze def on_send(node) ALIASES.each do |bad, good| next unless node.method?(bad) add_offense(node, message: format(MSG, prefer: good, current: bad), location: :selector, severity: :warning) break end end alias on_csend on_send def autocorrect(node) lambda do |corrector| corrector.replace( node.loc.selector, ALIASES[node.method_name].to_s ) end end end end end end
Version data entries
6,483 entries across 6,479 versions & 23 rubygems