views:

123

answers:

2

So Rails and Merb are sort of merging in Rails 3.0? Thats how its been described to me anyway. This means that a lot of what made Rails, Rails will now be moved to plug-ins so that it can be more lightweight. HOwever, what are those plug-ins going to be and as a new Rails developer, what are THE must have - and also more mature - plug-ins that a Rails developer should install? Some good examples I can think of might be will_paginate, ruby_prof or sqlite3-ruby.

+4  A: 

My understanding is that Rails (3) will still essentially be composed of the framework components that make it up now i.e. ActiveRecord, ActiveSupport, ActionPack, even prototype.js etc. It's just that the internals have been significantly refactored and cleaned up and it will be much easier to swap out components for alternatives. For example, perhaps replacing ActiveRecord with Data Mapper.

  • The tag line for Rails 3 is the same as Burger King i.e. Have It Your Way (I'm not joking!)
John Topley
+1 for BK comment. I saw David's keynote speech here: http://en.oreilly.com/rails2009
DJTripleThreat
+1  A: 

Many releases have taken out significant components and put them in plugins, you probably haven't even noticed most of the time. The best thing to do would be to just stay upgraded and pay attention to deprecation messages in your logs and you'll be fine.

This is all thanks to posts like this which highlighted the problems to the community earlier on. Now it should be much, much smoother.

Chuck Vose
+1 for rake deprecated (from the link)
DJTripleThreat