Skip to content

Instantly share code, notes, and snippets.

@donnoman
Forked from richievos/bundler_cap.rb
Created December 7, 2009 18:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save donnoman/250979 to your computer and use it in GitHub Desktop.
Save donnoman/250979 to your computer and use it in GitHub Desktop.
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