I have a class with N methods. I want one of these methods to be closed. How can i do this?
class Example def methodA end def methodP end private :methodP end