Method: Mongar::Mongo::Collection#create

Defined in:
lib/mongar/mongo/collection.rb

#create(document) ⇒ Object



91
92
93
94
95
96
# File 'lib/mongar/mongo/collection.rb', line 91

def create(document)
  log_activity
  
  logger.debug "#{name}.create #{document.inspect}"
  !collection.insert(document, { :safe => true }).nil?
end