aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
diff options
context:
space:
mode:
authorJon Leighton <j@jonathanleighton.com>2011-08-08 14:41:23 +0100
committerJon Leighton <j@jonathanleighton.com>2011-08-08 23:28:49 +0100
commit9062b75bb7dab38977805c1de35944079a56499a (patch)
treee3b237307690bca589462a563c34438c800f11ca /activerecord/lib
parent7db90aa7c7dfe5033ad012b8ee13e6f15d1c66f0 (diff)
downloadrails-9062b75bb7dab38977805c1de35944079a56499a.tar.gz
rails-9062b75bb7dab38977805c1de35944079a56499a.tar.bz2
rails-9062b75bb7dab38977805c1de35944079a56499a.zip
Fully marshal AR::Base objects. Fixes #2431.
Diffstat (limited to 'activerecord/lib')
-rw-r--r--activerecord/lib/active_record/base.rb21
1 files changed, 0 insertions, 21 deletions
diff --git a/activerecord/lib/active_record/base.rb b/activerecord/lib/active_record/base.rb
index 06087642d4..102d8f4175 100644
--- a/activerecord/lib/active_record/base.rb
+++ b/activerecord/lib/active_record/base.rb
@@ -937,17 +937,6 @@ module ActiveRecord #:nodoc:
self.current_scope = nil
end
- # Specifies how the record is loaded by +Marshal+.
- #
- # +_load+ sets an instance variable for each key in the hash it takes as input.
- # Override this method if you require more complex marshalling.
- def _load(data)
- record = allocate
- record.init_with(Marshal.load(data))
- record
- end
-
-
# Finder methods must instantiate through this method to work with the
# single-table inheritance model that makes it possible to create
# objects of different types from the same table.
@@ -1588,16 +1577,6 @@ MSG
self
end
- # Specifies how the record is dumped by +Marshal+.
- #
- # +_dump+ emits a marshalled hash which has been passed to +encode_with+. Override this
- # method if you require more complex marshalling.
- def _dump(level)
- dump = {}
- encode_with(dump)
- Marshal.dump(dump)
- end
-
# Returns a String, which Action Pack uses for constructing an URL to this
# object. The default implementation returns this record's id as a String,
# or nil if this record's unsaved.