expertiza/expertiza

View on GitHub
app/models/response_map.rb

Summary

Maintainability
A
2 hrs
Test Coverage
A
94%

Assignment Branch Condition size for assessments_for is too high. [29.29/15]
Open

  def self.assessments_for(team)
    responses = []
    # stime = Time.now
    if team
      @array_sort = []
Severity: Minor
Found in app/models/response_map.rb by rubocop

This cop checks that the ABC size of methods is not higher than the configured maximum. The ABC size is based on assignments, branches (method calls), and conditions. See http://c2.com/cgi/wiki?AbcMetric

Method has too many lines. [21/10]
Open

  def self.assessments_for(team)
    responses = []
    # stime = Time.now
    if team
      @array_sort = []
Severity: Minor
Found in app/models/response_map.rb by rubocop

This cop checks if the length of a method exceeds some maximum value. Comment lines can optionally be ignored. The maximum allowed length is configurable.

Method assessments_for has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
Open

  def self.assessments_for(team)
    responses = []
    # stime = Time.now
    if team
      @array_sort = []
Severity: Minor
Found in app/models/response_map.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

Do not prefix reader method names with get_.
Open

  def get_all_versions
Severity: Minor
Found in app/models/response_map.rb by rubocop

This cop makes sure that accessor methods are named properly.

Example:

# bad
def set_attribute(value)
end

# good
def attribute=(value)
end

# bad
def get_attribute
end

# good
def attribute
end

Missing top-level class documentation comment.
Open

class ResponseMap < ApplicationRecord
Severity: Minor
Found in app/models/response_map.rb by rubocop

This cop checks for missing top-level documentation of classes and modules. Classes with no body are exempt from the check and so are namespace modules - modules that have nothing in their bodies except classes, other modules, or constant definitions.

The documentation requirement is annulled if the class or module has a "#:nodoc:" comment next to it. Likewise, "#:nodoc: all" does the same for all its children.

Example:

# bad
class Person
  # ...
end

# good
# Description/Explanation of Person class
class Person
  # ...
end

There are no issues that match your filters.

Category
Status