public
Description: An INCOMPLETE ActiveRecord plugin that encrypts/decrypts attributes transparently for secure database storage
Clone URL: git://github.com/shuber/attr_encrypted.git
attr_encrypted / init.rb
100644 7 lines (5 sloc) 0.201 kb
1
2
3
4
5
6
7
require 'huberry/eigen'
require 'huberry/attr_encrypted'
require 'huberry/attr_encrypted/default_encryptor'
 
ActiveRecord::Base.extend Huberry::AttrEncrypted
 
$:.unshift File.dirname(__FILE__) + '/lib'