aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/base.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2010-08-30 14:09:16 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2010-09-09 14:37:57 -0700
commit4b7b8d9e19b662d8a1135fec73b422202f97472a (patch)
treec747270b5ec551f6d96eb7e47da71b2bb389ae34 /activerecord/lib/active_record/base.rb
parentcc81b04ae540c0b75f5428951e11dea2f13a0946 (diff)
downloadrails-4b7b8d9e19b662d8a1135fec73b422202f97472a.tar.gz
rails-4b7b8d9e19b662d8a1135fec73b422202f97472a.tar.bz2
rails-4b7b8d9e19b662d8a1135fec73b422202f97472a.zip
Cache unserialized attributes
Diffstat (limited to 'activerecord/lib/active_record/base.rb')
-rw-r--r--activerecord/lib/active_record/base.rb11
1 files changed, 5 insertions, 6 deletions
diff --git a/activerecord/lib/active_record/base.rb b/activerecord/lib/active_record/base.rb
index fe888ca369..5da4eb169b 100644
--- a/activerecord/lib/active_record/base.rb
+++ b/activerecord/lib/active_record/base.rb
@@ -415,6 +415,11 @@ module ActiveRecord #:nodoc:
class_inheritable_accessor :default_scoping, :instance_writer => false
self.default_scoping = []
+ # Returns a hash of all the attributes that have been specified for serialization as
+ # keys and their class restriction as values.
+ class_attribute :serialized_attributes
+ self.serialized_attributes = {}
+
class << self # Class methods
delegate :find, :first, :last, :all, :destroy, :destroy_all, :exists?, :delete, :delete_all, :update, :update_all, :to => :scoped
delegate :find_each, :find_in_batches, :to => :scoped
@@ -526,12 +531,6 @@ module ActiveRecord #:nodoc:
serialized_attributes[attr_name.to_s] = class_name
end
- # Returns a hash of all the attributes that have been specified for serialization as
- # keys and their class restriction as values.
- def serialized_attributes
- read_inheritable_attribute(:attr_serialized) or write_inheritable_attribute(:attr_serialized, {})
- end
-
# Guesses the table name (in forced lower-case) based on the name of the class in the
# inheritance hierarchy descending directly from ActiveRecord::Base. So if the hierarchy
# looks like: Reply < Message < ActiveRecord::Base, then Message is used