lib/active_request/belongs_to.rb
Method build_belongs_tos
has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring. Open
Open
def build_belongs_tos(alloc)
alloc.belongs_tos.each do |many|
alloc.instance_variable_set("@#{many[:foreign_key]}", nil)
alloc.instance_variable_set("@#{many[:association]}", nil)
define_method(many[:association]) do
- 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 belongs_to
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
Open
def belongs_to(association, options = nil)
@belongs_tos ||= []
class_name = !options.nil? && !options[:class_name].nil? ? options[:class_name] : (association.to_s.split.map(&:capitalize)*' ')
foreign_key = !options.nil? && !options[:foreign_key].nil? ? options[:foreign_key] : "#{association}_id"
@belongs_tos << { association: association, class_name: class_name, foreign_key: foreign_key }
- 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"