Module: AttrEncrypted::Adapters::DataMapper
- Defined in:
- lib/attr_encrypted/adapters/data_mapper.rb
Class Method Summary collapse
Instance Method Summary collapse
Class Method Details
.extended(base) ⇒ Object
5 6 7 8 9 10 |
# File 'lib/attr_encrypted/adapters/data_mapper.rb', line 5 def self.extended(base) base.eigenclass_eval do 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_encrypted/adapters/data_mapper.rb', line 12 def included_with_attr_encrypted(base) included_without_attr_encrypted(base) base.[:encode] = true end |