Showing 6 of 8 total issues
Method copyable
has 39 lines of code (exceeds 25 allowed). Consider refactoring. Open
def copyable(&block)
begin
model_class = self
# raise an error if the copyable declaration is stated incorrectly
Method copyable
has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring. Open
def copyable(&block)
begin
model_class = self
# raise an error if the copyable declaration is stated incorrectly
- 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"
Further reading
Method update_other_belongs_to_associations
has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring. Open
def update_other_belongs_to_associations(already_updated_key, copied_record)
copied_record.class.reflect_on_all_associations(:belongs_to).each do |assoc|
next if assoc.foreign_key == already_updated_key
id = copied_record.send(assoc.foreign_key)
if id
- 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"
Further reading
Method execute
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
def execute(association_list, original_model, new_model, global_override = {}, skip_validations, skip_associations)
Method execute
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
def self.execute(column_list, original_model, new_model, overrides)
column_list.each do |column, advice|
# when create_copy! is called, you can pass in a hash of
# overrides that trumps the instructions in the copyable
# declaration
- 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"
Further reading
Method save!
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
def self.save!(new_model, skip_validations=false)
unless skip_validations || new_model.valid?(:create)
raise(ActiveRecord::RecordInvalid.new(new_model))
end
- 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"