You can try merbjedi fork of hassle: http://github.com/merbjedi/hassle
It this wont help, you can use Rack::Static middleware like this: remove hassle change your sass (compass) settings: config.css_dir = "tmp/public/compiled/stylesheets" Create initializer with code: ActionController::Dispatcher.middleware.use Rack::Static, :root => "tmp/public", :urls => ["/compiled/stylesheets"] This will always compile your sass files to tmp and serve them by rack static module. -- You received this message because you are subscribed to the Google Groups "Heroku" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/heroku?hl=en.
