-
Notifications
You must be signed in to change notification settings - Fork 247
Description
In rails I want to use a styled static 500/404 error page. The best way to do this was to use undigested assets for css, js and logo files which used to be generated in Rails 3.x. I read issue #49 and am aware of the "caching old version forever" bug, but I think for the 500 error page this is a trade-off, which the developer should decide about.
The current best solution as suggested in #49 and bibwild.wordpress.com/2014/10/02/non-digested-asset-names-in-rails-4-your-options seems to be to write a custom rake task and wire it up indiviudally with ones capistrano setup. I am not quite happy that this should be the only official solution to deal with scenario.
I think the use case to want to have styled 500 error page without manual asset duplication is quite common (which application wouldn't want to have it?). If there is a better way for styled 500 error pages without manual asset duplication I am also happy to learn about it.
I would wish for a white list option to have undigested asset files.