ohho
ohho

Reputation: 51951

What's the latest version of Rails 2.3.x?

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

Answers (2)

alex.zherdev
alex.zherdev

Reputation: 24174

Rubygems.org says it all

Also, you can always tell by the list of tags in the github repo.

Upvotes: 4

deceze
deceze

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

Related Questions