Created
November 11, 2011 00:58
-
-
Save caironoleto/1356795 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace :assets do | |
task :precompile, :roles => :web do | |
run "cd #{release_path} && RAILS_ENV=production bundle exec rake assets:precompile" | |
end | |
task :cleanup, :roles => :web do | |
run "cd #{release_path} && RAILS_ENV=production bundle exec rake assets:clean" | |
end | |
end | |
after "deploy:update_code", "assets:precompile" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment