Hi Mel,
I'm not really a rails pro, but from my understanding, if you create a
new scaffold, the rails generators will automatically create a
controller, model and scaffold/view.
Fairly good in my view, but it does take some getting used to.
For Example....
<code>
rails testing
cd testing
ruby script/generate scaffold MODELNAME
</code>
(Of course replacing MODELNAME with a new model name (that hasn't yet
been created) like Products)
This will create these files:
exists app/models/
exists app/controllers/
exists app/helpers/
create app/views/products
exists app/views/layouts/
exists test/functional/
exists test/unit/
create app/views/products/index.html.erb
create app/views/products/show.html.erb
create app/views/products/new.html.erb
create app/views/products/edit.html.erb
create app/views/layouts/products.html.erb
create public/stylesheets/scaffold.css
dependency model
exists app/models/
exists test/unit/
exists test/fixtures/
create app/models/product.rb
create test/unit/product_test.rb
create test/fixtures/products.yml
create db/migrate
create db/migrate/001_create_products.rb
create app/controllers/products_controller.rb
create test/functional/products_controller_test.rb
create app/helpers/products_helper.rb
route map.resources :products
Hope this answers your question...
Mitch