chore(rubocop): fix Rails/RootPathnameMethods and assimiled cops

This commit is contained in:
Colin Darie 2023-04-19 10:55:16 +02:00
parent 6a3fd8fc4d
commit b273e7b67e
No known key found for this signature in database
GPG key ID: 4FB865FDBCA4BCC4
8 changed files with 19 additions and 8 deletions

View file

@ -1,3 +1,3 @@
Dir[File.join(Rails.root, "lib", "core_ext", "*.rb")].each do |core_ext_file|
Dir[Rails.root.join("lib", "core_ext", "*.rb")].each do |core_ext_file|
require core_ext_file
end