Sha256: 4a4ea5c758ecb052db8f1a86b61f3fd4e8b38b5edafa9624e37727b4f7989707

Contents?: true

Size: 667 Bytes

Versions: 45

Compression:

Stored size: 667 Bytes

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Rails
      # 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 < Base
        MSG = 'Prefer `has_many :through` to `has_and_belongs_to_many`.'
        RESTRICT_ON_SEND = %i[has_and_belongs_to_many].freeze

        def on_send(node)
          return unless node.command?(:has_and_belongs_to_many)

          add_offense(node.loc.selector)
        end
      end
    end
  end
end

Version data entries

45 entries across 42 versions & 7 rubygems

Version Path
rubocop-rails-2.27.0 lib/rubocop/cop/rails/has_and_belongs_to_many.rb
rubocop-rails-2.26.2 lib/rubocop/cop/rails/has_and_belongs_to_many.rb
rubocop-rails-2.26.1 lib/rubocop/cop/rails/has_and_belongs_to_many.rb
rubocop-rails-2.26.0 lib/rubocop/cop/rails/has_and_belongs_to_many.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.25.1/lib/rubocop/cop/rails/has_and_belongs_to_many.rb
rubocop-rails-2.25.1 lib/rubocop/cop/rails/has_and_belongs_to_many.rb
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/rubocop-rails-2.15.2/lib/rubocop/cop/rails/has_and_belongs_to_many.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/rubocop-rails-2.15.2/lib/rubocop/cop/rails/has_and_belongs_to_many.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/rubocop-rails-2.15.2/lib/rubocop/cop/rails/has_and_belongs_to_many.rb
katalyst-govuk-formbuilder-1.9.2 vendor/bundle/ruby/3.3.0/gems/rubocop-rails-2.25.0/lib/rubocop/cop/rails/has_and_belongs_to_many.rb
rubocop-rails-2.24.1 lib/rubocop/cop/rails/has_and_belongs_to_many.rb
rubocop-rails-2.24.0 lib/rubocop/cop/rails/has_and_belongs_to_many.rb
mlh-rubocop-config-1.0.3 vendor/bundle/ruby/3.2.0/gems/rubocop-rails-2.23.1/lib/rubocop/cop/rails/has_and_belongs_to_many.rb
rubocop-rails-2.23.1 lib/rubocop/cop/rails/has_and_belongs_to_many.rb
rubocop-rails-2.23.0 lib/rubocop/cop/rails/has_and_belongs_to_many.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rubocop-rails-2.15.2/lib/rubocop/cop/rails/has_and_belongs_to_many.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rubocop-rails-2.20.0/lib/rubocop/cop/rails/has_and_belongs_to_many.rb
rubocop-rails-2.22.2 lib/rubocop/cop/rails/has_and_belongs_to_many.rb
rubocop-rails-2.22.1 lib/rubocop/cop/rails/has_and_belongs_to_many.rb
rubocop-rails-2.22.0 lib/rubocop/cop/rails/has_and_belongs_to_many.rb