app/models/mixins/retirement_mixin.rb
Method retire
has a Cognitive Complexity of 15 (exceeds 11 allowed). Consider refactoring. Open
Open
def retire(options = {})
return unless options.keys.any? { |key| [:date, :warn].include?(key) }
message = "#{retirement_object_title}: [id:<#{id}>, name:<#{name}>]"
- Read upRead up
- Create a ticketCreate a ticket
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 retire_now
has a Cognitive Complexity of 14 (exceeds 11 allowed). Consider refactoring. Open
Open
def retire_now(requester = nil)
if retired
return if retired_validated?
_log.info("#{retirement_object_title}: [id:<#{id}>, name:<#{name}>], Retires On: [#{retires_on.strftime("%x %R %Z")}], was previously retired, but currently #{retired_invalid_reason}")
- Read upRead up
- Create a ticketCreate a ticket
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
Avoid immutable Array literals in loops. It is better to extract it into a local variable or a constant. Open
Open
return unless options.keys.any? { |key| [:date, :warn].include?(key) }
- Create a ticketCreate a ticket
- Exclude checks