views:

42

answers:

1

Where is the new_post_path, edit_post_path, posts_path ... lies in the source? I need to override them.

my env:
ruby-1.9.2-preview

rails-3.0.0.beta3

A: 

config/routes.rb

the paths are implicit to the call resources :post

run rake routes to see your routing and follow the examples in routes.rb to make your own.

Jed Schneider