A small change to the README. Corrected how to instantiate the GridFS object.
This commit is contained in:
parent
6b8d19b3fb
commit
7b0a35b631
|
@ -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).
|
||||
|
||||
Examples:
|
||||
|
||||
# Write a file on disk to the Grid
|
||||
file = File.open('image.jpg')
|
||||
grid = Grid.new(db)
|
||||
grid = Mongo::Grid.new(db)
|
||||
id = grid.put(file)
|
||||
|
||||
# Retrieve the file
|
||||
|
|
Loading…
Reference in New Issue