I have rubygems 1.3.1 installed but I want to go back to 1.2.0. What's the command to downgrade rubygems?

link|improve this question

53% accept rate
feedback

5 Answers

up vote 13 down vote accepted

Updated November 2011: Now that RVM's out, try running rvm install rubygems <version>.

link|improve this answer
16  
Eh, much better to sudo gem update --system 1.4.2 or rvm install rubygems 1.4.2 – mrm Aug 29 '11 at 4:23
Is it still October in Sydney, Nova Scotia? – Andrew Grimm Nov 3 '11 at 1:28
feedback

This worked for me when downgrading from 1.5.2 to 1.4.2 because of old rails version:

sudo gem update --system 1.4.2

More information about downgrading/upgrading rubygems: http://rubygems.rubyforge.org/rubygems-update/UPGRADING_rdoc.html

link|improve this answer
1  
Thanks! This worked for me. Have an old Rails 2.2.2 project that complained without this. I still don't know why actually (if anyone has details on that I'd be curious) but at least it works now. – Brian Armstrong Feb 23 '11 at 8:32
@BrianArmstrong There is also a bug in 2.3.x which is already fixed in the rails 2-3-stable branch (see link). Perhaps this fix will be available in the next release of 2.2.x. – pseidemann Feb 25 '11 at 17:19
downgraded to 1.3.7, works great – ian Mar 1 '11 at 16:06
This seems like the most reliable way. – Marnen Laibow-Koser Jun 6 '11 at 14:31
feedback

If you're using RVM, then you can do this to remove current ruby gems, then upgrade/downgrade rubygems:

rvm install rubygems 1.4.2
link|improve this answer
just googled this to try and get rid of a ton of deprecation warnings caused by recent rubygems updates, saved me a lot of hassle, thanks :) – Max Williams Jun 20 '11 at 14:58
this also solved my issues – kikito Aug 16 '11 at 15:01
feedback

This just worked for me on OSX to get from 1.5.0 back to 1.4.2

sudo gem uninstall -v '1.5.0' rubygems-update
sudo gem update --system --local
link|improve this answer
feedback

Is there any particular reason why you need to downgrade (maybe because of the behavior of putting gems in ~/.gems when you forget sudo)?

link|improve this answer
2  
This would be a reason why: stackoverflow.com/questions/4859600/… – Ramon Tayag Feb 1 '11 at 8:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.