Following Ruby standard filename convention, filename should be all in lowercase and separate each word by underscore, but I see some filenames break this rule:
commonlogger.rb # CommonLogger
methodoverride.rb # MethodOverride
showexceptions.rb # ShowExceptions
I feel it should be
common_logger.rb # CommonLogger
method_override.rb # MethodOverride
show_exceptions.rb # ShowExceptions
Do have any ideas why they have filenames like this?