From: David Heinemeier Hansson Date: 2004-11-22T20:40:45+09:00 Subject: Re: Some progress but have hit a new error working through the Todo tutorial... Anyone recognize it? > Oh, whups. The state of the todo_controller.rb file that evokes this > error > is: > > require 'abstract_application' > require 'todo' > > class TodoController < AbstractApplicationController > helper :todo > > > def index > scaffold:todo > end > end This needs to be: class TodoController < AbstractApplicationController helper :todo scaffold :todo end You don't want the scaffold macro inside the index action. Also, I recommend using the Rails mailing list for questions like these. Hundreds of Rails programmers are hanging out there ready to help. http://lists.rubyonrails.org/mailman/listinfo/rails -- David Heinemeier Hansson, http://www.basecamphq.com/ -- Web-based Project Management http://www.rubyonrails.org/ -- Web-application framework for Ruby http://macromates.com/ -- TextMate: Code and markup editor (OS X) http://www.loudthinking.com/ -- Broadcasting Brain