|
|
|
|
|
by pmontra
3458 days ago
|
|
Ruby doesn't have private methods. You can always object.send(:method) and the only effect of the private keyword is to disable the object.method() syntactic sugar. No wonder that even methods marked as private can be redefined. |
|