method

object_from_yaml

object_from_yaml(string)
private

No documentation available.

# File activerecord/lib/active_record/base.rb, line 2708
      def object_from_yaml(string)
        return string unless string.is_a?(String)
        YAML::load(string) rescue string
      end