CFPropertyList 2.0.14 → 2.0.15
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.
- data/README +8 -0
- data/lib/rbCFPropertyList.rb +1 -1
- metadata +32 -13
data/README
CHANGED
@@ -3,6 +3,14 @@ class to read, manipulate and write both XML and binary property list
|
|
3
3
|
files (plist(5)) as defined by Apple. Have a look at CFPropertyList::List
|
4
4
|
for more documentation.
|
5
5
|
|
6
|
+
== Installation
|
7
|
+
|
8
|
+
You could either use ruby gems and install it via
|
9
|
+
|
10
|
+
gem install CFPropertyList
|
11
|
+
|
12
|
+
or you could clone this repository and place it somewhere in your load path.
|
13
|
+
|
6
14
|
== Example
|
7
15
|
require 'cfpropertylist'
|
8
16
|
|
data/lib/rbCFPropertyList.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,12 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: CFPropertyList
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 2
|
7
|
+
- 0
|
8
|
+
- 15
|
9
|
+
version: 2.0.15
|
5
10
|
platform: ruby
|
6
11
|
authors:
|
7
12
|
- Christian Kruse
|
@@ -9,29 +14,39 @@ autorequire:
|
|
9
14
|
bindir: bin
|
10
15
|
cert_chain: []
|
11
16
|
|
12
|
-
date:
|
17
|
+
date: 2011-01-27 00:00:00 +01:00
|
13
18
|
default_executable:
|
14
19
|
dependencies:
|
15
20
|
- !ruby/object:Gem::Dependency
|
16
21
|
name: libxml-ruby
|
17
|
-
|
18
|
-
|
19
|
-
|
22
|
+
prerelease: false
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
24
|
+
none: false
|
20
25
|
requirements:
|
21
26
|
- - ">="
|
22
27
|
- !ruby/object:Gem::Version
|
28
|
+
segments:
|
29
|
+
- 1
|
30
|
+
- 1
|
31
|
+
- 0
|
23
32
|
version: 1.1.0
|
24
|
-
|
33
|
+
type: :runtime
|
34
|
+
version_requirements: *id001
|
25
35
|
- !ruby/object:Gem::Dependency
|
26
36
|
name: rake
|
27
|
-
|
28
|
-
|
29
|
-
|
37
|
+
prerelease: false
|
38
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
39
|
+
none: false
|
30
40
|
requirements:
|
31
41
|
- - ">="
|
32
42
|
- !ruby/object:Gem::Version
|
43
|
+
segments:
|
44
|
+
- 0
|
45
|
+
- 7
|
46
|
+
- 0
|
33
47
|
version: 0.7.0
|
34
|
-
|
48
|
+
type: :runtime
|
49
|
+
version_requirements: *id002
|
35
50
|
description: This is a module to read, write and manipulate both binary and XML property lists as defined by apple.
|
36
51
|
email: cjk@wwwtech.de
|
37
52
|
executables: []
|
@@ -58,21 +73,25 @@ rdoc_options: []
|
|
58
73
|
require_paths:
|
59
74
|
- lib
|
60
75
|
required_ruby_version: !ruby/object:Gem::Requirement
|
76
|
+
none: false
|
61
77
|
requirements:
|
62
78
|
- - ">="
|
63
79
|
- !ruby/object:Gem::Version
|
80
|
+
segments:
|
81
|
+
- 0
|
64
82
|
version: "0"
|
65
|
-
version:
|
66
83
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
84
|
+
none: false
|
67
85
|
requirements:
|
68
86
|
- - ">="
|
69
87
|
- !ruby/object:Gem::Version
|
88
|
+
segments:
|
89
|
+
- 0
|
70
90
|
version: "0"
|
71
|
-
version:
|
72
91
|
requirements: []
|
73
92
|
|
74
93
|
rubyforge_project: cfpropertylist
|
75
|
-
rubygems_version: 1.3.
|
94
|
+
rubygems_version: 1.3.7
|
76
95
|
signing_key:
|
77
96
|
specification_version: 3
|
78
97
|
summary: Read, write and manipulate both binary and XML property lists as defined by apple
|