class ActiveRecord::Associations::AssociationProxy

Public Instance Methods

send(method, *args) click to toggle source
Calls superclass method
# File lib/futurizer/patches/activerecord/association_proxy.rb, line 7
def send(method, *args)
  if proxy_respond_to?(method, true)
    super
  else
    load_target
    @target.send(method, *args)
  end
end