nokogiri 1.18.1-x86_64-linux-gnu → 1.18.2-x86_64-linux-gnu
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of nokogiri might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/Gemfile +2 -4
- data/ext/nokogiri/include/libxslt/xsltconfig.h +1 -1
- data/lib/nokogiri/css/xpath_visitor.rb +2 -1
- data/lib/nokogiri/version/constant.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a6da5ac5169a3ceff1c26c8a7aab43509527cf3b29cc87f737663da2fac2e7f8
|
4
|
+
data.tar.gz: 8a98a00f1399e8c33b77ed435f1930bbe724cf780e58eda666a747f9c601e629
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 93c97f88f08c797b7d50334de3e1154cd2d5c81ab5f3e094aec6e1f21594abeadf5e41c9ab6b8a2b349ba29f1d7374d86d9de834153c46d9e8409035486f3943
|
7
|
+
data.tar.gz: 41cbf05d31aa190bb3937e664af9537301195a31a04c534d94529460606a5d374c177b03570f45e98c00182ba1a7754189309bab22c72265fef6592c26d41935
|
data/Gemfile
CHANGED
@@ -33,8 +33,6 @@ end
|
|
33
33
|
# If Psych doesn't build, you can disable this group locally by running
|
34
34
|
# `bundle config set --local without rdoc`
|
35
35
|
# Then re-run `bundle install`.
|
36
|
-
|
37
|
-
|
38
|
-
gem "rdoc", "6.10.0"
|
39
|
-
end
|
36
|
+
group :rdoc do
|
37
|
+
gem "rdoc", "6.10.0" unless RUBY_PLATFORM == "java" || ENV["CI"]
|
40
38
|
end
|
@@ -112,7 +112,7 @@ extern "C" {
|
|
112
112
|
#ifndef WITH_MODULES
|
113
113
|
#define WITH_MODULES
|
114
114
|
#endif
|
115
|
-
#define LIBXSLT_DEFAULT_PLUGINS_PATH() "/home/flavorjones/code/oss/nokogiri/ports/
|
115
|
+
#define LIBXSLT_DEFAULT_PLUGINS_PATH() "/home/flavorjones/code/oss/nokogiri/ports/aarch64-linux-gnu/libxslt/1.1.42/lib/libxslt-plugins"
|
116
116
|
#endif
|
117
117
|
|
118
118
|
/**
|
@@ -283,7 +283,8 @@ module Nokogiri
|
|
283
283
|
else
|
284
284
|
node.value.join(":")
|
285
285
|
end
|
286
|
-
elsif @namespaces&.key?("xmlns")
|
286
|
+
elsif node.value.first != "*" && @namespaces&.key?("xmlns")
|
287
|
+
# apply the default namespace (if one is present) to a non-wildcard selector
|
287
288
|
"xmlns:#{node.value.first}"
|
288
289
|
else
|
289
290
|
node.value.first
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nokogiri
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.18.
|
4
|
+
version: 1.18.2
|
5
5
|
platform: x86_64-linux-gnu
|
6
6
|
authors:
|
7
7
|
- Mike Dalessio
|
@@ -20,7 +20,7 @@ authors:
|
|
20
20
|
autorequire:
|
21
21
|
bindir: bin
|
22
22
|
cert_chain: []
|
23
|
-
date:
|
23
|
+
date: 2025-01-19 00:00:00.000000000 Z
|
24
24
|
dependencies:
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: racc
|