respond_to?(*args)
public
Does the proxy or its \target
respond to symbol?
# File activerecord/lib/active_record/associations/association_proxy.rb, line 78
def respond_to?(*args)
proxy_respond_to?(*args) || (load_target && @target.respond_to?(*args))
end