MCS
MCS

Reputation: 22541

Which version of Rails should I use

I'm looking to build a web interface for an existing Ruby app and I'm trying to figure out which version of Rails to use - the latest current version 2.3 or the soon-to-be-released version 3.0.

The reasons for using 2.3 are pretty straightforward: it's the current version and it's stable.

My reasons for considering 3.0 are:

Is 3.0's feature set really so much better? Is it stable enough for use or am I only asking for trouble? Anyone have any idea how hard it will be to migrate to 3.0 from 2.3?

Upvotes: 2

Views: 972

Answers (4)

Shailesh Kalamkar
Shailesh Kalamkar

Reputation: 753

As per stability Rails 2.3.5 is good with Ruby 1.8.7. Rails 3 and Ruby 1.9.1 are out, but have not had extensive testing for stability. For the sake of stability use the combination of Rails 2.3.5 and Ruby 1.8.7

Upvotes: 0

Andrew Grimm
Andrew Grimm

Reputation: 81530

Rails 3 has since been released: Rails 3.0: It's ready!

Upvotes: 0

Andrew Grimm
Andrew Grimm

Reputation: 81530

What kind of timeframe are you looking at?

You may want to read this thread to see what some Rails individuals think about communicating progress with Rails 3. :(

Upvotes: 0

nicholasklick
nicholasklick

Reputation: 1212

Rails3 has already been released. Using it in production now. Most plugins have been updated for it. Pros: Speed, new Active Record interface, routes, mailer, more semantic, better integration with Rack.

The list goes on and on.

The key would be that Rails 3 is pretty debugged/tested at this point and ready for production use.

Upvotes: 4

Related Questions