method

add_ruby_type

ruby latest stable - Class: Psych

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v2_4_6) is shown here.

add_ruby_type(type_tag, &block)
public

No documentation available.

# File ext/psych/lib/psych/deprecated.rb, line 43
  def self.add_ruby_type type_tag, &block
    warn "#{caller[0]}: add_ruby_type is deprecated, use add_domain_type" if $VERBOSE
    domain = 'ruby.yaml.org,2002'
    key = ['tag', domain, type_tag].join ':'
    @domain_types[key] = [key, block]
  end