I have the following interesting scenario:
I've install ruby 1.9.2 via RVM and it came prepackaged with bundler 1.1.4.
My application requires bundler 1.0.15.
I've tried running the following:
gem uninstall bundler
I get the following:
INFO: gem "bundler" is not installed
Any thoughts how can downgrade my bundler?
Thanks.
Installation and usage To install a prerelease version (if one is available), run gem install bundler --pre . To uninstall Bundler, run gem uninstall bundler .
Found the solution.
Apparently rvm installs it's gems in the global gemspec which is visible to all gemspecs.
So by doing:
rvm use 1.9.2@global
And followed by:
gem uninstall bundler
Does the trick.
This can be also shortened to:
rvm @global do gem uninstall bundler
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