Method deprecated or moved
This method is deprecated or moved on the latest stable version.
The last existing version (v3.0.9) is shown here.
respond_to?(*args)
public
Does the proxy or its target
respond to symbol?
# File activerecord/lib/active_record/associations/association_proxy.rb, line 83
def respond_to?(*args)
proxy_respond_to?(*args) || (load_target && @target.respond_to?(*args))
end