This method is deprecated or moved on the latest stable version. The last existing version (v1_9_1_378) is shown here.
match_path( ypath_str )
YPath search returning a complete depth array
# File lib/yaml/basenode.rb, line 80 def match_path( ypath_str ) depth = 0 matches = [] YPath.each_path( ypath_str ) do |ypath| seg = match_segment( ypath, 0 ) matches += seg if seg end matches.uniq end