Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prefer
require_relative
for internal requires
`require_relative` is preferred over `require` for files within the same project because it uses paths relative to the current file, making code more portable and less dependent on the load path. This change updates internal requires to use `require_relative` for consistency, performance, and improved portability. Ref: - ruby/psych#522 - ruby/logger#20 - ruby/rdoc#658 - #349 - rubocop/rubocop#8748
- Loading branch information