SpontaneousCMS/spontaneous

View on GitHub
lib/spontaneous/rack/public.rb

Summary

Maintainability
B
4 hrs
Test Coverage

Method parse_response has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
Open

      def parse_response(response)
        case
        when response.is_a?(site.model)
          @page = response
        when response.respond_to?(:to_str)
Severity: Minor
Found in lib/spontaneous/rack/public.rb - About 2 hrs 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 parse_response has 26 lines of code (exceeds 25 allowed). Consider refactoring.
Open

      def parse_response(response)
        case
        when response.is_a?(site.model)
          @page = response
        when response.respond_to?(:to_str)
Severity: Minor
Found in lib/spontaneous/rack/public.rb - About 1 hr to fix

    Method render_path has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    Open

          def render_path(path)
            @template_params = {}
            find_page!(path)
    
            response = catch(:halt) do
    Severity: Minor
    Found in lib/spontaneous/rack/public.rb - About 55 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 content_type has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

          def content_type(type, params={})
            default   = params.delete :default
            mime_type = mime_type(type) || default
            fail "Unknown media type: %p" % type if mime_type.nil?
            mime_type = mime_type.dup
    Severity: Minor
    Found in lib/spontaneous/rack/public.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

    There are no issues that match your filters.

    Category
    Status