I have numerous models in my app/models folder. I\'d like to clean this folder up a little bit. Move models that belong to each other in subfolders. The problem is that by c
This worked for me in Rails 5.
Adding the following to application.rb
application.rb
config.autoload_paths += Dir[ Rails.root.join('app/models/**/') ]
Beware though that you cannot have the same name on your folder as any of your models.