Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Getting "'gem (at master) is not checked out. Run 'bundle install' first" every time I run rake db:migrate


After a long period without using Ruby on Rails on MacBook (OSX 10.9), every time I run

    rake db:migrate

or

    bundle exec rake db:migrate

I get the following errorr:

 git://github.com/capistrano/capistrano.git (at master) is not yet checked out. Run `bundle install` first.

I've already run the bundle install, but still not working.

Thanks for the help!

like image 383
Victor Avatar asked Oct 28 '25 05:10

Victor


1 Answers

Try :

 Bundle install --deployment 
like image 183
Lorenzo Camaione Avatar answered Oct 30 '25 22:10

Lorenzo Camaione