It goes a little slower than I had planned on, mostly because the only time I have to work on it is at night in the hour or two before I go to bed. Being sleepy while training to learn a web framework is not a good way to go. Nor is learning in half hour chunks. It takes longer, sometimes, to get into that flow.
But I did luck across an answer to a question I asked here a couple of weeks back. That is, why won’t my relations between objects in my database show up in the scaffolding? I found it while reading SitePoint’s RoR book:
However, scaffolding does have its limits, as I mentioned earlier. For example, it can’t cope with ActiveRecord associations such as “a Story belongs to a User,� which we saw in Chapter 4. Additionally, since most applications end up requiring a fully fledged administrative interface, you’re often better off just creating the real thing rather than fiddling around with a dummy interface.
I’m also liking how things are starting to knit themselves together. The more I read and the more I try and fail to do things, the more I learn. Some books explain things in more direct ways than others. Some leave out details the authors don’t think are important, but which I struggle without knowing. If you read enough Ruby books, you’ll eventually bring the best elements of each into your vocabulary. And all will be good.
The trick is, as Kevin commented in the original post, to skip the scaffolding. This way, you also learn your way around the code quicker. Forcing yourself to tediously code the most basic CRUD stuff is a great way to learn some of the tricks of the trade.