nokogiri 1.18.0-arm-linux-musl → 1.18.1-arm-linux-musl

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: 37f5c980f3e32e496d874fec739a3886e34ab69aeaafc16b712e2179b8227efb
4
- data.tar.gz: 1ee4e373f4ded575bcab6052612e89a930babbef3dbca1c83439032ab4b0efe4
3
+ metadata.gz: a4810b806352e692813e34c86a6d254c3ec505493b192bf39298eb15cd286cfb
4
+ data.tar.gz: 41f4d104f1f639afaf949e7df5829a43f336e891703a65c1e8e2183b7bdcd49b
5
5
  SHA512:
6
- metadata.gz: 5d0d09c905734e6086bd5e747f2eefeab67f641f4b50dac15026733a2d1ac6ab8e7aa9a4708bfc33633f77db02a99235176e0f28c898f4c57c0a5e33387cdb1a
7
- data.tar.gz: 8e56db0e9bd50d2695d2716e799ddc353b6768646afc2f3c41e6fbbaac8812e2641f842894b57977ea8bcd8872f75c53b683ea629f692b08c9d4987972538669
6
+ metadata.gz: de6359efa2b1e5255a3d857a395c4236488a968edcba9fcd4895f43f0d5c6752724379318946974ca67732873ab8296ddac7c1843b19ede3cd5e1101de1dfede
7
+ data.tar.gz: f6cee3a786d24f5826ef8ab30ef4b33041cd6060a50a700163f97e0512c420158b3869c96c9382b2d83f2a4599aaf6ea0a8753cb5059dfd267c2f72e20886fb2
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
@@ -112,7 +112,7 @@ extern "C" {
112
112
  #ifndef WITH_MODULES
113
113
  #define WITH_MODULES
114
114
  #endif
115
- #define LIBXSLT_DEFAULT_PLUGINS_PATH() "/home/flavorjones/code/oss/nokogiri/ports/arm-linux-gnu/libxslt/1.1.42/lib/libxslt-plugins"
115
+ #define LIBXSLT_DEFAULT_PLUGINS_PATH() "/home/flavorjones/code/oss/nokogiri/ports/arm-linux-musl/libxslt/1.1.42/lib/libxslt-plugins"
116
116
  #endif
117
117
 
118
118
  /**
@@ -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: arm-linux-musl
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