hacks/safe_method
class SafeMethod < Object
A SafeMethod is like a Method, but does checking to make sure it is not called on an inappropriate (private/protected) method.
Public Methods
initialize(obj, method)
call(*args, &block)
[]
[] is an alias for call.
to_proc
arity
Public Methods
safe_method(obj, method)
Return a new SafeMethod for the given object and method.
Requires
loaders
safe_send