1
vote
Rails friendly url routing with open id
You could handle that second route with something like this (replace the action name with something real).
map.connect 'identity/:id', :controller => "identity",
…
4
votes
before_filter and respond_to formats
You'll need to roll your own a bit. Try this as a starting point.
before_filter :login_required, :except => [:index]
before_filter(:only => :index) do |controller|
logi …
0
votes
Validate no routing overlap when creating new resources in Ruby on Rails
You can use a route that would not otherwise exist. This way it won't make any difference if someone chooses a reserved word for a title or not.
map.product_view '/product_view/:per …
4
votes
Is it wrong to not implement all REST actions in Rails controller?
There is nothing wrong with implementing only those actions which you need. In Rails 2.3 you can be even more explicit in your routes as well.
map.resources :foo, :only => [:create, :destr …
