class Tapioca::Loaders::Loader
def eager_load_paths(engine)
@without_runtime
https://github.com/rails/rails/commit/ebfca905db14020589c22e6937382e6f8f687664
engine paths. The following commit is the change:
The `eager_load_paths` method still exists, but doesn't return all paths anymore and causes Tapioca to miss some
Rails 7.2 renamed `eager_load_paths` to `all_eager_load_paths`, which maintains the same original functionality.
def eager_load_paths(engine) config = engine.config (config.respond_to?(:all_eager_load_paths) && config.all_eager_load_paths) || config.eager_load_paths end