reset()
public

No documentation available.

# File activerecord/lib/active_record/associations/association_proxy.rb, line 92
      def reset
        @loaded = false
        @target = nil
      end

1Note

reload next time referenced

leente ยท Dec 21, 2010

After calling reset on an association, it will be forced to be reloaded next time it's referenced. Useful after you manipulate an associated object/collection with SQL, and you want to make sure subsequent uses don't get the invalid cached version. Better than reload in that it doesn't actually reload if not needed.