For anyone encountering this issue with Capistrano: capistrano isn't able to locate the bundler
. The reason might be that you installed bundler under some other gemset
where the Capistrano isn't even looking.
rvm gemset list
rvm use 'my_get_set'
gem install bundler
Then, try again with the deploy task.