activerecord/lib/active_record/associations/collection_association.rb

Summary

Maintainability
D
1 day
Test Coverage

Class CollectionAssociation has 37 methods (exceeds 20 allowed). Consider refactoring.
Open

    class CollectionAssociation < Association # :nodoc:
      # Implements the reader method, e.g. foo.items for Foo.has_many :items
      def reader
        ensure_klass_exists!

Severity: Minor
Found in activerecord/lib/active_record/associations/collection_association.rb - About 4 hrs to fix

    File collection_association.rb has 359 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    require "active_support/core_ext/enumerable"
    
    module ActiveRecord
      module Associations
        # = Active Record Association Collection
    Severity: Minor
    Found in activerecord/lib/active_record/associations/collection_association.rb - About 4 hrs to fix

      Method replace_on_target has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
      Open

              def replace_on_target(record, skip_callbacks, replace:, inversing: false)
                if replace && (!record.new_record? || @replaced_or_added_targets.include?(record))
                  index = @target.index(record)
                end
      
      

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Method _create_record has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
      Open

              def _create_record(attributes, raise = false, &block)
                unless owner.persisted?
                  raise ActiveRecord::RecordNotSaved.new("You cannot call create unless the parent is saved", owner)
                end
      
      
      Severity: Minor
      Found in activerecord/lib/active_record/associations/collection_association.rb - About 55 mins to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Method find has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
      Open

            def find(*args)
              if options[:inverse_of] && loaded?
                args_flatten = args.flatten
                model = scope.klass
      
      
      Severity: Minor
      Found in activerecord/lib/active_record/associations/collection_association.rb - About 55 mins to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Method size has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
      Open

            def size
              if !find_target? || loaded?
                target.size
              elsif @association_ids
                @association_ids.size
      Severity: Minor
      Found in activerecord/lib/active_record/associations/collection_association.rb - About 35 mins to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Method concat_records has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
      Open

              def concat_records(records, raise = false)
                result = true
      
                records.each do |record|
                  raise_on_type_mismatch!(record)
      Severity: Minor
      Found in activerecord/lib/active_record/associations/collection_association.rb - About 35 mins to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Method include_in_memory? has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
      Open

              def include_in_memory?(record)
                if reflection.is_a?(ActiveRecord::Reflection::ThroughReflection)
                  assoc = owner.association(reflection.through_reflection.name)
                  assoc.reader.any? { |source|
                    target_reflection = source.send(reflection.source_reflection.name)
      Severity: Minor
      Found in activerecord/lib/active_record/associations/collection_association.rb - About 35 mins to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Method include? has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

            def include?(record)
              if record.is_a?(reflection.klass)
                if record.new_record?
                  include_in_memory?(record)
                else
      Severity: Minor
      Found in activerecord/lib/active_record/associations/collection_association.rb - About 25 mins to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      There are no issues that match your filters.

      Category
      Status