I wonder if we can have in Rails an interactive shell when exceptions occurs accessible directly in the browser (so interacting with server via javascript)
I love this functionality bring up by Werkzeug. Examples of the Werkzeug Debugger :
- http://werkzeug.pocoo.org/docs/debug/#enabling-the-debugger
- http://flask.pocoo.org/docs/quickstart/#debug-mode
It can be great if we can do the same in Rails. Do you know some ways to archive this ?
You can catch all exceptions in ApplicationController and do whatever you want, like start a breakpoint.