Flowdock
method

read_attribute_before_type_cast

Importance_0
Ruby on Rails latest stable (v3.2.13) - 0 notes - Class: Serialization
read_attribute_before_type_cast(attr_name) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/attribute_methods/serialization.rb, line 101
      def read_attribute_before_type_cast(attr_name)
        if serialized_attributes.include?(attr_name)
          super.unserialized_value
        else
          super
        end
      end
Register or log in to add new notes.