Reputation: 133
I'm working with RoR, devise, bootstrap and I have to rake assets:precompile each time I modify my css in order to view them. Is there a workaround to this ? Because I somnehow can't detach by daemon from my command, it is extremely time consumming.
Upvotes: 0
Views: 91
Reputation: 62638
Delete the contents of public/assets
. That'll cause sprockets to rebuild your assets on each page view in development mode. Don't develop in production mode.
Upvotes: 1