Sha256: 98beffdc589d2243c58cedb34f1f962a0b376a78258e7415dc771df70a46159c

Contents?: true

Size: 421 Bytes

Versions: 2

Compression:

Stored size: 421 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

2 entries across 2 versions & 1 rubygems

Version Path
rubocop-0.19.1 lib/rubocop/cop/rails/has_and_belongs_to_many.rb
rubocop-0.19.0 lib/rubocop/cop/rails/has_and_belongs_to_many.rb