In Padrino, if I want a single route to match the following urls:

  • "/does/not/work/for/some.reason"
  • "/does/not/work/for/some.bizarre.reason"

How would I do that? I.e. the last part of the url can have an arbitrarily number of periods in it, and I want that to be one of the parameters.

I tried doing the following, but the route would not match

  • get '/does/not/work/for/:name' do
  • get '/does/not/work/for/*splat' do

However, if I changed the periods to an underscore like "/does/note/work/for/some_reason" they work fine.

Also, if I do the following:

  • "/does/not/work/for/some.bizarre.reason/info"

then both

  • get '/does/not/work/for/:name/info'
  • get '/does/not/work/for/*splat/info'

match fine...

Am I missing something?

link|improve this question
Would you mind reformatting your post using the code tag or by putting 4 spaces at the beginning of the code samples? The difference between having a question answered or not can be helped by that. Also, please specify how you know that the route is being matched or not, and whether you are using a block variable with those routes or not i.e. do |name| – Iain Jan 4 at 5:48
Are you using :map => ~ ? It might be trying to interpret it as an extension. How about: "/does/not/work/for/some.reason/" ? – minikomi Jan 4 at 6:08
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.