File resource.rb
has 258 lines of code (exceeds 250 allowed). Consider refactoring. Open
module PgEngine
module Resource
def self.included(clazz)
# clazz.before_action :authenticate_user!
clazz.helper_method :atributos_para_listar
Method pg_respond_destroy
has a Cognitive Complexity of 15 (exceeds 7 allowed). Consider refactoring. Confirmed
def pg_respond_destroy(model, redirect_url = nil)
if destroy_model(model)
msg = "#{model.model_name.human} #{model.gender == 'f' ? 'borrada' : 'borrado'}"
respond_to do |format|
if redirect_url.present?
- 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 pg_respond_create
has a Cognitive Complexity of 14 (exceeds 7 allowed). Consider refactoring. Confirmed
def pg_respond_create
object = instancia_modelo
respond_to do |format|
if (@saved = object.save)
if params[:asociable]
- 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 pg_respond_create
has 32 lines of code (exceeds 25 allowed). Consider refactoring. Confirmed
def pg_respond_create
object = instancia_modelo
respond_to do |format|
if (@saved = object.save)
if params[:asociable]
Method pg_respond_destroy
has 31 lines of code (exceeds 25 allowed). Consider refactoring. Open
def pg_respond_destroy(model, redirect_url = nil)
if destroy_model(model)
msg = "#{model.model_name.human} #{model.gender == 'f' ? 'borrada' : 'borrado'}"
respond_to do |format|
if redirect_url.present?
Method do_sort
has a Cognitive Complexity of 11 (exceeds 7 allowed). Consider refactoring. Open
def do_sort(scope, field, direction)
# TODO: restringir ciertos campos?
unless scope.model.column_names.include?(field.to_s) ||
scope.model.respond_to?("order_by_#{field}")
pg_warn("No existe el campo \"#{field}\"")
- 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"