I want to match all URLs that begin with /company/, so I have this route:
match '/*id' => 'high_voltage/pages#show', :constraints => { id: /^company\/.*/ }
But the constraint doesn't do anything. The URL /abc also matches this route and the PagesController throws an error.
How should I specify this?
I need the id parameter to contain company/ in the beginning, so please don't say to just make the route match '/company/*id'. That will give the controller an id parameter without the company/.
UPDATE: I did try the regex above in normal Ruby and it works. I also tried without the ^ in front of company (though I do need company to be the first word), no luck.
UPDATE 2: It seems the problem is with the wildcard, do wildcard routes work with constraints? I can't get ANY constraint to work when there's a wildcard in the route.
UPDATE 3: Turns out this is simply a bug in Ruby on Rails.
/companyin it? – Ryan Bigg Oct 11 '12 at 20:28company(without the / in front) is that's how thoughtbot's High Voltage gem works. The id needs the full path. – at. Oct 11 '12 at 20:49^. Honestly? After looking into high-voltage, I would throw that gem out. It doing so little for you that it's not worth destroying your routing table to make it work. Rails already makes static pages very, very easy. – meagar Oct 12 '12 at 15:17PagesController, addget "pages/:action" => "pages#action"and you've pretty much done everything that Gem gives you. – meagar Oct 12 '12 at 15:18constraints: { id: /^company\/.*/ }instead of:constraints =>... – meagar Oct 12 '12 at 15:21