Module: AttrEncryptor::Adapters::DataMapper

Defined in:
lib/attr_encryptor/adapters/data_mapper.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.extended(base) ⇒ Object

:nodoc:



5
6
7
8
9
10
# File 'lib/attr_encryptor/adapters/data_mapper.rb', line 5

def self.extended(base) # :nodoc:
  class << base
    alias_method :included_without_attr_encrypted, :included
    alias_method :included, :included_with_attr_encrypted
  end
end

Instance Method Details

#included_with_attr_encrypted(base) ⇒ Object



12
13
14
15
# File 'lib/attr_encryptor/adapters/data_mapper.rb', line 12

def included_with_attr_encrypted(base)
  included_without_attr_encrypted(base)
  base.attr_encrypted_options[:encode] = true
end