we4tech/flexi-model

View on GitHub

Showing 5 of 5 total issues

Method _cast has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
Open

    def _cast(_value, _type)
      return _value if _value.nil?

      case _type
        when :decimal, :float
Severity: Minor
Found in lib/flexi_model/fields.rb - About 2 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

Method assign_attributes has 30 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    def assign_attributes(args)
      _all_keys          = args.keys
      _multi_params_keys = _all_keys.select { |k| k.to_s.match(/\([\w]+\)/) }
      _normal_keys       = _all_keys - _multi_params_keys

Severity: Minor
Found in lib/flexi_model/fields.rb - About 1 hr to fix

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

        def assign_attributes(args)
          _all_keys          = args.keys
          _multi_params_keys = _all_keys.select { |k| k.to_s.match(/\([\w]+\)/) }
          _normal_keys       = _all_keys - _multi_params_keys
    
    
    Severity: Minor
    Found in lib/flexi_model/fields.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 flexi_field has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

          def flexi_field(name, type, options = { })
            accessible = options.delete(:accessible)
            default    = options.delete(:default)
            singular   = options.delete(:singular) || name.to_s.singularize
            plural     = options.delete(:plural) || name.to_s.pluralize
    Severity: Minor
    Found in lib/flexi_model/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

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

          def _build_habtm_class_accessors(_class_name, method_name, _fields, self_ref)
            _column_name = if self_ref
              "first_id"
            else
              "#{_fields.first}_id"
    Severity: Minor
    Found in lib/flexi_model/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

    Severity
    Category
    Status
    Source
    Language