nokogiri 1.14.0.rc1-x86-mingw32 → 1.14.0-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of nokogiri might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fecaa4ef0146596976a48df357727c2279114a5c8067042fe065ffeaf29b28c0
4
- data.tar.gz: 54cc2edba7b85afb2c21941a50d823efba8910a2cdb712bac0de96acf070694d
3
+ metadata.gz: '0436890565da64bb8ca25904e742624a1f7a46a65f729dcedabb31e3665635f6'
4
+ data.tar.gz: 8ee3080a05145bdb8185df137719d4e924d0afd4237970ec5b9d9d47d432d43f
5
5
  SHA512:
6
- metadata.gz: bd2e32fe66428c6e90ce5adec654a830582a3826b7dc8324ad06f5341f39d0a30d3a800e6ef9134f869a21499cff7665fdc7c6fa052fb4170c6dad6250aee373
7
- data.tar.gz: 4fea8de22bb0729b1bafeae51c1f9f83328ea952ab44e6a5ddf468fc88a41c086ed5dbb2e7b1f2b6ef042f140756244ecf141c60b5bd70d964f466c521fc7446
6
+ metadata.gz: 64ecab0a60a901f6e33f3986ffa3b32ed8083d302344bd367d1e02f962efcf43be4ee16c66e4e5159c11be25b1006b3d45b073034ba17161b79c64ce619b02cb
7
+ data.tar.gz: bee384054541ca9d4e32f8ad76fc0da88a0a57abe3e581490092dc805bfee64dc93938daacb07871fcdadd13a3ebf61feee9e9262391ba10caeb62213cd31b69
data/Gemfile CHANGED
@@ -11,27 +11,27 @@ group :development do
11
11
 
12
12
  # building extensions
13
13
  gem "rake-compiler", "= 1.2.1"
14
- gem "rake-compiler-dock", "= 1.2.2"
14
+ gem "rake-compiler-dock", "= 1.3.0"
15
15
 
16
16
  # documentation
17
17
  gem "hoe-markdown", "= 1.4.0"
18
18
  gem "rdoc", "6.5.0"
19
- gem "psych", "~> 4.0" # psych 5 isn't building in places yet https://github.com/ruby/setup-ruby/issues/409
19
+ gem "psych", "~> 5.0" # psych 5 isn't building in places yet https://github.com/ruby/setup-ruby/issues/409
20
20
 
21
21
  # parser generator
22
22
  gem "rexical", "= 1.0.7"
23
23
 
24
24
  # tests
25
- gem "minitest", "= 5.16.3"
25
+ gem "minitest", "5.17.0"
26
26
  gem "minitest-reporters", "= 1.5.0"
27
27
  gem "ruby_memcheck", "1.2.0" unless RUBY_PLATFORM == "java"
28
28
  gem "simplecov", "= 0.21.2"
29
29
 
30
30
  # rubocop
31
31
  if Gem::Requirement.new("~> 3.0").satisfied_by?(Gem::Version.new(RUBY_VERSION))
32
- gem "rubocop", "1.40.0"
33
- gem "rubocop-minitest", "0.25.0"
34
- gem "rubocop-performance", "1.15.1"
32
+ gem "rubocop", "1.41.1"
33
+ gem "rubocop-minitest", "0.25.1"
34
+ gem "rubocop-performance", "1.15.2"
35
35
  gem "rubocop-rake", "= 0.6.0"
36
36
  gem "rubocop-shopify", "= 2.9.0"
37
37
  end
data/LICENSE.md CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License
2
2
 
3
- Copyright 2008 -- 2021 by Mike Dalessio, Aaron Patterson, Yoko Harada, Akinori MUSHA, John Shahid, Karol Bucek, Sam Ruby, Craig Barnes, Stephen Checkoway, Lars Kanis, Sergio Arbeo, Timothy Elliott, Nobuyoshi Nakada, Charles Nutter, Patrick Mahoney.
3
+ Copyright 2008 -- 2023 by Mike Dalessio, Aaron Patterson, Yoko Harada, Akinori MUSHA, John Shahid, Karol Bucek, Sam Ruby, Craig Barnes, Stephen Checkoway, Lars Kanis, Sergio Arbeo, Timothy Elliott, Nobuyoshi Nakada, Charles Nutter, Patrick Mahoney.
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6
6
 
@@ -619,7 +619,7 @@ do_help if arg_config("--help")
619
619
  do_clean if arg_config("--clean")
620
620
 
621
621
  if openbsd? && !config_system_libraries?
622
- if %x(#{ENV["CC"] || "/usr/bin/cc"} -v 2>&1) !~ /clang/
622
+ unless %x(#{ENV["CC"] || "/usr/bin/cc"} -v 2>&1).include?("clang")
623
623
  (ENV["CC"] ||= find_executable("egcc")) ||
624
624
  abort("Please install gcc 4.9+ from ports using `pkg_add -v gcc`")
625
625
  end
@@ -112,7 +112,8 @@ noko_io_write(void *io, char *c_buffer, int c_buffer_len)
112
112
  {
113
113
  VALUE rb_args[2], rb_n_bytes_written;
114
114
  VALUE rb_io = (VALUE)io;
115
- rb_encoding *io_encoding = rb_to_encoding(rb_funcall(rb_io, id_external_encoding, 0));
115
+ VALUE rb_enc = rb_funcall(rb_io, id_external_encoding, 0);
116
+ rb_encoding *io_encoding = RB_NIL_P(rb_enc) ? rb_ascii8bit_encoding() : rb_to_encoding(rb_enc);
116
117
 
117
118
  rb_args[0] = rb_io;
118
119
  rb_args[1] = rb_enc_str_new(c_buffer, (long)c_buffer_len, io_encoding);
Binary file
Binary file
Binary file
Binary file
@@ -230,11 +230,11 @@ module Nokogiri
230
230
  "descendant_selector" => "//",
231
231
  "child_selector" => "/",
232
232
  }.each do |k, v|
233
- class_eval %{
233
+ class_eval <<~RUBY, __FILE__, __LINE__ + 1
234
234
  def visit_#{k} node
235
235
  "\#{node.value.first.accept(self) if node.value.first}#{v}\#{node.value.last.accept(self)}"
236
236
  end
237
- }
237
+ RUBY
238
238
  end
239
239
 
240
240
  def visit_conditional_selector(node)
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Nokogiri
4
4
  # The version of Nokogiri you are using
5
- VERSION = "1.14.0.rc1"
5
+ VERSION = "1.14.0"
6
6
  end
@@ -49,7 +49,7 @@ module Nokogiri
49
49
  end
50
50
 
51
51
  constants.each do |constant|
52
- class_eval %{
52
+ class_eval <<~RUBY, __FILE__, __LINE__ + 1
53
53
  def #{constant.downcase}
54
54
  @options |= #{constant}
55
55
  self
@@ -58,7 +58,7 @@ module Nokogiri
58
58
  def #{constant.downcase}?
59
59
  #{constant} & @options == #{constant}
60
60
  end
61
- }
61
+ RUBY
62
62
  end
63
63
 
64
64
  alias_method :to_i, :options
@@ -169,7 +169,7 @@ module Nokogiri
169
169
  constants.each do |constant|
170
170
  next if constant.to_sym == :STRICT
171
171
 
172
- class_eval %{
172
+ class_eval <<~RUBY, __FILE__, __LINE__ + 1
173
173
  def #{constant.downcase}
174
174
  @options |= #{constant}
175
175
  self
@@ -183,7 +183,7 @@ module Nokogiri
183
183
  def #{constant.downcase}?
184
184
  #{constant} & @options == #{constant}
185
185
  end
186
- }
186
+ RUBY
187
187
  end
188
188
 
189
189
  def strict
@@ -95,7 +95,9 @@ module XSD
95
95
  end
96
96
 
97
97
  ["xmldecl", "start_document", "end_document", "comment"].each do |name|
98
- class_eval %{ def #{name}(*args); end }
98
+ class_eval <<~RUBY, __FILE__, __LINE__ + 1
99
+ def #{name}(*args); end
100
+ RUBY
99
101
  end
100
102
 
101
103
  add_factory(self)
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.14.0.rc1
4
+ version: 1.14.0
5
5
  platform: x86-mingw32
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: 2022-12-28 00:00:00.000000000 Z
23
+ date: 2023-01-12 00:00:00.000000000 Z
24
24
  dependencies:
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: racc
@@ -306,9 +306,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
306
306
  version: 3.3.dev
307
307
  required_rubygems_version: !ruby/object:Gem::Requirement
308
308
  requirements:
309
- - - ">"
309
+ - - ">="
310
310
  - !ruby/object:Gem::Version
311
- version: 1.3.1
311
+ version: '0'
312
312
  requirements: []
313
313
  rubygems_version: 3.3.26
314
314
  signing_key: