Mongoid 3を使用している場合は、MongoDBドライバーであるMopedに簡単にアクセスできます。モデルを使用せずに生データにアクセスする例を次に示します。
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