vote up 3 vote down star

In my routes.rb I've got:

map.connect ':name',
            :controller => 'my_classes',
            :action => 'show'

And that works perfectly, so a url like this sends params like so:

http://localhost:30000/awesome
Parameters: {"name"=>"awesome"}

But if I have something like this I get this error:

http://localhost:30000/weak.sauce
ActionController::RoutingError (No route matches "/weak.sauce" with {:method=>:get}):

How can I get around this?

flag

1 Answer

vote up 5 vote down check

You could try

map.connect ':name',
            :controller => 'my_classes',
            :action => 'show',
            :name => /[a-zA-Z\.]+/

or use whatever regular expression you want for the name. (The one I suggested should match any letter or dot combination - weak.sauce, weak...sauce, .weak.sauce., etc.)

link|flag
Perfect. I really need to spend a week on regular expressions, I had a hunch the solution would include them. – rpflo Sep 5 at 18:36
1  
in the regular expression you might want to escape the "." like so: \. – valters Sep 5 at 19:53
@valters: Thanks, corrected it. – Vinay Sajip Sep 5 at 21:57
Since the dot is within a character class it doesn't need to be escaped. Still escaping it won't hurt anything either. – Andrew Hare Sep 5 at 22:13
True, I forgot (reaches for coffee ;-) – Vinay Sajip Sep 5 at 22:18

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.