CFPropertyList 3.0.1 → 3.0.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ce2a2a12ec01d75900aa23b675b98a29a536514b3a57535c1b8ba0eedc40d54b
4
- data.tar.gz: 88c7d8d35e92c2c25d9da2007952a5d5b7e5149a74b3375d474075d5b71b3e16
3
+ metadata.gz: 8c0a5cbb9e2df1216733df683ea384fc16c6bc4cf391ba5d5a211d503fa81b39
4
+ data.tar.gz: ccb49926da5d6c487cf60b55824fdc1f1c58d58dff1f6a2ef0bc68420899efa2
5
5
  SHA512:
6
- metadata.gz: f3c408d2b546aaf3d0a5df01f12257965e5925130db5dbf4bc0bc92c4ef549ed649d89fb7d5887e33603f9846e59d081a3b2b11340e3573a3f3e14931f240d82
7
- data.tar.gz: a881a3d15e2f8c6e2e14c7c6b31adb2a7f3c5a37555dc6a1f745bdf516c8c4c08fd789d90b8935aedf98952d3bba05c24538837d5ea0107cc9bf3493b0308837
6
+ metadata.gz: d44a547b9efb6e3dc36cb3c78a1c4735c62ec242c12ea01158a85ee10033ae391f325663253ae8e0df90347a40ac92ca626df39308b150a327581ffd1aef842c
7
+ data.tar.gz: c95903238e74197c99628fc7bfd9263a09a93c33184da8b39a03e49adeaf77ba693d64c5fca62a5bdb305933b1edbaec4fb19075a54b5bd47a6633a26e868dda
@@ -5,7 +5,8 @@ require 'libxml'
5
5
  module CFPropertyList
6
6
  # XML parser
7
7
  class LibXMLParser < XMLParserInterface
8
- PARSER_OPTIONS = LibXML::XML::Parser::Options::NOBLANKS|LibXML::XML::Parser::Options::NOENT|LibXML::XML::Parser::Options::NONET
8
+ LibXML::XML::Error.set_handler(&LibXML::XML::Error::QUIET_HANDLER)
9
+ PARSER_OPTIONS = LibXML::XML::Parser::Options::NOBLANKS|LibXML::XML::Parser::Options::NONET
9
10
  # read a XML file
10
11
  # opts::
11
12
  # * :file - The filename of the file to load
@@ -5,7 +5,7 @@ require 'nokogiri'
5
5
  module CFPropertyList
6
6
  # XML parser
7
7
  class NokogiriXMLParser < ParserInterface
8
- PARSER_OPTIONS = Nokogiri::XML::ParseOptions::NOBLANKS|Nokogiri::XML::ParseOptions::NOENT|Nokogiri::XML::ParseOptions::NONET
8
+ PARSER_OPTIONS = Nokogiri::XML::ParseOptions::NOBLANKS|Nokogiri::XML::ParseOptions::NONET
9
9
  # read a XML file
10
10
  # opts::
11
11
  # * :file - The filename of the file to load
metadata CHANGED
@@ -1,15 +1,71 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: CFPropertyList
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1
4
+ version: 3.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Christian Kruse
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-08-21 00:00:00.000000000 Z
11
+ date: 2021-11-15 00:00:00.000000000 Z
12
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rexml
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: libxml-ruby
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: minitest
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: nokogiri
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
13
69
  - !ruby/object:Gem::Dependency
14
70
  name: rake
15
71
  requirement: !ruby/object:Gem::Requirement
@@ -45,11 +101,11 @@ files:
45
101
  - lib/cfpropertylist/rbNokogiriParser.rb
46
102
  - lib/cfpropertylist/rbPlainCFPropertyList.rb
47
103
  - lib/cfpropertylist/rbREXMLParser.rb
48
- homepage: http://github.com/ckruse/CFPropertyList
104
+ homepage: https://github.com/ckruse/CFPropertyList
49
105
  licenses:
50
106
  - MIT
51
107
  metadata: {}
52
- post_install_message:
108
+ post_install_message:
53
109
  rdoc_options: []
54
110
  require_paths:
55
111
  - lib
@@ -64,8 +120,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
64
120
  - !ruby/object:Gem::Version
65
121
  version: '0'
66
122
  requirements: []
67
- rubygems_version: 3.0.3
68
- signing_key:
123
+ rubygems_version: 3.2.22
124
+ signing_key:
69
125
  specification_version: 4
70
126
  summary: Read, write and manipulate both binary and XML property lists as defined
71
127
  by apple