I am deploying a Ruby on Rails application and part of the startup script that I have when provisioning a new box is gem update --system
.
This happened to upgrade Rubygems to version 2.0. however, it looks like bundler
is not compatible with this newer version of Rubygems.
Bundler is not compatible with Rubygems 2.0.
Please upgrade to Bundler 1.3 or higher.
Has anyone seen this or found a workaround?
Updating to the prerelease of bundler fixed it.
gem install bundler --pre
I had the same problem and, since I was using RVM, I fixed it with the following command:
rvm rubygems 1.8.25
If you are not using RVM, you could just try the following:
rubygems 1.8.25
This should remove your Rubygems 2.0 and allow Bundler to work again.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With