Sha256: aed7f10f7f64fff1b317fb1bf784611e82824ee0fd2ace77386fbdb2e3bf4a48

Contents?: true

Size: 820 Bytes

Versions: 3

Compression:

Stored size: 820 Bytes

Contents

# frozen_string_literal: true

require 'logger'
require 'active_support'
require 'active_record_postgresql_xverify/version'
require 'active_record_postgresql_xverify/constants'
require 'active_record_postgresql_xverify/logger'
require 'active_record_postgresql_xverify/utils'
require 'active_record_postgresql_xverify/config'
require 'active_record_postgresql_xverify/error_handler'
require 'active_record_postgresql_xverify/verifier'
require 'active_record_postgresql_xverify/verifiers/aurora_master'

ActiveSupport.on_load :active_record do
  require 'active_record/connection_adapters/postgresql_adapter'
  ActiveRecord::ConnectionAdapters::PostgreSQLAdapter.prepend ActiveRecordPostgresqlXverify::ErrorHandler
  ActiveRecord::ConnectionAdapters::PostgreSQLAdapter.prepend ActiveRecordPostgresqlXverify::Verifier
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
active_record_postgresql_xverify-0.2.0 lib/active_record_postgresql_xverify.rb
active_record_postgresql_xverify-0.1.1 lib/active_record_postgresql_xverify.rb
active_record_postgresql_xverify-0.1.0 lib/active_record_postgresql_xverify.rb