Implements the reader
method, e.g. foo.items for Foo.has_many :items
# File activerecord/lib/active_record/associations/collection_association.rb, line 32
def reader
ensure_klass_exists!
if stale_target?
reload
end
@proxy ||= CollectionProxy.create(klass, self)
@proxy.reset_scope
end