Created
July 31, 2010 23:15
-
-
Save johanlunds/502730 to your computer and use it in GitHub Desktop.
This file contains 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 :bundler do | |
task :create_symlink, :roles => :app do | |
bundle_dir = "#{release_path}/vendor/bundle" | |
shared_dir = "#{shared_path}/bundle" | |
run "rm -rf #{bundle_dir}" | |
run "mkdir -p #{shared_dir} && ln -s #{shared_dir} #{bundle_dir}" | |
end | |
task :bundle_new_release, :roles => :app do | |
bundler.create_symlink | |
run "cd #{release_path} && bundle install --production --without development test" | |
end | |
end | |
after 'deploy:update_code', 'bundler:bundle_new_release' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment