mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
4b25d0d2cb
ext/syck/node.c ext/syck/rubyext.c ext/syck/syck.c ext/syck/syck.h ext/syck/token.c: updated to Syck 0.27 * lib/yaml/loader.rb: new YAML::Loader class * lib/yaml.rb: loading of type families leverages YAML::DefaultLoader git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3778 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
14 lines
296 B
Ruby
14 lines
296 B
Ruby
#
|
|
# YAML::Loader class
|
|
# .. type handling ..
|
|
#
|
|
module YAML
|
|
class Loader
|
|
TRANSFER_DOMAINS = {
|
|
'yaml.org,2002' => {},
|
|
'ruby.yaml.org,2002' => {}
|
|
}
|
|
PRIVATE_TYPES = {}
|
|
IMPLICIT_TYPES = [ 'null', 'bool', 'time', 'int', 'float' ]
|
|
end
|
|
end
|