nokogiri-xmlsec-instructure 0.10.0 → 0.10.1

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: dfa21a9401b8f630dd0bb6ba65cde7267b9de2aaec6963aab2d5faf7dfa22b17
4
- data.tar.gz: c07bb8140c43b7f494237b17d988059a8f9abf7abfb1b4af8f9423d16622a103
3
+ metadata.gz: 72eea7707ea8c4d24e0cb82afc804752be0313d810554ca54f4ea9e4a3f857e9
4
+ data.tar.gz: 4641d782e76a25aa3f251ff160f04d66198a1c2c3a4020f625dc29f7bbe5e365
5
5
  SHA512:
6
- metadata.gz: f46161c2ab5f21657a1101591dea91959b0b1e5eecc2690d855ccac112c952e6768b32eda0871fc02cf7a240d1025b42b0275b003cec582818ccdd63189a58de
7
- data.tar.gz: dcad0346917892f812e27203c162dd4515831ebf45b97b13abfb660876b4f017278232b71a40da5f3eb9c90166c010a4b75f65fffd6261b440c5fe2d3d67fd74
6
+ metadata.gz: f116055729f4a0bddbee6432c99e9f505aad12a45452121d4fb14414de8eaf613009db60d28d55a7e7c8b7c5678e67e7d3a297741186f4e9eabcf4d08b88385c
7
+ data.tar.gz: d73b7b9d8ff63621b3162b4d83dfcf8ffd52b253d589fc863ef44d47847801e23ad8a386b4459a933431c5eaef0e377051089e8c4af06cde05522e3d390f4ae3
@@ -4,7 +4,7 @@
4
4
  // technically we should include nokogiri.h, but we don't know
5
5
  // how to find it. we _know_ this function will exist at runtime
6
6
  // though, so just declare it here
7
- void nokogiri_root_node(xmlNodePtr);
7
+ void noko_xml_document_pin_node(xmlNodePtr);
8
8
 
9
9
  VALUE decrypt_with_key(VALUE self, VALUE rb_key_name, VALUE rb_key) {
10
10
  VALUE rb_exception_result = Qnil;
@@ -63,7 +63,7 @@ done:
63
63
  // the replaced node is orphaned, but not freed; let Nokogiri
64
64
  // own it now
65
65
  if(encCtx->replacedNodeList != NULL) {
66
- nokogiri_root_node(encCtx->replacedNodeList);
66
+ noko_xml_document_pin_node(encCtx->replacedNodeList);
67
67
  // no really, please don't free it
68
68
  encCtx->replacedNodeList = NULL;
69
69
  }
@@ -1,3 +1,3 @@
1
1
  module Xmlsec
2
- VERSION = '0.10.0'
2
+ VERSION = '0.10.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nokogiri-xmlsec-instructure
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.0
4
+ version: 0.10.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Albert J. Wong