The public and private methods are actually ruby ββaccess modifiers.
Basically, when you do this:
class Example public def something end private def something_else end end
The keywords public and private are not really keywords; they are method calls. I am sure that you should not overestimate them, so I would name the areas in some other way.
Andrew Radev
source share