require 'active_record' require 'crypt_keeper/version' require 'crypt_keeper/model' require 'crypt_keeper/helper' require 'crypt_keeper/provider/base' require 'crypt_keeper/provider/aes_new' require 'crypt_keeper/provider/mysql_aes_new' require 'crypt_keeper/provider/postgres_base' require 'crypt_keeper/provider/postgres_pgp' require 'crypt_keeper/provider/postgres_pgp_public_key' module CryptKeeper class << self attr_accessor :stub_encryption alias_method :stub_encryption?, :stub_encryption attr_accessor :silence_logs alias_method :silence_logs?, :silence_logs end end CryptKeeper.stub_encryption = false