Sha256: 7991065c8201ad75cfa4186b592006fd42de56d0624020c757416f27701a61ca

Contents?: true

Size: 1.45 KB

Versions: 2

Compression:

Stored size: 1.45 KB

Contents

# frozen_string_literal: true

module Dynamoid
  # All modules that a Document is composed of are defined in this
  # module, to keep the document class from getting too cluttered.
  # @private
  module Components
    extend ActiveSupport::Concern

    included do
      extend ActiveModel::Translation
      extend ActiveModel::Callbacks

      define_model_callbacks :create, :save, :destroy, :update
      define_model_callbacks :initialize, :find, :touch, only: :after

      before_save :set_expires_field
      after_initialize :set_inheritance_field
    end

    include ActiveModel::AttributeMethods # Actually it will be inclided in Dirty module again
    include ActiveModel::Conversion
    include ActiveModel::MassAssignmentSecurity if defined?(ActiveModel::MassAssignmentSecurity)
    include ActiveModel::Naming
    include ActiveModel::Observing if defined?(ActiveModel::Observing)
    include ActiveModel::Serializers::JSON
    include ActiveModel::Serializers::Xml if defined?(ActiveModel::Serializers::Xml)
    include Dynamoid::Persistence
    include Dynamoid::Loadable
    # Dirty module should be included after Persistence and Loadable
    # because it overrides some methods declared in these modules
    include Dynamoid::Dirty
    include Dynamoid::Fields
    include Dynamoid::Indexes
    include Dynamoid::Finders
    include Dynamoid::Associations
    include Dynamoid::Criteria
    include Dynamoid::Validations
    include Dynamoid::IdentityMap
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
dynamoid-3.10.0 lib/dynamoid/components.rb
dynamoid-3.9.0 lib/dynamoid/components.rb