So I have an app using rails 3 and mongodb that serves files. I want to import all of the files into gridfs using a runner process without creating new ObjectId's for the files already in the system. Essentially, I want to attach the files using carrierwave to the file object already in the database.
For some reason, when I create a new file document, I can attach a local file without a problem. I can't, however, attach a local file to a document that's been previously created.
I've tried every form of Mongoid's update, and every time I get a method missing or unidentified method.
So for example, this works:
somefile = Upload.new(
:name => "somefile.ext"
)
somefile.upload = File.open("/foo/bar.ext")
somefile.save!
But this doesn't:
somefile = Upload.first(:conditions => {:name => "somefile.ext"})
somefile.upload = File.open("/foo/bar.ext")
somefile.save!
Any ideas?