nokogiri 1.18.0-arm64-darwin → 1.18.1-arm64-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: 403277eb713d3f7c0256b7e584a3c90a0d832013d2fb1e269c092e5d6d650bc3
4
- data.tar.gz: 38e802f8baed9b4c679f084ce75fb844fa65985f42f6c65812ea95e5e05b51ab
3
+ metadata.gz: 6bdd0c85739da088b61e89840a7b55f5c2ac0c0e29c3cee5d338ddc4c94a13a6
4
+ data.tar.gz: b752f6bf7e80a2489a52385be5b6c5b4fedee28c115cfc8de339524ddc2fe673
5
5
  SHA512:
6
- metadata.gz: aef33b019b261ce216e79576f9a8382b8dfd081196b7e28d651d58a41af1d03bfc6f8bc03f0a6ad66bfd0eaac4ad2c8aea61312bf7996f5fd22e53c3e4839c30
7
- data.tar.gz: 3af100d7a8f05de1304d25ef3d6fb5f7c95ed996959b30f635bbd183c99c7f89461ae53a2c5fdc1fe7b04f08def6939d16e241a95b1a6b7893350414d60d2c7b
6
+ metadata.gz: fe764846f0f53403316725bf46c55abe6dae84d332b0c5f02644afdbd9a1ec9f7b9948f0b3cd99bca4caebc3ebcc0b299ccde9801830ccb58a2a408a0ab67505
7
+ data.tar.gz: 1e2ed60286ede3b15781288409dd1b5534f9ceef2cb47600f9058b06f01d2a806ebc5def07406efcabf726104cb557349cca7d7c466c67088a81bc562b30f44d
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: arm64-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