class RuboCop::Cop::Lint::RequireRelativeSelfPath
require_relative ‘bar’
# foo.rb
# good
require_relative ‘bar’
require_relative ‘foo’
# foo.rb
# bad
@example
Checks for uses a file requiring itself with ‘require_relative`.
def on_send(node)
def on_send(node) return unless (required_feature = node.first_argument) return unless required_feature.respond_to?(:value) return unless same_file?(processed_source.file_path, required_feature.value) add_offense(node) do |corrector| corrector.remove(range_by_whole_lines(node.source_range, include_final_newline: true)) end end
def remove_ext(file_path)
def remove_ext(file_path) File.basename(file_path, File.extname(file_path)) end
def same_file?(file_path, required_feature)
def same_file?(file_path, required_feature) file_path == required_feature || remove_ext(file_path) == required_feature end