publiclab/plots2

View on GitHub
app/models/drupal_file.rb

Summary

Maintainability
A
35 mins
Test Coverage

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

  def path(size = :default)
    if is_image?
      if size == :thumb
        "/#{filepath.gsub('sites/default/files/', 'sites/default/files/imagecache/thumb/')}"
      elsif size == :default
Severity: Minor
Found in app/models/drupal_file.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

Trailing whitespace detected.
Open

  
Severity: Minor
Found in app/models/drupal_file.rb by rubocop

Redundant return detected.
Open

    return filename
Severity: Minor
Found in app/models/drupal_file.rb by rubocop

This cop checks for redundant return expressions.

Example:

def test
  return something
end

def test
  one
  two
  three
  return something
end

It should be extended to handle methods whose body is if/else or a case expression with a default branch.

There are no issues that match your filters.

Category
Status