Om du använder Mongoid 3 ger den enkel åtkomst till MongoDB-drivrutinen:Moped. Här är ett exempel på att få åtkomst till vissa rådata utan att använda modeller för att komma åt data:
db = Mongoid::Sessions.default
# inserting a new document
collection = db[:collection_name]
collection.insert(name: 'my new document')
# finding a document
doc = collection.find(name: 'my new document').first
# iterating over all documents in a collection
collection.find.each do |document|
puts document.inspect
end