I am quite new to Rails3, I basically created a subscribers scaffolding, I only want my app to respond to new and create actions.
subscribers
new
create
Thank you for your answers, it helped me find the exact solution to my question:
resources :subscribers, :only => [:new, :create], :path => '', :path_names => {:new => ''}
Tested and working on Rails 3 :)