Reputation: 15408
Occasionally while working with a Rails app, running the bundle install
command freezes while dealing with the Rails Gemfile. I've tried clearing out the cache to no improvement.
Upvotes: 4
Views: 3825
Reputation: 780
i had the same issue, i deleted the Gemfile.lock file and then did 'bundle install' and got it working. Also, be aware this might update some of the gem versions.
Upvotes: 3
Reputation: 15408
Be sure to double check and ensure that you're declaring a version of rails. Without declaring a version, the Bundler can end up going in circles trying to evaluate dependencies.
Answering my own question since I found the answer that worked for me.
Upvotes: 14