Method: Mongoo::Cursor#method_missing

Defined in:
lib/mongoo/cursor.rb

#method_missing(name, *args) ⇒ Object



54
55
56
57
58
59
60
# File 'lib/mongoo/cursor.rb', line 54

def method_missing(name, *args)
  if @mongo_cursor.respond_to?(name)
    @mongo_cursor.send name, *args
  else
    super
  end
end