Sha256: 4097fe9182983007a6eada603070e5856e3d7e40e7298feffbd4797d591c6b9a
Contents?: true
Size: 425 Bytes
Versions: 3
Compression:
Stored size: 425 Bytes
Contents
# encoding: utf-8 module Rubocop module Cop module Rails # This cop checks for the use of the has_and_belongs_to_many macro. class HasAndBelongsToMany < Cop MSG = 'Prefer `has_many :through` to `has_and_belongs_to_many`.' def on_send(node) if command?(:has_and_belongs_to_many, node) add_offense(node, :selector) end end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems