Module: MongoMapper::Plugins::EncryptedKey

Extended by:
ActiveSupport::Concern
Defined in:
lib/symmetric_encryption/extensions/mongo_mapper/plugins/encrypted_key.rb

Defined Under Namespace

Modules: ClassMethods

Constant Summary collapse

COERCION_MAP =
{
  String     => :string,
  Integer    => :integer,
  Float      => :float,
  BigDecimal => :decimal,
  DateTime   => :datetime,
  Time       => :time,
  Date       => :date,
  Boolean    => :boolean,
  Hash       => :json
}