send(method, *args)
public

No documentation available.

# File activerecord/lib/active_record/associations/association_proxy.rb, line 144
      def send(method, *args)
        if proxy_respond_to?(method)
          super
        else
          load_target
          @target.send(method, *args)
        end
      end