scottwillson/racing_on_rails

View on GitHub
app/models/categories/matching.rb

Summary

Maintainability
F
4 days
Test Coverage

Method best_match_in has a Cognitive Complexity of 83 (exceeds 5 allowed). Consider refactoring.
Open

    def best_match_in(event_categories, result_age = nil)
      debug "Category#best_match_in for #{name} in #{event_categories.map(&:name).join(', ')}"

      candidate_categories = event_categories.dup

Severity: Minor
Found in app/models/categories/matching.rb - About 1 day 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 best_match_in has 137 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    def best_match_in(event_categories, result_age = nil)
      debug "Category#best_match_in for #{name} in #{event_categories.map(&:name).join(', ')}"

      candidate_categories = event_categories.dup

Severity: Major
Found in app/models/categories/matching.rb - About 5 hrs to fix

    Method best_match_by_age_in has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
    Open

        def best_match_by_age_in(event_categories, result_age = nil)
          debug "Category#best_match_by_age_in for #{name}, #{result_age} in #{event_categories.map(&:name).join(', ')}"
    
          candidate_categories = event_categories.dup
    
    
    Severity: Minor
    Found in app/models/categories/matching.rb - About 1 hr 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 best_match_by_age_in has 30 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        def best_match_by_age_in(event_categories, result_age = nil)
          debug "Category#best_match_by_age_in for #{name}, #{result_age} in #{event_categories.map(&:name).join(', ')}"
    
          candidate_categories = event_categories.dup
    
    
    Severity: Minor
    Found in app/models/categories/matching.rb - About 1 hr to fix

      Consider simplifying this complex logical expression.
      Open

            if candidate_categories.one? { |category| category.ability_begin == highest_ability && category.gender == gender && (!category.junior? || category.ages.size <= ages.size) }
              highest_ability_category = candidate_categories.detect { |category| category.ability_begin == highest_ability && category.gender == gender && (!category.junior? || category.ages.size <= ages.size) }
              debug "highest ability for gender: #{highest_ability_category.name}"
              return highest_ability_category if highest_ability_category.include?(self)
            end
      Severity: Major
      Found in app/models/categories/matching.rb - About 1 hr to fix

        Avoid too many return statements within this method.
        Open

              return candidate_categories.first if one_match?(candidate_categories)
        Severity: Major
        Found in app/models/categories/matching.rb - About 30 mins to fix

          Avoid too many return statements within this method.
          Open

                  return junior_categories.first if junior_categories.one?
          Severity: Major
          Found in app/models/categories/matching.rb - About 30 mins to fix

            Avoid too many return statements within this method.
            Open

                    return equipment_categories.first if equipment_categories.one?
            Severity: Major
            Found in app/models/categories/matching.rb - About 30 mins to fix

              Avoid too many return statements within this method.
              Open

                    return nil if candidate_categories.empty?
              Severity: Major
              Found in app/models/categories/matching.rb - About 30 mins to fix

                Avoid too many return statements within this method.
                Open

                        return nil if candidate_categories.empty?
                Severity: Major
                Found in app/models/categories/matching.rb - About 30 mins to fix

                  Avoid too many return statements within this method.
                  Open

                          return candidate_categories.first if one_match?(candidate_categories)
                  Severity: Major
                  Found in app/models/categories/matching.rb - About 30 mins to fix

                    Avoid too many return statements within this method.
                    Open

                          return candidate_categories.first if candidate_categories.one? && equipment?
                    Severity: Major
                    Found in app/models/categories/matching.rb - About 30 mins to fix

                      Avoid too many return statements within this method.
                      Open

                              return candidate_categories.first if one_match?(candidate_categories)
                      Severity: Major
                      Found in app/models/categories/matching.rb - About 30 mins to fix

                        Avoid too many return statements within this method.
                        Open

                              return candidate_categories.first if one_match?(candidate_categories)
                        Severity: Major
                        Found in app/models/categories/matching.rb - About 30 mins to fix

                          Avoid too many return statements within this method.
                          Open

                                return candidate_categories.first if one_match?(candidate_categories)
                          Severity: Major
                          Found in app/models/categories/matching.rb - About 30 mins to fix

                            Avoid too many return statements within this method.
                            Open

                                  return candidate_categories.first if one_match?(candidate_categories)
                            Severity: Major
                            Found in app/models/categories/matching.rb - About 30 mins to fix

                              Avoid too many return statements within this method.
                              Open

                                    return nil if candidate_categories.empty?
                              Severity: Major
                              Found in app/models/categories/matching.rb - About 30 mins to fix

                                Avoid too many return statements within this method.
                                Open

                                        return highest_ability_category if highest_ability_category.include?(self)
                                Severity: Major
                                Found in app/models/categories/matching.rb - About 30 mins to fix

                                  Avoid too many return statements within this method.
                                  Open

                                          return ability_category if ability_category.include?(self)
                                  Severity: Major
                                  Found in app/models/categories/matching.rb - About 30 mins to fix

                                    Avoid too many return statements within this method.
                                    Open

                                            return masters_categories.first if masters_categories.one?
                                    Severity: Major
                                    Found in app/models/categories/matching.rb - About 30 mins to fix

                                      Avoid too many return statements within this method.
                                      Open

                                              return nil
                                      Severity: Major
                                      Found in app/models/categories/matching.rb - About 30 mins to fix

                                        Avoid too many return statements within this method.
                                        Open

                                                return nil if candidate_categories.empty?
                                        Severity: Major
                                        Found in app/models/categories/matching.rb - About 30 mins to fix

                                          Avoid too many return statements within this method.
                                          Open

                                                  return highest_age_category if highest_age_category&.include?(self)
                                          Severity: Major
                                          Found in app/models/categories/matching.rb - About 30 mins to fix

                                            Avoid too many return statements within this method.
                                            Open

                                                    return highest_senior_category if highest_senior_category
                                            Severity: Major
                                            Found in app/models/categories/matching.rb - About 30 mins to fix

                                              Avoid too many return statements within this method.
                                              Open

                                                    return candidate_categories.first if one_match?(candidate_categories)
                                              Severity: Major
                                              Found in app/models/categories/matching.rb - About 30 mins to fix

                                                Avoid too many return statements within this method.
                                                Open

                                                      return nil if candidate_categories.empty?
                                                Severity: Major
                                                Found in app/models/categories/matching.rb - About 30 mins to fix

                                                  Avoid too many return statements within this method.
                                                  Open

                                                          return candidate_categories.first if one_match?(candidate_categories)
                                                  Severity: Major
                                                  Found in app/models/categories/matching.rb - About 30 mins to fix

                                                    Avoid too many return statements within this method.
                                                    Open

                                                          return nil if candidate_categories.empty?
                                                    Severity: Major
                                                    Found in app/models/categories/matching.rb - About 30 mins to fix

                                                      Avoid too many return statements within this method.
                                                      Open

                                                            return candidate_categories.first if candidate_categories.size == 1
                                                      Severity: Major
                                                      Found in app/models/categories/matching.rb - About 30 mins to fix

                                                        Avoid too many return statements within this method.
                                                        Open

                                                                return candidate_categories.first if one_match?(candidate_categories)
                                                        Severity: Major
                                                        Found in app/models/categories/matching.rb - About 30 mins to fix

                                                          Avoid too many return statements within this method.
                                                          Open

                                                                return nil if candidate_categories.empty?
                                                          Severity: Major
                                                          Found in app/models/categories/matching.rb - About 30 mins to fix

                                                            Avoid too many return statements within this method.
                                                            Open

                                                                    return highest_ability_category if highest_ability_category.include?(self)
                                                            Severity: Major
                                                            Found in app/models/categories/matching.rb - About 30 mins to fix

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

                                                                  def include?(other, result_age = nil)
                                                                    return false unless other
                                                              
                                                                    abilities_include?(other) &&
                                                                      ages_include?(other, result_age) &&
                                                              Severity: Minor
                                                              Found in app/models/categories/matching.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

                                                              Similar blocks of code found in 2 locations. Consider refactoring.
                                                              Open

                                                                      junior_categories = candidate_categories.select(&:junior?)
                                                                      debug "junior: #{junior_categories.map(&:name).join(', ')}"
                                                                      return junior_categories.first if junior_categories.one?
                                                              
                                                                      candidate_categories = junior_categories if junior_categories.present?
                                                              Severity: Minor
                                                              Found in app/models/categories/matching.rb and 1 other location - About 20 mins to fix
                                                              app/models/categories/matching.rb on lines 102..106

                                                              Duplicated Code

                                                              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                                              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                                              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                                              Tuning

                                                              This issue has a mass of 28.

                                                              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                                              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                                              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                                              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                                              Refactorings

                                                              Further Reading

                                                              Similar blocks of code found in 2 locations. Consider refactoring.
                                                              Open

                                                                      masters_categories = candidate_categories.select(&:masters?)
                                                                      debug "masters?: #{masters_categories.map(&:name).join(', ')}"
                                                                      return masters_categories.first if masters_categories.one?
                                                              
                                                                      candidate_categories = masters_categories if masters_categories.present?
                                                              Severity: Minor
                                                              Found in app/models/categories/matching.rb and 1 other location - About 20 mins to fix
                                                              app/models/categories/matching.rb on lines 94..98

                                                              Duplicated Code

                                                              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                                              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                                              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                                              Tuning

                                                              This issue has a mass of 28.

                                                              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                                              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                                              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                                              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                                              Refactorings

                                                              Further Reading

                                                              Identical blocks of code found in 2 locations. Consider refactoring.
                                                              Open

                                                                    if candidate_categories.size > 1
                                                                      raise "Multiple matches #{candidate_categories.map(&:name)} for #{name}, result age: #{result_age} in #{event_categories.map(&:name).join(', ')}"
                                                              Severity: Minor
                                                              Found in app/models/categories/matching.rb and 1 other location - About 15 mins to fix
                                                              app/models/categories/matching.rb on lines 195..196

                                                              Duplicated Code

                                                              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                                              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                                              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                                              Tuning

                                                              This issue has a mass of 26.

                                                              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                                              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                                              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                                              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                                              Refactorings

                                                              Further Reading

                                                              Identical blocks of code found in 2 locations. Consider refactoring.
                                                              Open

                                                                    if candidate_categories.size > 1
                                                                      raise "Multiple matches #{candidate_categories.map(&:name)} for #{name}, result age: #{result_age} in #{event_categories.map(&:name).join(', ')}"
                                                              Severity: Minor
                                                              Found in app/models/categories/matching.rb and 1 other location - About 15 mins to fix
                                                              app/models/categories/matching.rb on lines 237..238

                                                              Duplicated Code

                                                              Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                                                              Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                                                              When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                                                              Tuning

                                                              This issue has a mass of 26.

                                                              We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                                                              The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                                                              If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                                                              See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                                                              Refactorings

                                                              Further Reading

                                                              There are no issues that match your filters.

                                                              Category
                                                              Status