nokogiri 1.18.0-java → 1.18.1-java

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: 8b07743e75ec645ff11856420361bc8a097e57033ec3f90132428cbe1af891e9
4
- data.tar.gz: 63f1e9c4b302a6fa018de59e43b0d069b108f186628f2b42ddcf3cbb738ba320
3
+ metadata.gz: aa9083455f575ed7d510dd06d7493f9965119161b36055a42633778524561441
4
+ data.tar.gz: 6676a22d5766bd7622b6332160aac208be8e3605d6fc0bbf29323a87fd69a83c
5
5
  SHA512:
6
- metadata.gz: 3dcd00f79225d0733800a07ac046cf3ae2899580c7c645506d0a8f316da1e7a1469ceab91584ba5ae70140011f26d0f1329a807575f39b08e5d229f2c0dfc74e
7
- data.tar.gz: 7092a6d036ecc002566159fc70987377629b8497105ebdfc238859e015a237d5f94054533f41d91126d06ade1ebc6622e8ae835700c4cc6353c19fa0cbb41090
6
+ metadata.gz: 7735ea1266e0dcd2f3a896ec40b9d8908c1987109c542523a3e48160ca7b77d61e0d315d85960a3eff0db59c818c3bbfffb846913a22617eec45c45728df66a3
7
+ data.tar.gz: aced9ad5b05847a538943711fa446016120a6d41f230b3a68141356512995ba6a05181cbd095a0e96a3120011c2cd791a8381f0825b158152cbef4db0f0c39d8
data/Gemfile CHANGED
@@ -33,7 +33,8 @@ 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
- group :rdoc do
37
- gem "rdoc", "6.10.0"
38
- gem "jar-dependencies", "0.4.1" if RUBY_PLATFORM == "java" # https://github.com/jruby/jruby/issues/7262
36
+ unless RUBY_PLATFORM == "java" # see #3391 and https://github.com/jruby/jruby/issues/7262
37
+ group :rdoc do
38
+ gem "rdoc", "6.10.0"
39
+ end
39
40
  end
@@ -102,7 +102,10 @@ noko_xml_sax_parser_context_s_native_io(VALUE rb_class, VALUE rb_io, VALUE rb_en
102
102
  c_context->sax = NULL;
103
103
  }
104
104
 
105
- return noko_xml_sax_parser_context_wrap(rb_class, c_context);
105
+ VALUE rb_context = noko_xml_sax_parser_context_wrap(rb_class, c_context);
106
+ rb_iv_set(rb_context, "@input", rb_io);
107
+
108
+ return rb_context;
106
109
  }
107
110
 
108
111
  /* :nodoc: */
@@ -154,7 +157,10 @@ noko_xml_sax_parser_context_s_native_memory(VALUE rb_class, VALUE rb_input, VALU
154
157
  c_context->sax = NULL;
155
158
  }
156
159
 
157
- return noko_xml_sax_parser_context_wrap(rb_class, c_context);
160
+ VALUE rb_context = noko_xml_sax_parser_context_wrap(rb_class, c_context);
161
+ rb_iv_set(rb_context, "@input", rb_input);
162
+
163
+ return rb_context;
158
164
  }
159
165
 
160
166
  /*
Binary file
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Nokogiri
4
4
  # The version of Nokogiri you are using
5
- VERSION = "1.18.0"
5
+ VERSION = "1.18.1"
6
6
  end
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.0
4
+ version: 1.18.1
5
5
  platform: java
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: 2024-12-25 00:00:00.000000000 Z
23
+ date: 2024-12-29 00:00:00.000000000 Z
24
24
  dependencies:
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: jar-dependencies