schmich/kappa

View on GitHub

Showing 6 of 11 total issues

Method accumulate has a Cognitive Complexity of 27 (exceeds 5 allowed). Consider refactoring.
Open

    def accumulate(options, &block)
      path = options[:path]
      params = options[:params] || {}
      json = options[:json]
      sub_json = options[:sub_json]
Severity: Minor
Found in lib/kappa/connection.rb - About 3 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 find has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
Open

    def find(options, &block)
      check = options.dup
      check.delete(:limit)
      check.delete(:offset)
      raise ArgumentError, 'options' if check.empty?
Severity: Minor
Found in lib/kappa/stream.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 find has 41 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    def find(options, &block)
      check = options.dup
      check.delete(:limit)
      check.delete(:offset)
      raise ArgumentError, 'options' if check.empty?
Severity: Minor
Found in lib/kappa/stream.rb - About 1 hr to fix

    Method accumulate has 37 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        def accumulate(options, &block)
          path = options[:path]
          params = options[:params] || {}
          json = options[:json]
          sub_json = options[:sub_json]
    Severity: Minor
    Found in lib/kappa/connection.rb - About 1 hr to fix

      Method paginate has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

          def paginate(path, limit, offset, params = {})
            path_uri = Addressable::URI.parse(path)
            query = { 'limit' => limit, 'offset' => offset }
            path_uri.query_values ||= {}
            path_uri.query_values = path_uri.query_values.merge(query)
      Severity: Minor
      Found in lib/kappa/connection.rb - About 45 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 for_channel has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

          def for_channel(channel, options = {})
            if channel.respond_to?(:name)
              channel_name = channel.name
            else
              channel_name = channel.to_s
      Severity: Minor
      Found in lib/kappa/video.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

      Severity
      Category
      Status
      Source
      Language