Skip to content

Instantly share code, notes, and snippets.

@kubicek
Created April 21, 2011 17:36
Show Gist options
  • Save kubicek/935066 to your computer and use it in GitHub Desktop.
Save kubicek/935066 to your computer and use it in GitHub Desktop.
Podpora Bundleru v Capistrano
after "deploy:update_code", "bundler:bundle_new_release"
namespace :bundler do
task :create_symlink, :roles => :app do
set :bundle_dir, File.join(release_path, 'vendor/bundle')
shared_dir = File.join(shared_path, 'bundle')
run "if [ -d #{bundle_dir} ]; then rm -rf #{bundle_dir}; fi" # in the event it already exists..?
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} ; RB_USER_INSTALL=1 bundle install --path #{bundle_dir} --deployment"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment