Sha256: b16ae3267c7653f89539a717097f012949e4f49954511ba484d18278253336e3

Contents?: true

Size: 420 Bytes

Versions: 1

Compression:

Stored size: 420 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)
          return unless command?(:has_and_belongs_to_many, node)
          add_offense(node, :selector)
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rubocop-0.22.0 lib/rubocop/cop/rails/has_and_belongs_to_many.rb