method_missing (Ruby)
method_missing is a hook Ruby calls when an object receives a message it has no method for. Overriding it lets you handle arbitrary, undefined method calls…
method_missing is a hook Ruby calls when an object receives a message it has no method for. Overriding it lets you handle arbitrary, undefined method calls…