In Rails 2, if I had the following route:
get 'show/:user_id(/*tags)' => 'show#tags', :as => 'show_tags'
I would expect this back from show/123/foo/bar:
params[ :tags ] # [ 'foo', 'bar' ]
Now, in Rails 3, it returns:
params[ :tags ] # 'foo/bar'
Any idea why they changed this?