A small change to the README. Corrected how to instantiate the GridFS object.

This commit is contained in:
Nicholas Young 2011-07-03 14:07:20 -07:00
parent 6b8d19b3fb
commit 7b0a35b631
1 changed files with 2 additions and 1 deletions

View File

@ -109,9 +109,10 @@ for details, and see examples/gridfs.rb for code that uses many of the Grid
features (metadata, content type, seek, tell, etc). features (metadata, content type, seek, tell, etc).
Examples: Examples:
# Write a file on disk to the Grid # Write a file on disk to the Grid
file = File.open('image.jpg') file = File.open('image.jpg')
grid = Grid.new(db) grid = Mongo::Grid.new(db)
id = grid.put(file) id = grid.put(file)
# Retrieve the file # Retrieve the file