kaiwren/wrest

View on GitHub
lib/wrest/hash_with_indifferent_access.rb

Summary

Maintainability
C
7 hrs
Test Coverage

Class HashWithIndifferentAccess has 43 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/wrest/hash_with_indifferent_access.rb - About 5 hrs to fix

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

        def initialize(constructor = nil)
          if constructor.respond_to?(:to_hash)
            super()
            update(constructor)
    
    
    Severity: Minor
    Found in lib/wrest/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_with_single_argument has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        def update_with_single_argument(other_hash, block)
          if other_hash.is_a? HashWithIndifferentAccess
            regular_update(other_hash, &block)
          else
            other_hash.to_hash.each_pair do |key, value|
    Severity: Minor
    Found in lib/wrest/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

    There are no issues that match your filters.

    Category
    Status