With Sinatra routes, how can there be both a required named parameter and an optional named parameter in the same part of the route.
Optional route parameter works fine here
get '/widgets.?:format?'
But, try to combine a required named paramter, and things break.
get '/widgets/:id.?:format?'
Requests for /widgets/abc.json pass the entire abc.json as the id parameter.
The Sinatra compiled regex is:
/^\/widgets\/([^\/?#]+)(?:\.|%2E)?([^\/?#]+)?$/
:idis greedy, but adding?to the rest makes them ungreedy. Please open an issue, I might be able to fix this. – Konstantin Haase Mar 21 '12 at 14:48