nokogiri 1.18.0-aarch64-linux-gnu → 1.18.1-aarch64-linux-gnu

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: 0c34e354fc3390a248322dfc48a992bd320e654e0754b4be8c6efc5decc97d76
4
- data.tar.gz: c91820092cd11e1403437e84d137fc14032a5e9dc8c8629cc7fc00d418d20d41
3
+ metadata.gz: 2118606dd212bd6e160b48d649abc488f46ca54028953ca77db745c480573818
4
+ data.tar.gz: 71fa77a242b89848d677f6f470c076bcdfb4c8871508c181a94922ef5c8ebbed
5
5
  SHA512:
6
- metadata.gz: 49d49a7647b3db0c78b932e677a6eb84d544e101f87d88a89381c073c312fe6086bded8b6da1d2be80455df55a12bd60c777b8a06d044356a1b8946538f4c39e
7
- data.tar.gz: f5c35ed63c942ad296bb09fd458ceef812401d13b3d8d6ebe5f51fc150b0a24e104ee65ac31f746f7a97ea21524a0604d4e3d25ecf3613f5f63fbe24eefb303b
6
+ metadata.gz: c7970a1a644caa7a251a386faccbf635bb6241bce6785078a45f1493f0252c73177fdcf75e4466943d6cfdca0054b3c8c91d55f6fa168cd1be9dccb0bc975115
7
+ data.tar.gz: 38b3d98836caf04c66ca754a94c91ea53a4c9111523e7a5ed7d0192a07bb9a1d5bfe06daf9a55f33c339d22db85d44cc727fd345f9500b49d7aa7a794cb4b552
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/aarch64-linux-gnu/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-gnu
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