Capcake should hook somewhere (`before deploy:publishing`?) to clear cache ``` ruby namespace :deploy do before publishing, :clear_cache do on roles(:app) do within release_path do execute :rm, '-rf', 'tmp/cache/**/*' end end end end ```