Where is the local variable new_user_path supposed to be defined (the
controller?).. and why didn't the script generate this?
Thanks
Ruby version 1.8.6 (i386-mswin32)
RubyGems version 1.3.3
Rails version 2.2.2
Active Record version 2.2.2
Action Pack version 2.2.2
Active Resource version 2.2.2
Action Mailer version 2.2.2
Active Support version 2.2.2
Added methods for a collection of posts goes into a :collection =>
{:action => :verb} hash.
Added methods for a single post goes into a :member => {:action =>
:verb} hash.
:action is your controller method name,
:verb is the HTTP verb, :get, :post, :put, :delete (or :any)
If you've implemented a 'remove_all' method for the collection of posts,
as well as a generate_pdf method for a single post, your routes.rb might
look like: