Sha256: 23fdc8ce0d4e8a6eeacb2994dc1dfa9745e0ef69a71f0aceec1d5617b74d6cdc
Contents?: true
Size: 597 Bytes
Versions: 472
Compression:
Stored size: 597 Bytes
Contents
# frozen_string_literal: true module Nokogiri module XML module XPath # The XPath search prefix to search globally, +//+ GLOBAL_SEARCH_PREFIX = "//" # The XPath search prefix to search direct descendants of the root element, +/+ ROOT_SEARCH_PREFIX = "/" # The XPath search prefix to search direct descendants of the current element, +./+ CURRENT_SEARCH_PREFIX = "./" # The XPath search prefix to search anywhere in the current element's subtree, +.//+ SUBTREE_SEARCH_PREFIX = ".//" end end end require_relative "xpath/syntax_error"
Version data entries
472 entries across 469 versions & 12 rubygems