-
-
Save donnoman/250979 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 :bundler do | |
task :install do | |
run("#{sudo} gem install bundler --source=http://gemcutter.org") | |
end | |
task :symlink_vendor do | |
shared_gems = File.join(shared_path, 'vendor/gems') | |
release_gems = "#{release_path}/vendor/gems/" | |
%w(cache gems specifications).each do |sub_dir| | |
shared_sub_dir = File.join(shared_gems, sub_dir) | |
run("mkdir -p #{shared_sub_dir} && mkdir -p #{release_gems} && ln -s #{shared_sub_dir} #{release_gems}/#{sub_dir}") | |
end | |
end | |
task :bundle_new_release do | |
bundler.symlink_vendor | |
# Only use cached gems when expanding the bundle | |
run("cd #{release_path} && #{gem_ex} bundle --only #{rails_env} --cached") | |
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