Displaying 1 result from an estimated 1 matches for "collection_reader_method".
2007 Nov 12
1
Possible bug
Bug in associations or not?
def has_many
if options[:through]
collection_reader_method(reflection,
HasManyThroughAssociation) <--- FIRST CALL
collection_accessor_methods(reflection,
HasManyThroughAssociation, false) <-- CALLED AGAIN INSIDE THIS METHOD
else
....
def collection_accessor_methods(reflection, association_proxy_class,
writer = true)
collection...