app/models/project.rb
Class Project
has 26 methods (exceeds 20 allowed). Consider refactoring. Open
Open
class Project < ActiveRecord::Base
include Seek::Rdf::RdfGeneration
include Seek::Rdf::ReactToAssociatedChange
Method institutions=
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
Open
def institutions=(new_institutions)
new_institutions.each_index do |i|
new_institutions[i]=Institution.find(new_institutions[i]) unless new_institutions.is_a?(Institution)
end
work_groups.each do |wg|
- Read upRead up
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"