Search code examples
ruby-on-railsrubygemsbundler

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.


Solution

  • 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.