I posted something similar to this at the original blog...<p>This is exactly how I feel as a developer. And I like that this is stated it so clearly - that Rails isn't for beginners anymore.<p>The point about ActiveSupport is so well put because it's something I cover on day one of my training, where we start with Ruby and move into ActiveSupport, and then Rails.<p>I've been quite vocal about the fact that Rails is harder to teach than it was in the past. But I don't think Rails needs to change or slow down. I just wanted to see some saner defaults that don't kitchen-sink it up.<p>I don't advocate making Rails slow down. Far from it. I advocate making Rails a little less of a pain for someone getting started. A default Rails application in 3.1 includes a lot of stuff that a beginner doesn't need but experts might appreciate, but how many experts are creating new Rails apps all the time? And if they are, how many use "rails new" instead of their own custom template? I know I do, because I use HAML and RSpec and configuring that myself takes too much time. I guess I feel like 'rails new', which is already driven by a template, could tone its default options.<p>My question for the HN crowd is, how many non-newbie Rails devs are creating new Rails projects all the time, using the defaults like test::unit, ERb, etc.?
As a person who "Began" really learning rails this spring (only for 1 project, to help be the other end of the frontend/backend communications), it's definitely getting into non-newbie friendly territory to start using it.<p>It's starting to have the problem of "YOU MUST UNDERSTAND ALL OF THIS" before you can deploy anything useful issue. (I don't mean all of rails, but you do need to understand a very large number of topics before you can do a real app these days).<p>It's making other lighter weight ruby based web frameworks look appealing even at this point (as they'd still work on heroku for the most part).
Rails never WAS "for beginners". That was never the focus and intent.<p>The point of Rails is to make developers productive, not to make newbies feel at home.<p>Yes, you could just ignore all the "magic" and treat it like a black box, and you still can. But it wouldn't take you too far, any kind of real application requires real understanding of the concepts and often implementation too.<p>Once you know your ins and outs you indeed can create stuff very fast, taking advantage of all the magical things, and new versions simply have more of this "magic". It helps a lot if you know how it works. It might confuse if you don't.<p>So.. yes, if you have no clue the latest versions of Rails might take you more time to master, at the same time it makes developers "that know" even more productive then before.