lib/vcr/structs.rb

Summary

Maintainability
B
6 hrs
Test Coverage

File structs.rb has 374 lines of code (exceeds 250 allowed). Consider refactoring.
Open

require 'base64'
require 'delegate'
require 'time'

module VCR
Severity: Minor
Found in lib/vcr/structs.rb - About 5 hrs to fix

    Method try_encode_string has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
    Open

              def try_encode_string(string, encoding_name)
                return string if encoding_name.nil?
    
                encoding = Encoding.find(encoding_name)
                return string if string.encoding == encoding
    Severity: Minor
    Found in lib/vcr/structs.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 filter_object! has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

          def filter_object!(object, text, replacement_text)
            if object.respond_to?(:gsub)
              object.gsub!(text, replacement_text) if object.include?(text)
            elsif Hash === object
              filter_hash!(object, text, replacement_text)
    Severity: Minor
    Found in lib/vcr/structs.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