mongodb/mongoid

View on GitHub
lib/mongoid/contextual/memory.rb

Summary

Maintainability
D
1 day
Test Coverage

Class Memory has 51 methods (exceeds 20 allowed). Consider refactoring.
Open

    class Memory
      include Enumerable
      include Aggregable::Memory
      include Association::EagerLoadable
      include Queryable
Severity: Major
Found in lib/mongoid/contextual/memory.rb - About 7 hrs to fix

    Method retrieve_value_at_path has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
    Open

          def retrieve_value_at_path(document, field_path)
            return if field_path.blank? || !document
            segment, remaining = field_path.to_s.split('.', 2)
    
            curr = if document.is_a?(Document)
    Severity: Minor
    Found in lib/mongoid/contextual/memory.rb - About 3 hrs 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

    File memory.rb has 293 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    require "mongoid/contextual/aggregable/memory"
    require "mongoid/association/eager_loadable"
    
    module Mongoid
      module Contextual
    Severity: Minor
    Found in lib/mongoid/contextual/memory.rb - About 3 hrs to fix

      There are no issues that match your filters.

      Category
      Status