summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2011-01-18 17:41:27 -0800
committerAndre Arko <andre@arko.net>2011-01-18 17:41:53 -0800
commite0ec73bb32f3a276b7424105250d4ccb57d222e9 (patch)
tree2d4322fb764a27641662c3592dff90252515249c
parent36f1594dac2a5705fc5b7aa6f9293ac5ba9c60ee (diff)
downloadbundler-e0ec73bb32f3a276b7424105250d4ccb57d222e9.tar.gz
tell capistrano to run "bundle exec rake"
closes #894
-rw-r--r--lib/bundler/capistrano.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/bundler/capistrano.rb b/lib/bundler/capistrano.rb
index a304b09f39..3722ab7974 100644
--- a/lib/bundler/capistrano.rb
+++ b/lib/bundler/capistrano.rb
@@ -7,4 +7,5 @@ require 'bundler/deployment'
Capistrano::Configuration.instance(:must_exist).load do
after "deploy:update_code", "bundle:install"
Bundler::Deployment.define_task(self, :task, :except => { :no_release => true })
+ set :rake, 'bundle exec rake'
end