Sha256: 9b026690e7a7501e5f5c690964ef7b08aad837c767908bb38299116fca17b25e
Contents?: true
Size: 1.61 KB
Versions: 1
Compression:
Stored size: 1.61 KB
Contents
module ActiveRecord::Turntable module ActiveRecordExt extend ActiveSupport::Concern extend ActiveSupport::Autoload eager_autoload do autoload :AbstractAdapter autoload :CleverLoad autoload :ConnectionHandlerExtension autoload :LogSubscriber autoload :Persistence autoload :SchemaDumper autoload :Sequencer autoload :Relation autoload :Transactions autoload :AssociationPreloader autoload :Association autoload :LockingOptimistic end included do include Transactions ActiveRecord::ConnectionAdapters::AbstractAdapter.prepend(Sequencer) ActiveRecord::ConnectionAdapters::AbstractAdapter.prepend(AbstractAdapter) ActiveRecord::LogSubscriber.prepend(LogSubscriber) ActiveRecord::Persistence.include(Persistence) ActiveRecord::Locking::Optimistic.include(LockingOptimistic) ActiveRecord::Relation.include(CleverLoad) ActiveRecord::Relation.prepend(Relation) ActiveRecord::Migration.include(ActiveRecord::Turntable::Migration) ActiveRecord::ConnectionAdapters::ConnectionHandler.prepend(ConnectionHandlerExtension) ActiveRecord::Associations::Preloader::Association.prepend(AssociationPreloader) ActiveRecord::Associations::Association.include(Association) require "active_record/turntable/active_record_ext/fixtures" require "active_record/turntable/active_record_ext/migration_proxy" require "active_record/turntable/active_record_ext/activerecord_import_ext" require "active_record/turntable/active_record_ext/acts_as_archive_extension" end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
activerecord-turntable-3.0.0.alpha1 | lib/active_record/turntable/active_record_ext.rb |