method

object_maker

v1_9_3_125 - Show latest stable - Class: Psych
object_maker(klass, hash)
public

No documentation available.

# File ext/psych/lib/psych/deprecated.rb, line 70
  def self.object_maker klass, hash
    warn "#{caller[0]}: object_maker is deprecated" if $VERBOSE
    klass.allocate.tap do |obj|
      hash.each { |k,v| obj.instance_variable_set(:"@#{k}", v) }
    end
  end