Flowdock
method

convert

Importance_0
v7.1.3.2 - Show latest stable - 0 notes - Class: LegacyYamlAdapter
convert(coder) 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/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
Register or log in to add new notes.