October 2008
1 post
3 tags
Ruby on Rails Code Quality Checklist by Matt Moore
Each controller action only calls one model method other than an initial find or new. (Make custom .new or .update methods in the model with all necessary).  Only one or two instance variables are shared between each controller and view.  All model and variable names are both immediately obvious (to a new developer) and as short as possible without using abbreviations.  All custom “finds”...
Oct 4th