aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record.rb
diff options
context:
space:
mode:
authorPrem Sichanugrist <s@sikachu.com>2012-08-15 01:22:50 -0400
committerPrem Sichanugrist <s@sikachu.com>2012-08-24 15:24:19 -0400
commit0ffe19056c8e8b2f9ae9d487b896cad2ce9387ad (patch)
tree8308e637c41e0f0bed0ffdb6b1fe96b741825f53 /activerecord/lib/active_record.rb
parent2c571b3f0544a6457db4818e752f4cd4bacd48b4 (diff)
downloadrails-0ffe19056c8e8b2f9ae9d487b896cad2ce9387ad.tar.gz
rails-0ffe19056c8e8b2f9ae9d487b896cad2ce9387ad.tar.bz2
rails-0ffe19056c8e8b2f9ae9d487b896cad2ce9387ad.zip
Extract ActiveRecord::SessionStore from Rails
This functionality will be available from gem `active_record-session_store` instead.
Diffstat (limited to 'activerecord/lib/active_record.rb')
-rw-r--r--activerecord/lib/active_record.rb11
1 files changed, 0 insertions, 11 deletions
diff --git a/activerecord/lib/active_record.rb b/activerecord/lib/active_record.rb
index fa94f6a941..1675127ab0 100644
--- a/activerecord/lib/active_record.rb
+++ b/activerecord/lib/active_record.rb
@@ -53,17 +53,6 @@ module ActiveRecord
autoload :ReadonlyAttributes
autoload :Reflection
autoload :Sanitization
-
- # ActiveRecord::SessionStore depends on the abstract store in Action Pack.
- # Eager loading this class would break client code that eager loads Active
- # Record standalone.
- #
- # Note that the Rails application generator creates an initializer specific
- # for setting the session store. Thus, albeit in theory this autoload would
- # not be thread-safe, in practice it is because if the application uses this
- # session store its autoload happens at boot time.
- autoload :SessionStore
-
autoload :Schema
autoload :SchemaDumper
autoload :SchemaMigration