# frozen_string_literal: true if defined?(DataMapper) module AttrEncrypted module Adapters module DataMapper def self.extended(base) # :nodoc: class << base alias_method :included_without_attr_encrypted, :included alias_method :included, :included_with_attr_encrypted end end def included_with_attr_encrypted(base) included_without_attr_encrypted(base) base.extend AttrEncrypted base.attr_encrypted_options[:encode] = true end end end end DataMapper::Resource.extend AttrEncrypted::Adapters::DataMapper end