nokogiri 1.18.10 → 1.19.0
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.
- checksums.yaml +4 -4
- data/Gemfile +5 -5
- data/README.md +3 -3
- data/ext/nokogiri/extconf.rb +1 -1
- data/lib/nokogiri/class_resolver.rb +0 -2
- data/lib/nokogiri/version/constant.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 04be1d691f54cc14c7a037d1fcf39d329fb6e0359ae370d1fb16f83f38ddb230
|
|
4
|
+
data.tar.gz: e57782ea17a4f61b903a5713b57447979a8d9c4ff69bf6bd0ab3495a0ae13cca
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 22cf757b6fb19e663b278551743393a3f3a05fa0a6e8a2a933b2b8a76b73b5d50f5e0d1f49b544b477a8ecc54418bb1f38f3de4ee097d6e7c807d16f7ea55545
|
|
7
|
+
data.tar.gz: 85517d6749076a45f3d41729a8834aa4b73e0145818cadd058b715174c4ea3b12efc4f619213eaf69dee98eb06ba1b2a63813b175654759d227e9d80b414727d
|
data/Gemfile
CHANGED
|
@@ -6,19 +6,19 @@ gemspec
|
|
|
6
6
|
|
|
7
7
|
group :development do
|
|
8
8
|
# bootstrapping
|
|
9
|
-
gem "bundler", "~> 2.3"
|
|
10
9
|
gem "rake", "13.2.1"
|
|
11
10
|
|
|
12
11
|
# building extensions
|
|
13
|
-
gem "rake-compiler", "1.
|
|
14
|
-
gem "rake-compiler-dock", "1.
|
|
12
|
+
gem "rake-compiler", "1.3.1"
|
|
13
|
+
gem "rake-compiler-dock", "1.11.1"
|
|
15
14
|
|
|
16
15
|
# parser generator
|
|
17
16
|
gem "rexical", "1.0.8"
|
|
18
17
|
|
|
19
18
|
# tests
|
|
20
|
-
gem "minitest", "
|
|
21
|
-
gem "minitest-
|
|
19
|
+
gem "minitest", "6.0.1"
|
|
20
|
+
gem "minitest-mock", "5.27.0"
|
|
21
|
+
gem "minitest-parallel_fork", "2.1.1"
|
|
22
22
|
gem "ruby_memcheck", "3.0.0"
|
|
23
23
|
gem "rubyzip", "~> 2.3.2"
|
|
24
24
|
gem "simplecov", "= 0.21.2"
|
data/README.md
CHANGED
|
@@ -114,8 +114,8 @@ You can help sponsor the maintainers of this software through one of these organ
|
|
|
114
114
|
|
|
115
115
|
Requirements:
|
|
116
116
|
|
|
117
|
-
- Ruby >= 3.
|
|
118
|
-
- JRuby >=
|
|
117
|
+
- Ruby >= 3.2
|
|
118
|
+
- JRuby >= 10.0
|
|
119
119
|
|
|
120
120
|
If you are compiling the native extension against a system version of libxml2:
|
|
121
121
|
|
|
@@ -135,7 +135,7 @@ Nokogiri ships pre-compiled, "native" gems for the following platforms:
|
|
|
135
135
|
- `x86_64-linux-musl`, `aarch64-linux-musl`, and `arm-linux-musl`
|
|
136
136
|
- Darwin/MacOS: `x86_64-darwin` and `arm64-darwin`
|
|
137
137
|
- Windows: `x64-mingw-ucrt`
|
|
138
|
-
- Java: any platform running JRuby
|
|
138
|
+
- Java: any platform running JRuby 10.0 or higher
|
|
139
139
|
|
|
140
140
|
To determine whether your system supports one of these gems, look at the output of `bundle platform` or `ruby -e 'puts Gem::Platform.local.to_s'`.
|
|
141
141
|
|
data/ext/nokogiri/extconf.rb
CHANGED
|
@@ -619,7 +619,7 @@ end
|
|
|
619
619
|
def needs_darwin_linker_hack
|
|
620
620
|
config_cross_build? &&
|
|
621
621
|
darwin? &&
|
|
622
|
-
Gem::Requirement.new("
|
|
622
|
+
Gem::Requirement.new(">= 3.2").satisfied_by?(Gem::Version.new(RbConfig::CONFIG["ruby_version"].split("+").first))
|
|
623
623
|
end
|
|
624
624
|
|
|
625
625
|
#
|
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.
|
|
4
|
+
version: 1.19.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mike Dalessio
|
|
@@ -294,14 +294,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
294
294
|
requirements:
|
|
295
295
|
- - ">="
|
|
296
296
|
- !ruby/object:Gem::Version
|
|
297
|
-
version: 3.
|
|
297
|
+
version: '3.2'
|
|
298
298
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
299
299
|
requirements:
|
|
300
300
|
- - ">="
|
|
301
301
|
- !ruby/object:Gem::Version
|
|
302
302
|
version: '0'
|
|
303
303
|
requirements: []
|
|
304
|
-
rubygems_version:
|
|
304
|
+
rubygems_version: 4.0.3
|
|
305
305
|
specification_version: 4
|
|
306
306
|
summary: Nokogiri (鋸) makes it easy and painless to work with XML and HTML from Ruby.
|
|
307
307
|
test_files: []
|