method
add_private_type
ruby latest stable - Class:
Psych
add_private_type(type_tag, &block)public
No documentation available.
# File ext/psych/lib/psych/deprecated.rb, line 50
def self.add_private_type type_tag, &block
warn "#{caller[0]}: add_private_type is deprecated, use add_domain_type" if $VERBOSE
domain = 'x-private'
key = [domain, type_tag].join ':'
@domain_types[key] = [key, block]
end