in C# an "internal" class or method can only be called from within the assembly that it is located... i know Ruby doesn't have "assemblies" or any kind of real package like them (other than gems, but they aren't really the same thing at all), but I'm wondering if there is a way for me to limit the location that a method can be called from, similar to internal?
I'm updating a small framework and created a class that has 3 methods on it. I want to be able to call 2 of the 3 methods only from my framework, and the third method from anywhere. Is this possible in ruby? or am I going about this wrong and should be creating two separate classes? or ?