Showing 6 of 6 total issues
Method compile_queries
has a Cognitive Complexity of 30 (exceeds 5 allowed). Consider refactoring. Open
def compile_queries
compiled = Set.new
queries.each do |query|
next compiled << query if query.has_key?("$project") || query.has_key?('$group')
- 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_report_module
has 43 lines of code (exceeds 25 allowed). Consider refactoring. Open
def initialize_report_module
# Lets store settings under created instance.
@report_module_settings = self.settings.inject({}) do |hash_module, (report_module, module_settings)|
hash_module.merge!(
report_module =>
Method project_group_fields_query
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
def project_group_fields_query
{}.tap do |query|
if groups == [:_id]
query[:_id] = '$_id'
else
- 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 all
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
def all
self.yield unless yielded?
aggregation_queries = compile_queries
- 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(context, rows, fields, columns, mapping)
Method initialize_report_module
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
def initialize_report_module
# Lets store settings under created instance.
@report_module_settings = self.settings.inject({}) do |hash_module, (report_module, module_settings)|
hash_module.merge!(
report_module =>
- 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"