# File lib/rr/injections/method_missing_injection.rb, line 70 def bind_method id = BoundObjects.size BoundObjects[id] = subject_class subject_class.class_eval(("def method_missing(method_name, *args, &block)\nif respond_to_missing?(method_name, true)\nsuper\nelse\nobj = ::RR::Injections::MethodMissingInjection::BoundObjects[\#{id}]\nMethodDispatches::MethodMissingDispatch.new(self, obj, method_name, args, block).call\nend\nend\n"), __FILE__, __LINE__ + 1) end