desc ""
task :set_permissions do
end
Jeff
# TODO improve, why does capistrano do this? smartify
desc "Set permissions to 755"
task :what_the_heck, :hosts => remote_domain do
run "chmod 755 #{deploy_to}/current/public"
run "chmod 755 #{deploy_to}/current/public/dispatch.*"
end
after "deploy:symlink", :what_the_heck
Thank you Jeff!