dpaluy/sendgrid-threads

View on GitHub
lib/sendgrid_threads/config.rb

Summary

Maintainability
A
0 mins
Test Coverage

Method SendgridThreads::Config#logger is defined at both lib/sendgrid_threads/config.rb:6 and lib/sendgrid_threads/config.rb:8.
Open

    def logger
Severity: Minor
Found in lib/sendgrid_threads/config.rb by rubocop

This cop checks for duplicated instance (or singleton) method definitions.

Example:

# bad

def duplicated
  1
end

def duplicated
  2
end

Example:

# bad

def duplicated
  1
end

alias duplicated other_duplicated

Example:

# good

def duplicated
  1
end

def other_duplicated
  2
end

There are no issues that match your filters.

Category
Status