From e959fda8ff3a45cb60d8fc0459e5de15df9c3c0a Mon Sep 17 00:00:00 2001 From: tenderlove Date: Fri, 26 Mar 2010 03:33:08 +0000 Subject: * lib/yaml/encoding.rb: YAML.encode, YAML.decode are deprecated. * lib/yaml/stringio.rb: yaml/stringio.rb is deprecated. * lib/yaml/ypath.rb: YAML::YPath is deprecated. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27057 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/yaml/encoding.rb | 2 ++ lib/yaml/stringio.rb | 2 ++ lib/yaml/ypath.rb | 2 ++ 3 files changed, 6 insertions(+) (limited to 'lib/yaml') diff --git a/lib/yaml/encoding.rb b/lib/yaml/encoding.rb index 98e83c3853..0a1b1fce24 100644 --- a/lib/yaml/encoding.rb +++ b/lib/yaml/encoding.rb @@ -8,6 +8,7 @@ module YAML # Escape the string, condensing common escapes # def YAML.escape( value, skip = "" ) + warn "#{caller[0]}: YAML.escape is deprecated" if $VERBOSE value.gsub( /\\/, "\\\\\\" ). gsub( /"/, "\\\"" ). gsub( /([\x00-\x1f])/ ) do @@ -19,6 +20,7 @@ module YAML # Unescape the condenses escapes # def YAML.unescape( value ) + warn "#{caller[0]}: YAML.unescape is deprecated" if $VERBOSE value.gsub( /\\(?:([nevfbart\\])|0?x([0-9a-fA-F]{2})|u([0-9a-fA-F]{4}))/ ) { if $3 ["#$3".hex ].pack('U*') diff --git a/lib/yaml/stringio.rb b/lib/yaml/stringio.rb index b0fda19e28..147caf0bcd 100644 --- a/lib/yaml/stringio.rb +++ b/lib/yaml/stringio.rb @@ -1,3 +1,5 @@ +warn "#{caller[0]}: yaml/stringio is deprecated" if $VERBOSE + # # Limited StringIO if no core lib is available # diff --git a/lib/yaml/ypath.rb b/lib/yaml/ypath.rb index 81348ca043..470163557d 100644 --- a/lib/yaml/ypath.rb +++ b/lib/yaml/ypath.rb @@ -2,6 +2,8 @@ # YAML::YPath # +warn "#{caller[0]}: YAML::YPath is deprecated" if $VERBOSE + module YAML class YPath -- cgit v1.2.3