I\'ve setup a simple app and added a scaffold to do some of the work for me (I\'m a noob).
resources :cars
How do I remove certain actions fr
resources :cars, :except => [:new, :index, :delete]
or
resources :cars, :only => [:show, :edit]
Also take a look at Rails Guides