What's the state of the art when it comes to making Sinatra reload compiled SASS files in development? I've found that when I'm editing pure CSS the app updates on browser refresh. However when using .scss
files (which I watch with sass --watch public/styles/scss:public/styles/css/
) this doesn't work — I have to restart the above watch to see the latest changes (with the server running).
I've tried Sass::Plugin::Rack
, Sinatra Reloader
, and Rack::LiveReload
, with no success.