Do you know a resource which documents all the available options for the ActionDispatch scope method and their usage?
I'm quite tired of digging into each merge_X_scope method trying to understand the X option implications.
...
I need to match /entries/slug-here/new and send it to EntriesController#new
Tried following ways, both didn't work :(
resources :entries do
member do
get :new
end
end
resources :entries do
get :new, :on => :member
end
Temporary hardcoded paths with bunch of matches, but it looks ugly >.<
UPDATED:
Same with create method ...