xmlhash 1.3.8 → 1.3.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/History.txt +4 -0
- data/ext/xmlhash/extconf.rb +1 -1
- data/ext/xmlhash/xmlhash.c +2 -2
- data/lib/xmlhash.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e7556bf0f77013d8aeeebd1f5db6a8b84e94efa8fb90e0a41c0956f2c6958835
|
|
4
|
+
data.tar.gz: d466e9753fb517eafecf216c150fff3a4bd086f314350f6492d839f566ca8100
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1607cb9f2ac4954784d6c01d1ea28853049d6e443f0fd8ac6fc114c305e66fc682c61fa221a3e42bb470c72b00d30a114f5e71bf6c62b7262fef3ccf25c413dc
|
|
7
|
+
data.tar.gz: ef5d73517ebf92c120bf049f8c4971e66fbf8fa05f0c46c93981d7d40378c2dec1e5f890c12dad2e063ff217d0bc82e83e14a0c0ba22202ad2b49ac4e302c666
|
data/History.txt
CHANGED
data/ext/xmlhash/extconf.rb
CHANGED
data/ext/xmlhash/xmlhash.c
CHANGED
|
@@ -26,7 +26,7 @@ static VALUE m_xmlClass = Qnil;
|
|
|
26
26
|
static rb_encoding *m_current_encoding = NULL;
|
|
27
27
|
#endif
|
|
28
28
|
|
|
29
|
-
void init_XmlhashParserData()
|
|
29
|
+
void init_XmlhashParserData(void)
|
|
30
30
|
{
|
|
31
31
|
m_current = Qnil;
|
|
32
32
|
rb_ary_clear(m_stack);
|
|
@@ -238,7 +238,7 @@ static VALUE parse_xml_hash(VALUE self, VALUE rb_xml)
|
|
|
238
238
|
return m_result;
|
|
239
239
|
}
|
|
240
240
|
|
|
241
|
-
void Init_xmlhash()
|
|
241
|
+
void Init_xmlhash(void)
|
|
242
242
|
{
|
|
243
243
|
VALUE mXmlhash;
|
|
244
244
|
|
data/lib/xmlhash.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: xmlhash
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.3.
|
|
4
|
+
version: 1.3.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Stephan Kulow
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-01-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: pkg-config
|
|
@@ -64,14 +64,14 @@ dependencies:
|
|
|
64
64
|
requirements:
|
|
65
65
|
- - "~>"
|
|
66
66
|
- !ruby/object:Gem::Version
|
|
67
|
-
version: '3.
|
|
67
|
+
version: '3.26'
|
|
68
68
|
type: :development
|
|
69
69
|
prerelease: false
|
|
70
70
|
version_requirements: !ruby/object:Gem::Requirement
|
|
71
71
|
requirements:
|
|
72
72
|
- - "~>"
|
|
73
73
|
- !ruby/object:Gem::Version
|
|
74
|
-
version: '3.
|
|
74
|
+
version: '3.26'
|
|
75
75
|
description: |-
|
|
76
76
|
A small C module that wraps libxml2's xmlreader to parse a XML
|
|
77
77
|
string into a ruby hash
|
|
@@ -118,7 +118,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
118
118
|
- !ruby/object:Gem::Version
|
|
119
119
|
version: '0'
|
|
120
120
|
requirements: []
|
|
121
|
-
rubygems_version: 3.3.
|
|
121
|
+
rubygems_version: 3.3.26
|
|
122
122
|
signing_key:
|
|
123
123
|
specification_version: 4
|
|
124
124
|
summary: A small C module that wraps libxml2's xmlreader to parse a XML string into
|