Flowdock
method

object_from_yaml

Importance_0
v2.2.1 - Show latest stable - 0 notes - Class: ActiveRecord::Base
object_from_yaml(string) private

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/base.rb, line 2940
      def object_from_yaml(string)
        return string unless string.is_a?(String) && string =~ /^---/
        YAML::load(string) rescue string
      end
Register or log in to add new notes.