What I'm trying to determine is what can be changed on-the-fly in a Rails application w/o restarting the web server.
My assumption is that anything that requires bundler needs restarting and any regular ascii based files (html/css/js) or images can be modified on the fly, but how about:
- /app/controllers/
- /app/models/
- /app/views/
- /config/database.yml
Do any changes to the ruby (*.erb, *.rb) files require a recompile and the web server to be restarted?