ldilley / rubircd

:speech_balloon: An IRC server written in Ruby
http://www.dilley.me/rubircd
GNU General Public License v3.0
22 stars 4 forks source link

Shorten/break up long methods #37

Open ldilley opened 9 years ago

ldilley commented 9 years ago

Try to make long methods smaller by reducing the amount of lines required to perform their task. If that is not an option, break the method up into slimmer methods for easier readability and maintenance. The MODE module is a perfect example of this problem.

ldilley commented 9 years ago

This would also be considered Rubocop cleanup phase 2.