class AdminController < ApplicationController
scaffold :product
end
Above code works properly in Rails 1.2. But for the above mentioned code it gives error method missing 'scaffold' in Rails 2.2.2. Above code is used for dynamic scaffolding in Rails 1.2. Is this dynamic scaffolding supported in Rails 2.2.2?
or do I need to use ruby script/generate 'model_name' field_names to generate static scaffolding only, in Rails 2.2.2?