1

What is difference between load path & auto load path? if i have added any dir to auto-load path then should i need to require that file in my code?

Artem Koshelev
  • 10,548
  • 4
  • 36
  • 68
Sunny
  • 468
  • 6
  • 22

1 Answers1

1

I assume you meant autoload_paths :

From documentation:

config.autoload_paths accepts an array of additional paths to prepend to the load path. By default, all app, lib, vendor and mock paths are included in this list.

Source

Zabba
  • 64,285
  • 47
  • 179
  • 207