lib/db_mod/statements/configuration.rb

Summary

Maintainability
A
1 hr
Test Coverage

Method def_configurable has 5 arguments (exceeds 4 allowed). Consider refactoring.
Open

      def self.def_configurable(mod, name, definition, params = 0, &block)
Severity: Minor
Found in lib/db_mod/statements/configuration.rb - About 35 mins to fix

    Method attach_param_processor has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

          def self.attach_param_processor(definition, params, config)
            wrapped =
              if params.is_a?(Array) && !params.empty?
                define_named_args_method(definition, params)
    
    
    Severity: Minor
    Found in lib/db_mod/statements/configuration.rb - About 35 mins to fix

    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

    Omit parentheses for the empty lambda parameters.
    Open

                ->() { instance_exec(&definition) }

    This cop checks for parentheses for empty lambda parameters. Parentheses for empty lambda parameters do not cause syntax errors, but they are redundant.

    Example:

    # bad
    -> () { do_something }
    
    # good
    -> { do_something }
    
    # good
    -> (arg) { do_something(arg) }

    private (on line 39) does not make singleton methods private. Use private_class_method or private inside a class << self block instead.
    Open

          def self.attach_result_processors(definition, config)

    This cop checks for private or protected access modifiers which are applied to a singleton method. These access modifiers do not make singleton methods private/protected. private_class_method can be used for that.

    Example:

    # bad
    
    class C
      private
    
      def self.method
        puts 'hi'
      end
    end

    Example:

    # good
    
    class C
      def self.method
        puts 'hi'
      end
    
      private_class_method :method
    end

    Example:

    # good
    
    class C
      class << self
        private
    
        def method
          puts 'hi'
        end
      end
    end

    private (on line 39) does not make singleton methods private. Use private_class_method or private inside a class << self block instead.
    Open

          def self.attach_result_processor(definition, processor)

    This cop checks for private or protected access modifiers which are applied to a singleton method. These access modifiers do not make singleton methods private/protected. private_class_method can be used for that.

    Example:

    # bad
    
    class C
      private
    
      def self.method
        puts 'hi'
      end
    end

    Example:

    # good
    
    class C
      def self.method
        puts 'hi'
      end
    
      private_class_method :method
    end

    Example:

    # good
    
    class C
      class << self
        private
    
        def method
          puts 'hi'
        end
      end
    end

    Use Integer instead of Fixnum.
    Open

              elsif params.is_a?(Fixnum) && params > 0

    This cop checks for using Fixnum or Bignum constant.

    Example:

    # bad
    
    1.is_a?(Fixnum)
    1.is_a?(Bignum)

    Example:

    # good
    
    1.is_a?(Integer)

    private (on line 39) does not make singleton methods private. Use private_class_method or private inside a class << self block instead.
    Open

          def self.define_fixed_args_method(definition, arity)

    This cop checks for private or protected access modifiers which are applied to a singleton method. These access modifiers do not make singleton methods private/protected. private_class_method can be used for that.

    Example:

    # bad
    
    class C
      private
    
      def self.method
        puts 'hi'
      end
    end

    Example:

    # good
    
    class C
      def self.method
        puts 'hi'
      end
    
      private_class_method :method
    end

    Example:

    # good
    
    class C
      class << self
        private
    
        def method
          puts 'hi'
        end
      end
    end

    private (on line 39) does not make singleton methods private. Use private_class_method or private inside a class << self block instead.
    Open

          def self.attach_param_processor(definition, params, config)

    This cop checks for private or protected access modifiers which are applied to a singleton method. These access modifiers do not make singleton methods private/protected. private_class_method can be used for that.

    Example:

    # bad
    
    class C
      private
    
      def self.method
        puts 'hi'
      end
    end

    Example:

    # good
    
    class C
      def self.method
        puts 'hi'
      end
    
      private_class_method :method
    end

    Example:

    # good
    
    class C
      class << self
        private
    
        def method
          puts 'hi'
        end
      end
    end

    private (on line 39) does not make singleton methods private. Use private_class_method or private inside a class << self block instead.
    Open

          def self.define_named_args_method(definition, params)

    This cop checks for private or protected access modifiers which are applied to a singleton method. These access modifiers do not make singleton methods private/protected. private_class_method can be used for that.

    Example:

    # bad
    
    class C
      private
    
      def self.method
        puts 'hi'
      end
    end

    Example:

    # good
    
    class C
      def self.method
        puts 'hi'
      end
    
      private_class_method :method
    end

    Example:

    # good
    
    class C
      class << self
        private
    
        def method
          puts 'hi'
        end
      end
    end

    Useless private access modifier.
    Open

          private

    This cop checks for redundant access modifiers, including those with no code, those which are repeated, and leading public modifiers in a class or module body. Conditionally-defined methods are considered as always being defined, and thus access modifiers guarding such methods are not redundant.

    Example:

    class Foo
      public # this is redundant (default access is public)
    
      def method
      end
    
      private # this is not redundant (a method is defined)
      def method2
      end
    
      private # this is redundant (no following methods are defined)
    end

    Example:

    class Foo
      # The following is not redundant (conditionally defined methods are
      # considered as always defining a method)
      private
    
      if condition?
        def method
        end
      end
    
      protected # this is not redundant (method is defined)
    
      define_method(:method2) do
      end
    
      protected # this is redundant (repeated from previous modifier)
    
      [1,2,3].each do |i|
        define_method("foo#{i}") do
        end
      end
    
      # The following is redundant (methods defined on the class'
      # singleton class are not affected by the public modifier)
      public
    
      def self.method3
      end
    end

    Example:

    # Lint/UselessAccessModifier:
    #   ContextCreatingMethods:
    #     - concerning
    require 'active_support/concern'
    class Foo
      concerning :Bar do
        def some_public_method
        end
    
        private
    
        def some_private_method
        end
      end
    
      # this is not redundant because `concerning` created its own context
      private
    
      def some_other_private_method
      end
    end

    Example:

    # Lint/UselessAccessModifier:
    #   MethodCreatingMethods:
    #     - delegate
    require 'active_support/core_ext/module/delegation'
    class Foo
      # this is not redundant because `delegate` creates methods
      private
    
      delegate :method_a, to: :method_b
    end

    There are no issues that match your filters.

    Category
    Status