redmine/redmine

View on GitHub
app/models/changeset.rb

Summary

Maintainability
C
1 day
Test Coverage

Method scan_comment_for_issue_ids has a Cognitive Complexity of 27 (exceeds 5 allowed). Consider refactoring.
Open

  def scan_comment_for_issue_ids
    return if comments.blank?

    # keywords used to reference issues
    ref_keywords = Setting.commit_ref_keywords.downcase.split(",").collect(&:strip)
Severity: Minor
Found in app/models/changeset.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

Class Changeset has 23 methods (exceeds 20 allowed). Consider refactoring.
Open

class Changeset < ApplicationRecord
  belongs_to :repository
  belongs_to :user
  has_many :filechanges, :class_name => 'Change', :dependent => :delete_all
  has_and_belongs_to_many :issues
Severity: Minor
Found in app/models/changeset.rb - About 2 hrs to fix

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

      def scan_comment_for_issue_ids
        return if comments.blank?
    
        # keywords used to reference issues
        ref_keywords = Setting.commit_ref_keywords.downcase.split(",").collect(&:strip)
    Severity: Minor
    Found in app/models/changeset.rb - About 1 hr to fix

      Method fix_issue has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
      Open

        def fix_issue(issue, action)
          # the issue may have been updated by the closure of another one (eg. duplicate)
          issue.reload
          # don't change the status is the issue is closed
          return if issue.closed?
      Severity: Minor
      Found in app/models/changeset.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 find_referenced_issue_by_id has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

        def find_referenced_issue_by_id(id)
          return nil if id.blank?
      
          issue = Issue.find_by_id(id.to_i)
          if Setting.commit_cross_project_ref?
      Severity: Minor
      Found in app/models/changeset.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

      There are no issues that match your filters.

      Category
      Status