0
votes
0answers
26 views

Routing a parameter that includes multiple consecutive slashes

NOTE: the advice from Rails routing with a parameter that includes slash(/) does not seem to work for me... my route looks like: get '/r/*code_or_url' => 'pixels#visit', :as => :visit, ...
1
vote
0answers
110 views

Adding Requirements to Globbed Routes in Rails

I have a question regarding regex matching on a globbed route in rails 2.3. This ticket explains exactly the same problem I'm having: Rails routes with wildcard and requirements The problem is that ...
0
votes
0answers
447 views

Rails 3 routing: Globbing breaks the implicit (.:format) parameter

In Rails 3(.0.4), user defined routes have an implicit (.:format) parameter on the end (note the "as HTML/XML"): match "/~(/:foo)" => "categories#index" Started GET "/~/bar" for 127.0.0.1 at ...