This is the fastest way to drop all data.
Purge all data in all collections, including indexes.
Purge all data.
Mongoid::Config.purge!
Returns:
true.
Since:
2.0.2
172 173 174 175 176
# File 'lib/mongoid/config.rb', line 172 def purge! Sessions.default.collections.each do |collection| collection.drop end and true end