Other than self.class.send :method, args..., of course. I'd like to make a rather complex method available at both the class and instance level without duplicating the code.
|
|
|
||
|
|
|
|
Here is a code snippet to go along with the question. Using "private" in a class definition does not apply to class methods. You need to use "private_class_method" as in the following example.
I don't see a way to get around this. The documentation says that you cannot specify the receive of a private method. Also you can only access a private method from the same instance. The class Foo is a different object than a given instance of Foo. Don't take my answer as final. I'm certainly not an expert, but I wanted to provide a code snippet so that others who attempt to answer will have properly private class methods. |
|||
|
|
|
|
@Jonathan Branam: that was my assumption, but I wanted to make sure nobody else had found a way around. Visibility in Ruby is very different from that in Java. You're also quite right that
|
||
|
|
|
|
You don't have to use send, you can just invoke the method directly on self.class. Of course you could also invoke it using ClassName.method but I don't recommend it as it violates the DRY principle and makes it more difficult to rename your class in the future. Example:
Ouputs: baz called |
||
|
|
|
|
Unless I'm misunderstanding, don't you just need something like this:
Of course you could change the second definition to use your self.class.send approach if you wanted to avoid hardcoding the class name... |
|||
|
|
