method
send

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