I use the autoload path in application.rb to load some additional modules and structures.
This is the following bit of code:
config.autoload_paths += %W(
)
The funny thing is that both problem folders for extending models and controllers work fine.
However, the job folder does not load at all.
Is there anything special I need to do to download a folder in the application, or does anyone know why two of these folders are loading, and the third is not?
source
share