summaryrefslogtreecommitdiff
path: root/ext/syck/lib/syck
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-04-14 02:39:28 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-04-14 02:39:28 +0000
commitddafeb2f2a66a25b0d024ab764b519795afa5383 (patch)
tree6edc598ce21237d57bea5dc2604fa3d0180d8f86 /ext/syck/lib/syck
parenteedb41a85b363e00e58de00c5b62cba5f2b3553e (diff)
* ext/syck/lib/syck/basenode.rb (Syck::BaseNode#match_path): fixed
library name. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27335 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/syck/lib/syck')
-rw-r--r--ext/syck/lib/syck/basenode.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/syck/lib/syck/basenode.rb b/ext/syck/lib/syck/basenode.rb
index fc701a99f3..3739331562 100644
--- a/ext/syck/lib/syck/basenode.rb
+++ b/ext/syck/lib/syck/basenode.rb
@@ -82,7 +82,7 @@ module Syck
#
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|