views:

32

answers:

2

rubyforge is out-dated. When can I get the latest version number of Rails 2.3.x? I'd like to use 2.3.x for a while before upgrading to latest 3.x of Rails.

A: 

Rubygems.org says it all - it's 2.3.9 now. Also you can always tell by the list of tags in the github repo.

neutrino
+4  A: 
$ gem list -ra rails

*** REMOTE GEMS ***

rails (3.0.0, 2.3.9, 2.3.8, 2.3.7, 2.3.6, 2.3.5, 2.3.4, ...)

$ gem install rails -v 2.3.9
deceze