ruby-changes:15437
From: nobu <ko1@a...>
Date: Wed, 14 Apr 2010 11:39:43 +0900 (JST)
Subject: [ruby-changes:15437] Ruby:r27335 (trunk): * ext/syck/lib/syck/basenode.rb (Syck::BaseNode#match_path): fixed
nobu 2010-04-14 11:39:28 +0900 (Wed, 14 Apr 2010) New Revision: 27335 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=27335 Log: * ext/syck/lib/syck/basenode.rb (Syck::BaseNode#match_path): fixed library name. Modified files: trunk/ChangeLog trunk/ext/syck/lib/syck/basenode.rb Index: ChangeLog =================================================================== --- ChangeLog (revision 27334) +++ ChangeLog (revision 27335) @@ -1,5 +1,8 @@ -Wed Apr 14 11:37:52 2010 Nobuyoshi Nakada <nobu@r...> +Wed Apr 14 11:39:26 2010 Nobuyoshi Nakada <nobu@r...> + * ext/syck/lib/syck/basenode.rb (Syck::BaseNode#match_path): fixed + library name. + * ext/syck/lib/yaml/syck.rb: split from ext/syck/lib/syck.rb for backward compatibility. Index: ext/syck/lib/syck/basenode.rb =================================================================== --- ext/syck/lib/syck/basenode.rb (revision 27334) +++ ext/syck/lib/syck/basenode.rb (revision 27335) @@ -82,7 +82,7 @@ # def match_path( ypath_str ) warn "#{caller[0]}: match_path is deprecated" if $VERBOSE - require 'yaml/ypath' + require 'syck/ypath' depth = 0 matches = [] YPath.each_path( ypath_str ) do |ypath| -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/