I'm trying to deploy my project to a server via capistrano
but I get below error and the deployment process fails to proceed:
** [out :: myprojet..] Could not find rake-0.8.7 in any of the sources
** [out :: myprojet..] Run `bundle install` to install missing gems.
I'm using rvm
, however I removed rake
and manually installed it.. also removed my Gemfile.lock
and added gem rake, '0.8.7'
to my Gemfile; also didn't worked.
I have the rake
in my gem list:
$ gem list | grep rake
rake (0.8.7)
I also added set :rake, 'bundle exec rake'
to deploy.rb
file but I still get this error. Any idea? tnx.