Reputation: 51951
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.
Upvotes: 1
Views: 3574
Reputation: 24174
Also, you can always tell by the list of tags in the github repo.
Upvotes: 4
Reputation: 522626
$ gem list -ra rails | grep 'rails ('
*** REMOTE GEMS ***
rails (3.2.3, 2.3.14, 2.3.13 ...)
$ gem install rails -v 2.3.13
Upvotes: 22