nokolexbor 0.5.3-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: bb054bffc3b8843722071b4d3ca41beaf4ae8792df48341d378d5ff851a62aef
4
- data.tar.gz: ac207252de3c6447fa8a5acc694fd421d9041d195b861f3f558fe2462fdf93e0
3
+ metadata.gz: 8add485a5b4cd6dd8960aaf726227b233e4c31302d41dbfd940ae00c4b623232
4
+ data.tar.gz: 4ca6d982beec1faf3eddccb6330da2d664496c2bbc1818c393e972a66dcd7907
5
5
  SHA512:
6
- metadata.gz: e9e531bda0ba93907b5ce06295c59531239a2513d17aaa8906978bdb35c9e0e0bd379852157e1288249c4efc0b97e693a4d6821c74fb116526f8e36054d033f4
7
- data.tar.gz: 58a6037c0ce01ee647e66b9c9801011f29f74af04346502cfdf3e84184231e2ab4ef3546979b31c19f5f30057d89fd5b785308f0215703c1c720f01bd936033d
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.3'
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.3
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-01-24 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
  - - ">="