I added a custom directory to my Padrino application (0.12.4). I added it to the load paths and everything loaded fine. The issue is that Padrino is not reloading changes to the files in my custom path.
boot.rb
Padrino.before_load do
Padrino.dependency_paths << Padrino.root('app/services/**/*.rb')
end
Padrino.after_load do
end
Padrino.load!