I just updated my blog to Rails 4 from 3. I have a catch all route pattern:
get ':year/:month/:permalink' => 'posts#show'
So routes look like this:
/2012/02/blog_permalink
That works fine, but if I add a forward slash, I get:
No route matches [GET] "/2012/02/blog_permalink/"
I can't seem to figure this one out? I've tried adding a "/" to the end of the route and using :trailing_slash => true. But both of those didn't help.