S
Stefan Achatz
Hello,
I'm glad to get so well founded help here, so here's another beginner
question:
Trying to make a singleton method private I tried this:
class MyClass
def MyClass.class_private
end
def private
end
private
rivate
private :MyClass::class_private
end
The nomenclature of the singleton method doesn't make it.
What's the right naming?
Thanks in advance
Stefan Achatz
I'm glad to get so well founded help here, so here's another beginner
question:
Trying to make a singleton method private I tried this:
class MyClass
def MyClass.class_private
end
def private
end
private
private :MyClass::class_private
end
The nomenclature of the singleton method doesn't make it.
What's the right naming?
Thanks in advance
Stefan Achatz