Ruby uses the same lookup for methods and for local variables... current implementation will find the closest method (iff exists) instead of closest local var name when method_missing invoked. Ensure local variables get searched separately from method names, if possible... might have to research this.
Ruby uses the same lookup for methods and for local variables... current implementation will find the closest method (iff exists) instead of closest local var name when method_missing invoked. Ensure local variables get searched separately from method names, if possible... might have to research this.