nokogiri 1.18.0-x86_64-darwin → 1.18.1-x86_64-darwin

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: 54bafe728e1eaf92f7d8abe7f4688953555829d33a3e506a4fcd92a12bc53ffc
4
- data.tar.gz: 3e3c3bcd2d8206b80393835e087ce03dfc6d2239276904dba614abbe27691179
3
+ metadata.gz: 05376eb7ab274cec9a9c549f41de386a13fb71849eb85fefdae0fecfb6a1fc0f
4
+ data.tar.gz: 5cef3d89b6099fc240bd873bc8a72020693d04580b168513f87808cabf263fde
5
5
  SHA512:
6
- metadata.gz: 00c3dde2650092903fcf63b05923d32855d7eb7b2a7557f31af4a45b1f580b19c2cc168ef103d09754d485712e6166a08ad52af9eaa9fc3500b498b2e08e37b3
7
- data.tar.gz: f8600e5f4cf297e80be69b425e1f1e41dddbeed19c4c4326d8964ad0519340dda778d175946625cc02a4d971c9ee2e2726afcb9ed8957793599afaa54b892a72
6
+ metadata.gz: 87a1f9539e7cdeb527924269331b5fd11bf81b7d5df023cbb23231cc7fb38c8d1858d898845818bbd2ef9e738f41d633313641f63e5c8d6159b68612ab9e1dac
7
+ data.tar.gz: cce9e8950c71ca6691febdaa30fe7fad2d8e2ac2791a1b6e1b97f214a12b36ca14375d91afc4ec6e1140c56fed32077aa26d13428ee27e260d82069ec804b875
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
Binary file
Binary file
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: x86_64-darwin
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: racc