Standup 7/25/2008
Interesting Things
- There was an edge version of Rails (this project has a frozen Rails at some point in the past) that had a bug where a namespaced route would send a POST that should go to
MyController#createwas instead going to a POST toMyController#index. The fix is to freeze to current Edge, or usealias_method.
Ask for Help
"Any way to turn off a validation in a re-opened class?"
No way to do this. Best to refactor by pulling the validation out of the class and then mixing it in, or not, at a different level.








We had the same question come up in our Studio on Wednesday. It looked to me like it was possible to clear validations in a re-opened class, so I wrote this little guy: http://github.com/redsquirrel/nest/tree/master/validation_killer
remove