backlogs/redmine_backlogs

View on GitHub
app/models/rb_issue_history.rb

Summary

Maintainability
F
5 days
Test Coverage

Method rebuild_issue has a Cognitive Complexity of 136 (exceeds 5 allowed). Consider refactoring.
Open

  def self.rebuild_issue(issue, status=nil)
    rb = RbIssueHistory.find_or_initialize_by_issue_id(issue.id)

    rb.history = [{:date => issue.created_on.to_date - 1, :origin => :rebuild}]

Severity: Minor
Found in app/models/rb_issue_history.rb - About 2 days 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 rebuild_issue has 175 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  def self.rebuild_issue(issue, status=nil)
    rb = RbIssueHistory.find_or_initialize_by_issue_id(issue.id)

    rb.history = [{:date => issue.created_on.to_date - 1, :origin => :rebuild}]

Severity: Major
Found in app/models/rb_issue_history.rb - About 7 hrs to fix

    File rb_issue_history.rb has 331 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    require 'pp'
    
    class RbIssueHistory < ActiveRecord::Base
      self.table_name = 'rb_issue_history'
      belongs_to :issue
    Severity: Minor
    Found in app/models/rb_issue_history.rb - About 3 hrs to fix

      Method update_parent has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring.
      Open

        def update_parent(date=nil)
          if (p = self.issue.parent) # if no parent, nothing to do
            date ||= self.history[0][:date] # the after_create calls this function without a parameter, so we know it's the creation call. Get the `yesterday' entry.
            parent_history_index = p.history.history.index{|d| d[:date] == date} # does the parent have an history entry on that date?
            if parent_history_index.nil? # if not, stretch the history to get the values at that date
      Severity: Minor
      Found in app/models/rb_issue_history.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 filter_release has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
      Open

        def filter_release(days)
          # if story is closed, make sure closed information is returned
          # from the end date of the sprint.
          closed_in_sprint = nil
          if self.issue.status.is_closed? && !self.issue.fixed_version.nil? && !self.issue.fixed_version.sprint_start_date.nil?
      Severity: Minor
      Found in app/models/rb_issue_history.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 init_history has 29 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        def init_history
          self.history ||= []
          _issue = self.issue
      
          _statuses ||= self.class.statuses
      Severity: Minor
      Found in app/models/rb_issue_history.rb - About 1 hr to fix

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

          def filter(sprint, status=nil)
            h = Hash[*(self.expand.collect{|d| [d[:date], d]}.flatten)]
            filtered = sprint.days.collect{|d| h[d] ? h[d] : {:date => d, :origin => :filter}}
            
            # see if this issue was closed after sprint end
        Severity: Minor
        Found in app/models/rb_issue_history.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 init_history has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
        Open

          def init_history
            self.history ||= []
            _issue = self.issue
        
            _statuses ||= self.class.statuses
        Severity: Minor
        Found in app/models/rb_issue_history.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 touch_sprint has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

          def touch_sprint
            self.history.select{|h| h[:sprint]}.uniq{|h| "#{h[:sprint]}::#{h[:tracker]}"}.each{|h|
              sprint = RbSprint.find_by_id(h[:sprint])
              next unless sprint
              sprint.burndown.touch!(h[:tracker] == :story ? self.issue.id : nil)
        Severity: Minor
        Found in app/models/rb_issue_history.rb - About 35 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 statuses has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

          def self.statuses
            Hash.new{|h, k|
              s = IssueStatus.find_by_id(k.to_i)
              if s.nil?
                s = IssueStatus.default
        Severity: Minor
        Found in app/models/rb_issue_history.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

              if change[:release].size != 0 && current[:release] != change[:release][0]
                full_journal[date] ||= {}
                full_journal[date][:release] = {:old => current[:release], :new => change[:release][0]}
              end
        Severity: Minor
        Found in app/models/rb_issue_history.rb and 1 other location - About 45 mins to fix
        app/models/rb_issue_history.rb on lines 256..259

        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 39.

        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

              if change[:sprint].size != 0 && current[:sprint] != change[:sprint][0]
                full_journal[date] ||= {}
                full_journal[date][:sprint] = {:old => current[:sprint], :new => change[:sprint][0]}
              end
        Severity: Minor
        Found in app/models/rb_issue_history.rb and 1 other location - About 45 mins to fix
        app/models/rb_issue_history.rb on lines 260..263

        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 39.

        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

              if change.include?(:remaining_hours) && current[:remaining_hours] != change[:remaining_hours]
                full_journal[date] ||= {}
                full_journal[date][:remaining_hours] = {:old => current[:remaining_hours], :new => change[:remaining_hours]}
              end
        Severity: Minor
        Found in app/models/rb_issue_history.rb and 1 other location - About 30 mins to fix
        app/models/rb_issue_history.rb on lines 264..267

        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 32.

        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

              if change.include?(:estimated_hours) && current[:estimated_hours] != change[:estimated_hours]
                full_journal[date] ||= {}
                full_journal[date][:estimated_hours] = {:old => current[:estimated_hours], :new => change[:estimated_hours]}
              end
        Severity: Minor
        Found in app/models/rb_issue_history.rb and 1 other location - About 30 mins to fix
        app/models/rb_issue_history.rb on lines 268..271

        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 32.

        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