nokogiri 1.17.0-x64-mingw32 → 1.17.2-x64-mingw32
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e2f5d32ed095a1763a14edac5790b3b2b87000f35d537513c3af75bd32575858
|
4
|
+
data.tar.gz: fade754488ff7f35ff0168f8bd4c64f54adbe47722cb9d58fae2d3b084316526
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2f6d3d3aeb4809cee5e78f4cea89e09c472a7a1ec1cb98bc078a936d0deb97a6fe68e5a21aa2293fe202fe7ccd14c5bcc15741d69045ee6a308e4d93a1975a5e
|
7
|
+
data.tar.gz: bc6c0d0316a842a491f678ef5a439137603376c4c2645ef448cde9299160fa70b8d69c5804ee2949f0c28f5ddf8708df8651749360cc23a7b421d6389ba37e77
|
@@ -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/
|
115
|
+
#define LIBXSLT_DEFAULT_PLUGINS_PATH() "/home/flavorjones/code/oss/nokogiri/ports/x86-mingw32/libxslt/1.1.42/lib/libxslt-plugins"
|
116
116
|
#endif
|
117
117
|
|
118
118
|
/**
|
data/ext/nokogiri/xml_node.c
CHANGED
@@ -969,6 +969,7 @@ rb_xml_node_initialize_copy_with_args(VALUE rb_self, VALUE rb_other, VALUE rb_le
|
|
969
969
|
xmlNodePtr c_self, c_other;
|
970
970
|
int c_level;
|
971
971
|
xmlDocPtr c_new_parent_doc;
|
972
|
+
VALUE rb_node_cache;
|
972
973
|
|
973
974
|
Noko_Node_Get_Struct(rb_other, xmlNode, c_other);
|
974
975
|
c_level = (int)NUM2INT(rb_level);
|
@@ -980,6 +981,10 @@ rb_xml_node_initialize_copy_with_args(VALUE rb_self, VALUE rb_other, VALUE rb_le
|
|
980
981
|
_xml_node_data_ptr_set(rb_self, c_self);
|
981
982
|
noko_xml_document_pin_node(c_self);
|
982
983
|
|
984
|
+
rb_node_cache = DOC_NODE_CACHE(c_new_parent_doc);
|
985
|
+
rb_ary_push(rb_node_cache, rb_self);
|
986
|
+
rb_funcall(rb_new_parent_doc, id_decorate, 1, rb_self);
|
987
|
+
|
983
988
|
return rb_self;
|
984
989
|
}
|
985
990
|
|
Binary file
|
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.17.
|
4
|
+
version: 1.17.2
|
5
5
|
platform: x64-mingw32
|
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-
|
23
|
+
date: 2024-12-12 00:00:00.000000000 Z
|
24
24
|
dependencies:
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: racc
|