I have an application class
class MyApplication < Sinatra::Base
# ... do something ...
end
and a config.ru file
# ... load libraries ...
run MyApplication
I usually use Passenger as my development environment which works perfectly fine for a normal – non-modular – Sinatra application. But in this case I have no error output instead I get the default internal server error page which isn't very helpful. Is there a way to enable the default error handling?