rubygems/rubygems

View on GitHub
lib/rubygems/remote_fetcher.rb

Summary

Maintainability
C
1 day
Test Coverage

Method download has a Cognitive Complexity of 34 (exceeds 5 allowed). Consider refactoring.
Open

  def download(spec, source_uri, install_dir = Gem.dir)
    install_cache_dir = File.join install_dir, "cache"
    cache_dir =
      if Dir.pwd == install_dir # see fetch_command
        install_dir
Severity: Minor
Found in lib/rubygems/remote_fetcher.rb - About 5 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 download has 64 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  def download(spec, source_uri, install_dir = Gem.dir)
    install_cache_dir = File.join install_dir, "cache"
    cache_dir =
      if Dir.pwd == install_dir # see fetch_command
        install_dir
Severity: Major
Found in lib/rubygems/remote_fetcher.rb - About 2 hrs to fix

    Method fetch_http has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
    Open

      def fetch_http(uri, last_modified = nil, head = false, depth = 0)
        fetch_type = head ? Gem::Net::HTTP::Head : Gem::Net::HTTP::Get
        response   = request uri, fetch_type, last_modified do |req|
          headers.each {|k,v| req.add_field(k,v) }
        end
    Severity: Minor
    Found in lib/rubygems/remote_fetcher.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 fetch_path has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
    Open

      def fetch_path(uri, mtime = nil, head = false)
        uri = Gem::Uri.new uri
    
        unless uri.scheme
          raise ArgumentError, "uri scheme is invalid: #{uri.scheme.inspect}"
    Severity: Minor
    Found in lib/rubygems/remote_fetcher.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

    TODO found
    Open

        when nil then # TODO: test for local overriding cache
    Severity: Minor
    Found in lib/rubygems/remote_fetcher.rb by fixme

    There are no issues that match your filters.

    Category
    Status