Sha256: e2c05d5cf8154b88b30d0ecc48d36511f4347ddee0215b7e262f616f6469dfa1

Contents?: true

Size: 420 Bytes

Versions: 24

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

24 entries across 24 versions & 2 rubygems

Version Path
rubocop-0.25.0 lib/rubocop/cop/rails/has_and_belongs_to_many.rb
rubocop-0.24.1 lib/rubocop/cop/rails/has_and_belongs_to_many.rb
rubocop-0.24.0 lib/rubocop/cop/rails/has_and_belongs_to_many.rb
rubocop-0.23.0 lib/rubocop/cop/rails/has_and_belongs_to_many.rb