nokolexbor 0.5.4-x86_64-linux → 0.6.0-x86_64-linux

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0a848ddf492330cdc36a657c4f546ee42a6cc9aec9b8d7b6af5e824616fca0ea
4
- data.tar.gz: 5278be3f31518fda5a17b9051b02f66594ef8b4e71997331eec5283dc4f256d7
3
+ metadata.gz: 8add485a5b4cd6dd8960aaf726227b233e4c31302d41dbfd940ae00c4b623232
4
+ data.tar.gz: 4ca6d982beec1faf3eddccb6330da2d664496c2bbc1818c393e972a66dcd7907
5
5
  SHA512:
6
- metadata.gz: e368b063a0fc8c0ede2778fb3c0153f8516dca613f3333020c86282f89ef251997d7c135c9213c262bef3ea1bd42cbf5fce0c7c6b7d996e85894c583d1e14f13
7
- data.tar.gz: f60e4cce3acee83a92b8019c10075a5c2b2ecb7101bd5c2f84a20f2799d8101f7e17fd64fe448ca375161472491a141cfe284c4dcf6bc8ccf9fb8a034a54b767
6
+ metadata.gz: 1b002af7d287773346f4211a948400a8d90c7a0bd27c6bdc02f048a57b9fa9f91928a48044aebe92de1766b82e15171bc0dc095ef6c1231bee4d04aadbc5162d
7
+ data.tar.gz: 9933c6ff4a349df455f49af6300dc77f3b76a275470469ae41d60b14fa531fa8f87de758ea22f565dab25e59d57f6b59a33d691203b52d4f46df16e1d60cd7e6
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -717,18 +717,38 @@ module Nokolexbor
717
717
 
718
718
  def xpath_query_from_css_rule(rule, ns)
719
719
  ensure_nokogiri
720
- if defined? Nokogiri::CSS::XPathVisitor::BuiltinsConfig
721
- visitor = Nokogiri::CSS::XPathVisitor.new(
722
- builtins: Nokogiri::CSS::XPathVisitor::BuiltinsConfig::OPTIMAL,
723
- doctype: :html4,
724
- )
720
+
721
+ unless defined?(Gem)
722
+ require 'rubygems'
723
+ end
724
+
725
+ v_1_17_0 = Gem::Version.new("1.17.0")
726
+ current_version = Gem::Version.new(Nokogiri::VERSION)
727
+
728
+ if current_version < v_1_17_0
729
+ if defined? Nokogiri::CSS::XPathVisitor::BuiltinsConfig
730
+ visitor = Nokogiri::CSS::XPathVisitor.new(
731
+ builtins: Nokogiri::CSS::XPathVisitor::BuiltinsConfig::OPTIMAL,
732
+ doctype: :html4,
733
+ )
734
+ else
735
+ visitor = Nokogiri::CSS::XPathVisitorOptimallyUseBuiltins.new
736
+ end
737
+ self.class::IMPLIED_XPATH_CONTEXTS.map do |implied_xpath_context|
738
+ Nokogiri::CSS.xpath_for(rule.to_s, { prefix: implied_xpath_context, ns: ns,
739
+ visitor: visitor, })
740
+ end.join(" | ")
725
741
  else
726
- visitor = Nokogiri::CSS::XPathVisitorOptimallyUseBuiltins.new
742
+ self.class::IMPLIED_XPATH_CONTEXTS.map do |implied_xpath_context|
743
+ visitor = Nokogiri::CSS::XPathVisitor.new(
744
+ builtins: Nokogiri::CSS::XPathVisitor::BuiltinsConfig::OPTIMAL,
745
+ doctype: :html4,
746
+ prefix: implied_xpath_context,
747
+ namespaces: ns,
748
+ )
749
+ Nokogiri::CSS.xpath_for(rule.to_s, visitor: visitor)
750
+ end.join(" | ")
727
751
  end
728
- self.class::IMPLIED_XPATH_CONTEXTS.map do |implied_xpath_context|
729
- Nokogiri::CSS.xpath_for(rule.to_s, { prefix: implied_xpath_context, ns: ns,
730
- visitor: visitor, })
731
- end.join(" | ")
732
752
  end
733
753
 
734
754
  def extract_params(params)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Nokolexbor
4
- VERSION = '0.5.4'
4
+ VERSION = '0.6.0'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nokolexbor
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.4
4
+ version: 0.6.0
5
5
  platform: x86_64-linux
6
6
  authors:
7
7
  - Yicheng Zhou
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-04-22 00:00:00.000000000 Z
11
+ date: 2024-12-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake-compiler
@@ -52,6 +52,7 @@ files:
52
52
  - lib/nokolexbor/3.1/nokolexbor.so
53
53
  - lib/nokolexbor/3.2/nokolexbor.so
54
54
  - lib/nokolexbor/3.3/nokolexbor.so
55
+ - lib/nokolexbor/3.4/nokolexbor.so
55
56
  - lib/nokolexbor/document.rb
56
57
  - lib/nokolexbor/document_fragment.rb
57
58
  - lib/nokolexbor/node.rb
@@ -74,7 +75,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
74
75
  version: '2.6'
75
76
  - - "<"
76
77
  - !ruby/object:Gem::Version
77
- version: 3.4.dev
78
+ version: 3.5.dev
78
79
  required_rubygems_version: !ruby/object:Gem::Requirement
79
80
  requirements:
80
81
  - - ">="