Flowdock
method

send

Importance_0
v2.2.1 - Show latest stable - 0 notes - Class: ActiveRecord::Associations::AssociationProxy
send(method, *args) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/associations/association_proxy.rb, line 143
      def send(method, *args)
        if proxy_respond_to?(method)
          super
        else
          load_target
          @target.send(method, *args)
        end
      end
Register or log in to add new notes.