method_missing(method, *args, &block)
Forwards any missing method call to the \target.
# File activerecord/lib/active_record/associations/association_proxy.rb, line 212 def method_missing(method, *args, &block) if load_target if @target.respond_to?(method) @target.send(method, *args, &block) else super end end end