Sha256: e87f9bb43c25acfc9ae17dfcee2e09ede706442a25cb188d0f5cbacb8288bf4a

Contents?: true

Size: 1.01 KB

Versions: 4

Compression:

Stored size: 1.01 KB

Contents

# encoding: utf-8
module Mongoid #:nodoc:
  module Persistence #:nodoc:

    # Remove is a persistence command responsible for deleting a document from
    # the database.
    #
    # The underlying query resembles the following MongoDB query:
    #
    #   collection.remove(
    #     { "_id" : 1 },
    #     false
    #   );
    class Remove < Command

      # Remove the document from the database: delegates to the MongoDB
      # collection remove method.
      #
      # Example:
      #
      # <tt>Remove.persist</tt>
      #
      # Returns:
      #
      # +true+ if success, +false+ if not.
      def persist
        remove
      end

      protected
      # Remove the document from the database.
      def remove
        if document.embedded?
          Persistence::RemoveEmbedded.new(
            document,
            options.merge(:validate => validate, :suppress => suppress)
          ).persist
        else
          collection.remove({ :_id => document.id }, options)
        end; true
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
mongoid-braxton-2.0.2 lib/mongoid/persistence/remove.rb
mongoid-2.0.2 lib/mongoid/persistence/remove.rb
mongoid-2.0.1 lib/mongoid/persistence/remove.rb
mongoid-2.0.0 lib/mongoid/persistence/remove.rb