lib/crypt_keeper.rb in crypt_keeper-0.4.2 vs lib/crypt_keeper.rb in crypt_keeper-0.5.0

- old
+ new

@@ -1,10 +1,15 @@ +require 'active_record' + require 'crypt_keeper/version' require 'crypt_keeper/model' -require 'active_record' +require 'crypt_keeper/provider/aes' +require 'crypt_keeper/provider/mysql_aes' +require 'crypt_keeper/provider/postgres_pgp' + module CryptKeeper end -ActiveSupport.on_load(:active_record) do +ActiveSupport.on_load :active_record do include CryptKeeper::Model end