mongoid/mongoid

View on GitHub
lib/mongoid/fields.rb

Summary

Maintainability
A
3 hrs
Test Coverage

File fields.rb has 256 lines of code (exceeds 250 allowed). Consider refactoring.
Open

require "mongoid/fields/standard"
require "mongoid/fields/foreign_key"
require "mongoid/fields/localized"
require "mongoid/fields/validators"

Severity: Minor
Found in lib/mongoid/fields.rb - About 2 hrs to fix

    Method create_field_getter has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

          def create_field_getter(name, meth, field)
            generated_methods.module_eval do
              re_define_method(meth) do
                raw = read_attribute(name)
                if lazy_settable?(field, raw)
    Severity: Minor
    Found in lib/mongoid/fields.rb - About 45 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 apply_default has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        def apply_default(name)
          unless attributes.key?(name)
            if field = fields[name]
              default = field.eval_default(self)
              unless default.nil? || field.lazy?
    Severity: Minor
    Found in lib/mongoid/fields.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