hashie/hashie

View on GitHub
lib/hashie/mash.rb

Summary

Maintainability
C
1 day
Test Coverage

Class Mash has 43 methods (exceeds 20 allowed). Consider refactoring.
Open

  class Mash < Hash
    include Hashie::Extensions::RubyVersionCheck
    extend Hashie::Extensions::KeyConflictWarning

    ALLOWED_SUFFIXES = %w[? ! = _].freeze
Severity: Minor
Found in lib/hashie/mash.rb - About 5 hrs to fix

    File mash.rb has 261 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    require 'hashie/hash'
    require 'hashie/array'
    require 'hashie/utils'
    require 'hashie/logger'
    require 'hashie/extensions/key_conflict_warning'
    Severity: Minor
    Found in lib/hashie/mash.rb - About 2 hrs to fix

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

          def log_collision?(method_key)
            return unless method_key.is_a?(String) || method_key.is_a?(Symbol)
            return unless respond_to?(method_key)
      
            _, suffix = method_name_and_suffix(method_key)
      Severity: Minor
      Found in lib/hashie/mash.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 _deep_update has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
      Open

          def _deep_update(other_hash, &blk)
            other_hash.each_pair do |k, v|
              key = convert_key(k)
              if v.is_a?(::Hash) && key?(key) && regular_reader(key).is_a?(Mash)
                custom_reader(key).deep_update(v, &blk)
      Severity: Minor
      Found in lib/hashie/mash.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 convert_value has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
      Open

          def convert_value(val, duping = false) #:nodoc:
            case val
            when self.class
              val.dup
            when Hash
      Severity: Minor
      Found in lib/hashie/mash.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