Method _cast
has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring. Open
def _cast(_value, _type)
return _value if _value.nil?
case _type
when :decimal, :float
- 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 assign_attributes
has 30 lines of code (exceeds 25 allowed). Consider refactoring. Open
def assign_attributes(args)
_all_keys = args.keys
_multi_params_keys = _all_keys.select { |k| k.to_s.match(/\([\w]+\)/) }
_normal_keys = _all_keys - _multi_params_keys
Method assign_attributes
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
def assign_attributes(args)
_all_keys = args.keys
_multi_params_keys = _all_keys.select { |k| k.to_s.match(/\([\w]+\)/) }
_normal_keys = _all_keys - _multi_params_keys
- 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 flexi_field
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
def flexi_field(name, type, options = { })
accessible = options.delete(:accessible)
default = options.delete(:default)
singular = options.delete(:singular) || name.to_s.singularize
plural = options.delete(:plural) || name.to_s.pluralize
- 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"