chriseppstein/compass

View on GitHub
core/lib/compass/core/http_util.rb

Summary

Maintainability
A
1 hr
Test Coverage

Method url_join has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
Open

  def url_join(*args)
    args.inject("") do |m, a|
      m << "/" unless m.end_with?('/') || a.start_with?('/') if m.length > 0
      m.gsub!(%r{/+$}, '') if a.start_with?('/')
      m << a
Severity: Minor
Found in core/lib/compass/core/http_util.rb - About 55 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 expand_url_path has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
Open

  def expand_url_path(url)
    # We remove the leading path otherwise we think there's an extra segment that can be removed
    prefix = "/" if url.start_with?("/")
    segments = url.gsub(%r{//+}, '/').split("/")
    segments.shift if prefix
Severity: Minor
Found in core/lib/compass/core/http_util.rb - About 55 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