What's the best way to forward all unhandled requests within a namespace to another namespace, while preserving the format of the original request?

namespace :api do
  namespace :v1 do
    ...
  end

  namespace :v2 do
    ...
  end

  # works but doesn't respect original request format (json, xml, etc.)
  match '*route' => redirect("/api/v2/%{route}")
end

The above will allow the API consumer to choose between the latest version of the API or a specific one.

Props if you can show how to do this without the visible redirect.

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.