Sha256: d851ae82843ca64ce425e762bf1df344e702c7501b8046ef167381f1fa3ee666
Contents?: true
Size: 621 Bytes
Versions: 22
Compression:
Stored size: 621 Bytes
Contents
# frozen_string_literal: true module RuboCop module Cop module Rails # This cop checks for the use of the has_and_belongs_to_many macro. # # @example # # bad # # has_and_belongs_to_many :ingredients # # # good # # has_many :ingredients, through: :recipe_ingredients class HasAndBelongsToMany < Cop MSG = 'Prefer `has_many :through` to `has_and_belongs_to_many`.' def on_send(node) return unless node.command?(:has_and_belongs_to_many) add_offense(node, location: :selector) end end end end end
Version data entries
22 entries across 22 versions & 2 rubygems