method

marshal_load

marshal_load(data)
public

No documentation available.

# File activerecord/lib/active_record/associations/association.rb, line 160
      def marshal_load(data)
        reflection_name, ivars = data
        ivars.each { |name, val| instance_variable_set(name, val) }
        @reflection = @owner.class._reflect_on_association(reflection_name)
      end