method
send
v2.3.8 -
Show latest stable
- Class:
ActiveRecord::Associations::AssociationProxy
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