Class: MongoMapper::Associations::Collection

Inherits:
Proxy show all
Defined in:
lib/mongo_mapper/associations/collection.rb

Instance Attribute Summary

Attributes inherited from Proxy

#owner, #reflection, #target

Instance Method Summary collapse

Methods inherited from Proxy

#===, #blank?, #initialize, #inspect, #loaded, #loaded?, #nil?, #present?, #proxy_respond_to?, #reload, #replace, #respond_to?, #send

Constructor Details

This class inherits a constructor from MongoMapper::Associations::Proxy

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class MongoMapper::Associations::Proxy

Instance Method Details

#resetObject



13
14
15
16
# File 'lib/mongo_mapper/associations/collection.rb', line 13

def reset
  super
  target = []
end

#to_aryObject



4
5
6
7
8
9
10
11
# File 'lib/mongo_mapper/associations/collection.rb', line 4

def to_ary
  load_target
  if target.is_a?(Array)
    target.to_ary
  else
    Array(target)
  end
end