Mongo storage method.
Saves the data back to Mongo. Returns `true`/`false`.
# File lib/app_config/storage/mongo.rb, line 31 def save! if @_id retval = collection.update({ '_id' => @_id}, @data.to_hash) else retval = collection.save(@data.to_hash) end !!retval end
Generated with the Darkfish Rdoc Generator 2.