Obtenha arquivos rapidamente para refatorar

Geralmente são os mais alterados:

git log --pretty=format: --name-only | grep .rb | sort | uniq -c | sort -rg | head -10

Ou foi o mais corrigido:

git log --grep fix --pretty=format: --name-only | sort | uniq -c | sort -rg | head -10

Ou contém muita lógica:

wc -l app/models/* | sort | tail