Drew
Drew

Reputation: 15408

Bundle Install Freezes for my Rails App

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

Answers (2)

Magesh
Magesh

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

Drew
Drew

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

Related Questions