Showing 9 of 14 total issues
Method setup
has 119 lines of code (exceeds 25 allowed). Consider refactoring. Open
def self.setup(klass, options = {})
request_class = options[:request] || 'Request'
collection_class = options[:collection] || 'Collection'
model_class = options[:model] || 'Model'
singular_class = options[:singular] || 'Singular'
Method has_many
has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring. Open
def has_many(name, *args, &block)
name_sym = name.to_sym
reader_method = name
writer_method = "#{name}="
- 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 _merge_attributes
has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring. Open
def _merge_attributes(new_attributes)
protected_methods = (Cistern::Model.instance_methods - PROTECTED_METHODS)
ignored_attributes = self.class.ignored_attributes
specifications = self.class.attributes
class_aliases = self.class.aliases
- 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 has_many
has 26 lines of code (exceeds 25 allowed). Consider refactoring. Open
def has_many(name, *args, &block)
name_sym = name.to_sym
reader_method = name
writer_method = "#{name}="
Method find_caller_before
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
def self.find_caller_before(file)
enum = caller_locations.each
call = nil
- 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
def belongs_to(name, *args, &block)
name_sym = name.to_sym
reader_method = name
writer_method = "#{name}="
- 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 collection_inspect
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
def self.collection_inspect(collection)
Thread.current[:formatador] ||= Formatador.new
data = ["#{Thread.current[:formatador].indentation}<#{collection.class.name}\n"]
Thread.current[:formatador].indent do
unless collection.class.attributes.empty?
- 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 setup
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
def self.setup(klass, options = {})
request_class = options[:request] || 'Request'
collection_class = options[:collection] || 'Collection'
model_class = options[:model] || 'Model'
singular_class = options[:singular] || 'Singular'
- 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 normalize_options
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
def normalize_options(options)
options[:squash] = Array(options[:squash]).map(&:to_s) if options[:squash]
options[:aliases] = Array(options[:aliases] || options[:alias]).map { |a| a.to_sym }
transform = options.key?(:squash) ? :squash : :none
- 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"