Does anyone know when Ruby on Rails 3.1 is going to be released?

link|improve this question

feedback

closed as too localized by bmargulies, Ken White, Jeff Atwood Apr 16 '11 at 21:05

This question is unlikely to ever help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. See the FAQ for guidance on how to improve it.

2 Answers

up vote 11 down vote accepted

Rails will be released when it works well, and not when an externally imposed deadline says it should be working well. It will be released when it is ready, and when its dependencies are ready.

Looking back in recent history, Rails 3 was incompatible with Ruby 1.9.1 and so the Rails 3.0 release was forced to wait for the Ruby 1.9.2 release. Rails 3 also introduced dependencies on some new projects. In particular, the Rails 3.0 release was forced to wait for the Bundler 1.0 and Arel 1.0 releases. The Bundler 1.0 release was also forced to wait for the Ruby 1.9.2 release. These new projects, including Bundler and Arel and including other new projects such as Mail, made Rails 3 well worth the wait.

Ultimately, for any project, the choice has to be made between (1) freezing all feature development well in advance of a deadline in order to be sure to meet the deadline and (2) actually making the project better, rapidly, and releasing it early and often whenever it is ready to be released.

link|improve this answer
feedback

The answer is likely to be "when it's ready"...

If you're in a hurry and want to start using its features now, you can use Bundler to point to Rails' GitHub repository here https://github.com/rails/rails#

Bundler doc on specifying gem git repositories: http://gembundler.com/git.html

link|improve this answer
feedback

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