I'm learning Ruby on Rails from Michael Hartl's book. I really enjoy this writing, structured and clear. Nevertheless, I have a question about chapter 3.3 differences between Rails 3.0 and Rails 3.2 versions:
- The
PagesControllerbecomes aStaticPagesController @Titleis not anymore initialised in the controller, but in each page- The
@Titlevariable is initialised through "provide" function, and used through "yield" function instead of simply inserting<%= @title %>
Is it for training reasons, or is it an updated best practice of RoR development?