how to update to 1.2.6

I'm afraid to tell it gem update rails because I think that would probably install 2.0.2 and I only want to go from 1.2.3 to 1.2.6

How can I update rails (Linux) to 1.2.6 ?

Craig

“gem install rails -v=1.2.6” will do it just fine.

Nicolai

PS:

You could also do a “rake rails:freeze:edge TAG=rel_1-2-6” - that would only upgrade this specific rails application.

"gem install rails -v=1.2.6" will do it just fine.