summaryrefslogtreecommitdiff
path: root/lib/yaml.rb
diff options
context:
space:
mode:
authorwhy <why@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-05-13 06:34:18 +0000
committerwhy <why@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-05-13 06:34:18 +0000
commitbd810795c589a81e8939b53ad921f823e7133ee9 (patch)
tree5c96a98d2d411fd2f8324791db1977423fc1e14c /lib/yaml.rb
parentcea30a129ac3e25d1f45947b346788aeff8ee4d6 (diff)
* lib/yaml/rubytypes.rb: object and struct loading
* lib/yaml.rb: YAML::detect_implicit will discover typing for a Ruby string * ext/syck/: Fixed portable comments, misuse of NULL and methods without return VALUEs. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3784 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/yaml.rb')
-rw-r--r--lib/yaml.rb16
1 files changed, 9 insertions, 7 deletions
diff --git a/lib/yaml.rb b/lib/yaml.rb
index 1b2a4ea81f..b5852b2257 100644
--- a/lib/yaml.rb
+++ b/lib/yaml.rb
@@ -105,17 +105,19 @@ module YAML
end
#
+ # Detect typing of a string
+ #
+ def YAML.detect_implicit( val )
+ @@loader.detect_implicit( val )
+ end
+
+ #
# Method to extract colon-seperated type and class, returning
# the type and the constant of the class
#
def YAML.read_type_class( type, obj_class )
- type =~ /^([^:]+):(.+)/i
- if $2
- type = $1
- $2.split( "::" ).each { |c|
- obj_class = obj_class.const_get( c )
- }
- end
+ scheme, domain, type, tclass = type.split( ':', 4 )
+ tclass.split( "::" ).each { |c| obj_class = obj_class.const_get( c ) } if tclass
return [ type, obj_class ]
end