[Rails] Re: Really bad problem with Webrick/Rails using 3.1 - Help?

2011-05-30 Thread egervari
Yeah, I don't think it has anything to do with the asset pipeline - it is definitely a problem with the routes. I made a change on purpose to cause the route to fail, and it causes the effects that I am talking about. Here's some webrick verbiage. Notice that it took 35147ms to complete the

[Rails] Re: Really bad problem with Webrick/Rails using 3.1 - Help?

2011-05-30 Thread egervari
Here's another one: ActionView::Template::Error (undefined local variable or method `edit_user_password' for ##Class:0x0004c829f0: 0x0004c70b60): 51: 52: tr 53: tdPassword:/td 54: td[HIDDEN] (%= link_to Reset Password, edit_user_password %) 55:

[Rails] Re: Really bad problem with Webrick/Rails using 3.1 - Help?

2011-05-30 Thread egervari
I think it's any syntax on the page now. It just happened that routes were my common mistakes before I tested in a browser, but after some more what if tests, I have had this problem come up in other scenarios... so you can ignore my specific errors. The last time this happened, my computer was

Re: [Rails] Re: Really bad problem with Webrick/Rails using 3.1 - Help?

2011-05-30 Thread Bryan Donovan
This is the expected behavior, right? There is no method named edit_user_password, so it's raising an error. Why is the route to this resource /trainingdividend/rest/myProfile/editPassword ? And not something like /passwords/edit or something else that is simpler and more Rails-like? Is