Sha256: d32b62637b238284ea851e033b57a8a0b96e384ba3a8c028a24c0b1c76bc7e06

Contents?: true

Size: 643 Bytes

Versions: 6

Compression:

Stored size: 643 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/active_support'
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

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
crypt_keeper-2.3.0 lib/crypt_keeper.rb
crypt_keeper-2.2.0 lib/crypt_keeper.rb
crypt_keeper-2.1.0 lib/crypt_keeper.rb
crypt_keeper-2.0.1 lib/crypt_keeper.rb
crypt_keeper-2.0.0.rc2 lib/crypt_keeper.rb
crypt_keeper-2.0.0.rc1 lib/crypt_keeper.rb