最佳答案
I've got an route for my users like /iGEL/contributions
, which works fine. But now a user registered with a name like 'A.and.B.', and now the route fails to match, since the name contains dots.
My route:
get "/:user/contributions" => 'users#contributions'
Any ideas?