method
convert
rails latest stable - Class:
ActiveRecord::LegacyYamlAdapter
convert(coder)public
No documentation available.
# File activerecord/lib/active_record/legacy_yaml_adapter.rb, line 5
def self.convert(coder)
return coder unless coder.is_a?(Psych::Coder)
case coder["active_record_yaml_version"]
when 1, 2 then coder
else
raise("Active Record doesn't know how to load YAML with this format.")
end
end