Dynamic scaffold not working

Hi.

I created a model called “player” using rake db:migration and right after went to try a dynamic scaffold to try it. So I created a controller called “admin” and the admin_controller.rb became like this:

class AdminController < ApplicationController scaffold :player end

but when I tried http://localhost:3000/admin/, I got this error message:

uninitialized constant Player

Then I created the scaffold statically by doing script\generate scaffold player

Now, I can try to access the admin controller and everything goes nice.

I tried to destroy the static scaffold, but then the error came back.

I’m using Ruby on Rails on Windows XP, using Mongrel as server. Is there any configuration I should set to make the dynamic scaffold work? I’m following the RoR book steps, and there’s nothing about this error there.

Thanks in advance