Class: ActiveRecord::Coders::YAMLColumn
- Inherits:
-
Object
- Object
- ActiveRecord::Coders::YAMLColumn
- Defined in:
- lib/active_record/coders/yaml_column.rb
Overview
:nodoc:
Instance Attribute Summary collapse
-
#object_class ⇒ Object
Returns the value of attribute object_class.
Instance Method Summary collapse
- #dump(obj) ⇒ Object
-
#initialize(object_class = Object) ⇒ YAMLColumn
constructor
A new instance of YAMLColumn.
- #load(yaml) ⇒ Object
Constructor Details
#initialize(object_class = Object) ⇒ YAMLColumn
Returns a new instance of YAMLColumn.
9 10 11 |
# File 'lib/active_record/coders/yaml_column.rb', line 9 def initialize(object_class = Object) @object_class = object_class end |
Instance Attribute Details
#object_class ⇒ Object
Returns the value of attribute object_class.
7 8 9 |
# File 'lib/active_record/coders/yaml_column.rb', line 7 def object_class @object_class end |
Instance Method Details
#dump(obj) ⇒ Object
13 14 15 16 17 18 19 20 21 |
# File 'lib/active_record/coders/yaml_column.rb', line 13 def dump(obj) return if obj.nil? unless obj.is_a?(object_class) raise SerializationTypeMismatch, "Attribute was supposed to be a #{object_class}, but was a #{obj.class}. -- #{obj.inspect}" end YAML.dump obj end |
#load(yaml) ⇒ Object
23 24 25 26 27 28 29 30 31 32 33 34 35 |
# File 'lib/active_record/coders/yaml_column.rb', line 23 def load(yaml) return object_class.new if object_class != Object && yaml.nil? return yaml unless yaml.is_a?(String) && yaml =~ /^---/ obj = YAML.load(yaml) unless obj.is_a?(object_class) || obj.nil? raise SerializationTypeMismatch, "Attribute was supposed to be a #{object_class}, but was a #{obj.class}" end obj ||= object_class.new if object_class != Object obj end |