RailsCasts Pro episodes are now free!
Learn more or hide this
GitHub User: edward-s
it's because capistrano is loading bundler incorrectly.
to fix this, in your Gemfile, add both gem 'capistrano' gem 'rvm-capistrano'
In deploy.rb, insert the following line at the top: require "rvm/capistrano"
it should solve the bundle not found issue
it's because capistrano is loading bundler incorrectly.
to fix this, in your Gemfile, add both
gem 'capistrano'
gem 'rvm-capistrano'
In deploy.rb,
insert the following line at the top: require "rvm/capistrano"
it should solve the bundle not found issue