plist2 3.1.0

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.
metadata ADDED
@@ -0,0 +1,69 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: plist2
3
+ version: !ruby/object:Gem::Version
4
+ version: 3.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Ben Bleything and Patrick May
8
+ autorequire: plist
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-03-19 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: |
14
+ Plist is a library to manipulate Property List files, also known as plists. It can parse plist files into native Ruby data structures as well as generating new plist files from your Ruby objects.
15
+ email:
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - CHANGELOG
21
+ - LICENSE
22
+ - README.rdoc
23
+ - Rakefile
24
+ - lib/plist.rb
25
+ - lib/plist/generator.rb
26
+ - lib/plist/parser.rb
27
+ - test/assets/AlbumData.xml
28
+ - test/assets/Cookies.plist
29
+ - test/assets/commented.plist
30
+ - test/assets/example_data.bin
31
+ - test/assets/example_data.jpg
32
+ - test/assets/example_data.plist
33
+ - test/assets/test_data_elements.plist
34
+ - test/assets/test_empty_key.plist
35
+ - test/test_data_elements.rb
36
+ - test/test_generator.rb
37
+ - test/test_generator_basic_types.rb
38
+ - test/test_generator_collections.rb
39
+ - test/test_parser.rb
40
+ homepage: http://plist.rubyforge.org
41
+ licenses: []
42
+ metadata: {}
43
+ post_install_message:
44
+ rdoc_options: []
45
+ require_paths:
46
+ - lib
47
+ required_ruby_version: !ruby/object:Gem::Requirement
48
+ requirements:
49
+ - - ">="
50
+ - !ruby/object:Gem::Version
51
+ version: '0'
52
+ required_rubygems_version: !ruby/object:Gem::Requirement
53
+ requirements:
54
+ - - ">="
55
+ - !ruby/object:Gem::Version
56
+ version: '0'
57
+ requirements: []
58
+ rubyforge_project: plist
59
+ rubygems_version: 2.2.2
60
+ signing_key:
61
+ specification_version: 4
62
+ summary: All-purpose Property List manipulation library. Fork from the original until
63
+ some stuff is merged.
64
+ test_files:
65
+ - test/test_generator.rb
66
+ - test/test_parser.rb
67
+ - test/test_data_elements.rb
68
+ - test/test_generator_collections.rb
69
+ - test/test_generator_basic_types.rb