ruby-grape/grape

View on GitHub
lib/grape/dsl/inside_route.rb

Summary

Maintainability
C
1 day
Test Coverage

File inside_route.rb has 267 lines of code (exceeds 250 allowed). Consider refactoring.
Open

require 'grape/dsl/headers'

module Grape
  module DSL
    module InsideRoute
Severity: Minor
Found in lib/grape/dsl/inside_route.rb - About 2 hrs to fix

    Method present has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
    Open

          def present(*args)
            options = args.count > 1 ? args.extract_options! : {}
            key, object = if args.count == 2 && args.first.is_a?(Symbol)
                            args
                          else
    Severity: Minor
    Found in lib/grape/dsl/inside_route.rb - About 1 hr 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

    Method status has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
    Open

          def status(status = nil)
            case status
            when Symbol
              raise ArgumentError, "Status code :#{status} is invalid." unless Rack::Utils::SYMBOL_TO_STATUS_CODE.key?(status)
    
    
    Severity: Minor
    Found in lib/grape/dsl/inside_route.rb - About 1 hr 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

    Method declared_hash_attr has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
    Open

            def declared_hash_attr(passed_params, options, declared_param, params_nested_path, memo)
              renamed_params = route_setting(:renamed_params) || {}
              if declared_param.is_a?(Hash)
                declared_param.each_pair do |declared_parent_param, declared_children_params|
                  params_nested_path_dup = params_nested_path.dup
    Severity: Minor
    Found in lib/grape/dsl/inside_route.rb - About 1 hr 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

    Method entity_class_for_obj has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
    Open

          def entity_class_for_obj(object, options)
            entity_class = options.delete(:with)
    
            if entity_class.nil?
              # entity class not explicitly defined, auto-detect from relation#klass or first object in the collection
    Severity: Minor
    Found in lib/grape/dsl/inside_route.rb - About 1 hr 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

    Method handle_passed_param has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
    Open

            def handle_passed_param(params_nested_path, has_passed_children = false, &_block)
              return yield if has_passed_children
    
              key = params_nested_path[0]
              key += "[#{params_nested_path[1..].join('][')}]" if params_nested_path.size > 1
    Severity: Minor
    Found in lib/grape/dsl/inside_route.rb - About 1 hr 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

    Method declared_hash_attr has 26 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

            def declared_hash_attr(passed_params, options, declared_param, params_nested_path, memo)
              renamed_params = route_setting(:renamed_params) || {}
              if declared_param.is_a?(Hash)
                declared_param.each_pair do |declared_parent_param, declared_children_params|
                  params_nested_path_dup = params_nested_path.dup
    Severity: Minor
    Found in lib/grape/dsl/inside_route.rb - About 1 hr to fix

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

              def declared_hash_attr(passed_params, options, declared_param, params_nested_path, memo)
      Severity: Minor
      Found in lib/grape/dsl/inside_route.rb - About 35 mins to fix

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

              def redirect(url, permanent: false, body: nil, **_options)
                body_message = body
                if permanent
                  status 301
                  body_message ||= "This resource has been moved permanently to #{url}."
        Severity: Minor
        Found in lib/grape/dsl/inside_route.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

        Method stream has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

              def stream(value = nil)
                return if value.nil? && @stream.nil?
        
                header Rack::CONTENT_LENGTH, nil
                header Grape::Http::Headers::TRANSFER_ENCODING, nil
        Severity: Minor
        Found in lib/grape/dsl/inside_route.rb - About 25 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

        There are no issues that match your filters.

        Category
        Status