[Rails-core] Re: 3.0.0rc ActionController::RoutingError No route matches

2010-07-27 Thread Nate W
Sorry, games should be users pasted the same error on a different object I was checking it on (Game). I've verified its just about any link_to to an object. Here's the exact one: %= link_to user.login.html_safe, user % Using ruby 1.8.7 (2009-06-12 patchlevel 174) [universal-darwin10.0]

[Rails-core] Re: 3.0.0rc ActionController::RoutingError No route matches

2010-07-27 Thread Nate W
Another error in my post: %= link_to user.login.html_safe, user % should be: %= link_to #{user.login}.html_safe, user % its been a long day... On Jul 27, 12:10 am, Nate W natewien...@gmail.com wrote: Sorry, games should be users pasted the same error on a different object I was checking

[Rails-core] Re: 3.0.0rc ActionController::RoutingError No route matches

2010-07-27 Thread Nate W
For better formatted info: http://stackoverflow.com/questions/3340693/rails-3-0-0-rc-actioncontrollerroutingerror-no-route-matches I looked into changes in the relevant action_dispatch lines, could it be this? http://github.com/rails/rails/commit/a1e795f554e07476f1084a0c76cb8b033d1d0b0c On Jul

Re: [Rails-core] Re: 3.0.0rc ActionController::RoutingError No route matches

2010-07-27 Thread Ryan Bigg
Judging by your SO post you fixed it, but yes I was going to point out that the error occurs when the id parameter isn't what Rails wants it to be, in your case the / needs to be %2F... but I don't sound that smart telling you what you already know though :) On 27 July 2010 16:26, Nate W