Zeitwork is a gem which will auto load classes without having to have explicit "require" statements in every file. It's used by a few of our dependencies already, and I think it's worth introducing, as we occasionally have production errors due to missing require statements.
To do the auto loading, the names of the classes and the files must match according to a particular convention, and this PR tidies up a lot of unconventional file or class names.
Very boring PR. Just nod and smile.
Zeitwork is a gem which will auto load classes without having to have explicit "require" statements in every file. It's used by a few of our dependencies already, and I think it's worth introducing, as we occasionally have production errors due to missing require statements.
To do the auto loading, the names of the classes and the files must match according to a particular convention, and this PR tidies up a lot of unconventional file or class names.