xmlhash 1.3.8 → 1.3.9

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: 3f72be19a08e60ff2efe59afb44753d23f3bb9eea969e98c6dbb80e03df376a8
4
- data.tar.gz: e1114dead31f0e4ecedf639a22dac1f114ba136f21875183b35a65dd88867e5b
3
+ metadata.gz: e7556bf0f77013d8aeeebd1f5db6a8b84e94efa8fb90e0a41c0956f2c6958835
4
+ data.tar.gz: d466e9753fb517eafecf216c150fff3a4bd086f314350f6492d839f566ca8100
5
5
  SHA512:
6
- metadata.gz: c57699c0ca0943c498b154dfefd9d9e2039fd05daf19427852417b634dd364b75c0f03280e0017ea1da04745684e82e19d68176ef3382c864db111c9dfb292c2
7
- data.tar.gz: fb8689064ee31b7dcd827682ac0d25bbc1b7c8eed41284118d283ec6aecd59a076e984d37c9539b3dbbd70fdd8b75f940743004cc86fe1846c9e86fa5fcd2606
6
+ metadata.gz: 1607cb9f2ac4954784d6c01d1ea28853049d6e443f0fd8ac6fc114c305e66fc682c61fa221a3e42bb470c72b00d30a114f5e71bf6c62b7262fef3ccf25c413dc
7
+ data.tar.gz: ef5d73517ebf92c120bf049f8c4971e66fbf8fa05f0c46c93981d7d40378c2dec1e5f890c12dad2e063ff217d0bc82e83e14a0c0ba22202ad2b49ac4e302c666
data/History.txt CHANGED
@@ -1,3 +1,7 @@
1
+ === 1.3.9 / 2023-01-20
2
+
3
+ * Avoid C expressions that trip some compilers
4
+
1
5
  === 1.3.8 / 2022-04-04
2
6
 
3
7
  * Do not replace entities while parsing
@@ -4,5 +4,5 @@ unless find_library('xml2', 'xmlAddID')
4
4
  abort "xml2 is missing. please install libxml2"
5
5
  end
6
6
  $CFLAGS << ' ' + PackageConfig.new('libxml-2.0').cflags
7
- $CFLAGS += " -Werror "
7
+ $CFLAGS += " -Werror -Wall "
8
8
  create_makefile('xmlhash/xmlhash')
@@ -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
@@ -1,7 +1,7 @@
1
1
  require 'xmlhash/xmlhash'
2
2
 
3
3
  module Xmlhash
4
- VERSION = '1.3.8'
4
+ VERSION = '1.3.9'
5
5
 
6
6
  class XMLHash < Hash
7
7
 
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.8
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: 2022-04-04 00:00:00.000000000 Z
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.23'
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.23'
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.7
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