From b069ab66d3be2371158fed302d2df6572174dece Mon Sep 17 00:00:00 2001 From: Sean Griffin Date: Sun, 15 Jun 2014 08:44:58 -0600 Subject: [PATCH] Change the deprecation warning on `serialized_attributes` to "without replacement" --- .../active_record/attribute_methods/serialization.rb | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/activerecord/lib/active_record/attribute_methods/serialization.rb b/activerecord/lib/active_record/attribute_methods/serialization.rb index d06d5bcd92..734d94865a 100644 --- a/activerecord/lib/active_record/attribute_methods/serialization.rb +++ b/activerecord/lib/active_record/attribute_methods/serialization.rb @@ -50,14 +50,8 @@ def serialize(attr_name, class_name_or_coder = Object) def serialized_attributes ActiveSupport::Deprecation.warn(<<-WARNING.strip_heredoc) - `serialized_attributes` is deprecated, and will be removed in Rails 5.0. - If you need to access the serialization behavior, you can do: - - #{self.class.name}.column_for_attribute('foo').type_cast_for_database(value) - - or - - #{self.class.name}.column_for_attribute('foo').type_cast_from_database(value) + `serialized_attributes` is deprecated without replacement, and will + be removed in Rails 5.0. WARNING @serialized_attributes ||= Hash[ columns.select { |t| t.cast_type.is_a?(Type::Serialized) }.map { |c|