Rails: resources_controller plugin
Learning about this Rails plugin at the moment.
http://plugins.ardes.com/doc/resources_controller/
Quickly, it can replace the scaffolded controller code.
script/generate scaffold Page title:string body:text
then strip out all the code from app/controllers/PagesController and stick in:
resources_controller_for :pages
Yay, less code. It does more and I’ll let you know about that soon.