Long Method
Methods which are too long
Symptoms
⢠If you canāt tell exactly what a method does at a glance, itās too long. ⢠Methods with more than one level of nesting are usually too long. ⢠Methods with more than one level of abstraction may be too long. ⢠Methods with a flog score of 10 or higher may be too long.
Checking
- Use flog gem. Eg:
flog app lib
Solutions
- Extract Methodā - Break apart long methods