nokogiri 1.18.0-aarch64-linux-musl → 1.18.1-aarch64-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: 8bd40121e18c8f43ee4e74e0d19b8b5398d6dbec51b9a0bfc6f169e824aeaff2
4
- data.tar.gz: 72436295f7095ea1372cf39be471ecb254477278a00898bdd483b760c14f32be
3
+ metadata.gz: 7903f9d097c63efa90eacb553425f5dc09dc8dd40029bf4b4e4a57982c31be59
4
+ data.tar.gz: 7052c11ab8fd44f07a81501b89e1a27ff4edd42c4a2b97f71bffcb1df44a5556
5
5
  SHA512:
6
- metadata.gz: 513f74450c1fd2712d4cb97f1f9fd409aee301a7d617ca4281cfb52472b5ddbdf74ed6d7d67bd5e52e4816022093dad486c0e17aa257413e9bd39930fb9b3838
7
- data.tar.gz: 2815bf523da534402d28e59d69d3f7838123e09b0c0aba92dd420622153d90a2a914ad26ade380b14dade1ad204672b923947a9f7ff37f3add249b9f71f5b060
6
+ metadata.gz: 307610dc53a197a14d5c26099d9179b0fd050b35abc30854f8ac50def4aaccc1ce28399162bc790dfd62678eaa0a325b7e6a23cfcf4580e2f186e3f40723630e
7
+ data.tar.gz: 34a9b8831b21290a85f72c8057dc71e9f5729e797054483cedaadef237d5ca79b766fcd634f1482f2ef6cce5a687fa8e1af4f7e3ee11564e0a7b6334ca12593a
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-musl/libxslt/1.1.42/lib/libxslt-plugins"
115
+ #define LIBXSLT_DEFAULT_PLUGINS_PATH() "/home/flavorjones/code/oss/nokogiri/ports/x86_64-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: aarch64-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