Sha256: c9dd052c6a8effe8dffedd0f68d4e2acd056ac32749d86c4a34b8fcbd95a2433
Contents?: true
Size: 590 Bytes
Versions: 4
Compression:
Stored size: 590 Bytes
Contents
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_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
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
crypt_keeper-1.1.0 | lib/crypt_keeper.rb |
crypt_keeper-1.0.1 | lib/crypt_keeper.rb |
crypt_keeper-1.0.0 | lib/crypt_keeper.rb |
crypt_keeper-1.0.0.beta1 | lib/crypt_keeper.rb |