Showing 4 of 4 total issues

Class HashWithIndifferentAccess has 30 methods (exceeds 20 allowed). Consider refactoring.
Open

  class HashWithIndifferentAccess < Hash
    # Returns +true+ so that <tt>Array#extract_options!</tt> finds members of
    # this class.
    def extractable_options?
      true
Severity: Minor
Found in lib/larva/hash_with_indifferent_access.rb - About 3 hrs to fix

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

          def convert_value(value, options = {})
            if value.is_a? Hash
              if options[:for] == :to_hash
                value.to_hash
              else
    Severity: Minor
    Found in lib/larva/hash_with_indifferent_access.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 update has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        def update(other_hash)
          if other_hash.is_a? HashWithIndifferentAccess
            super(other_hash)
          else
            other_hash.to_hash.each_pair do |key, value|
    Severity: Minor
    Found in lib/larva/hash_with_indifferent_access.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

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

        def keep_workers_alive
          while @running && workers.all? { |t| t.alive?  }
            logger.info 'All threads are alive.'
            sleep(60) 
          end
    Severity: Minor
    Found in lib/larva/worker_pool.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