Showing 6 of 10 total issues
Method parse
has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring. Open
def parse(value)
return value..value unless value.is_a?(::String)
if value =~ /^[0-9]+ (hour|day|week|month|year)s{0,1} (ago)$/
number, period, ago = value.split(" ")
- 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 parse
has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring. Open
def parse(value)
return value..value unless value.is_a?(::String)
if value =~ /^[0-9]+ (day|week|month|year)s{0,1} (ago)$/
number, period, ago = value.split(" ")
- 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 unsafe_search_cop
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
def unsafe_search_cop(query, scope_name, query_options)
return respond_to?(:scoped) ? scoped : all if query.blank?
query_builder = QueryBuilder.new(self, query, search_scopes[scope_name], query_options)
- 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 parse_attribute
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
def parse_attribute(key, value)
collection = SearchCopGrammar::Attributes::Collection.new(query_info, key.to_s)
if value.is_a?(Hash)
raise(SearchCop::ParseError, "Unknown operator #{value.keys.first}") unless collection.valid_operator?(value.keys.first)
- 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 initialize
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
def initialize(klass, table_alias, column_name, field_names, options = {})
Method matches_value
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
def matches_value(value)
res = value.gsub(/[%_\\]/) { |char| "\\#{char}" }
if value.strip =~ /^\*|\*$/
res = res.gsub(/^\*/, "%") if options[:left_wildcard] != false
- 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"