lib/avsh/debug_logger.rb

Summary

Maintainability
A
0 mins
Test Coverage

Use caller(1..1).first instead of caller[0].
Open

      puts "#{caller[0]}: #{msg}" if @debug_mode
Severity: Minor
Found in lib/avsh/debug_logger.rb by rubocop

This cop identifies places where caller[n] can be replaced by caller(n..n).first.

Example:

# bad
caller[1]
caller.first
caller_locations[1]
caller_locations.first

# good
caller(2..2).first
caller(1..1).first
caller_locations(2..2).first
caller_locations(1..1).first

There are no issues that match your filters.

Category
Status