Module: Globalize::AttributeMethods::Serialization
- Defined in:
- lib/patches/active_record/serialization.rb
Instance Method Summary collapse
Instance Method Details
#serialize(attr_name, class_name_or_coder = Object) ⇒ Object
4 5 6 7 8 9 10 11 12 13 14 15 16 |
# File 'lib/patches/active_record/serialization.rb', line 4 def serialize(attr_name, class_name_or_coder = Object) super(attr_name, class_name_or_coder) coder = if class_name_or_coder == ::JSON ::ActiveRecord::Coders::JSON elsif [:load, :dump].all? { |x| class_name_or_coder.respond_to?(x) } class_name_or_coder else ::ActiveRecord::Coders::YAMLColumn.new(class_name_or_coder) end self.globalize_serialized_attributes[attr_name] = coder end |