Ruby Rules
Sandi Metz's Ruby Rules
Sandi Metz articulated these rules for new developers on an excellent episode of Ruby Rogues.
- Classes can be no longer than one hundred lines of code.
- Methods can be no longer than five lines of code.
- Pass no more than four parameters into a method. Hash options are parameters.
- In Rails, controllers can instantiate only one object. Therefore, views can only know about one instance variable and views should only send messages to that object (
@object.collaborator
value is not allowed).