plist4r 1.1.6 → 1.2.1
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/VERSION +1 -1
- data/ext/osx_plist/extconf.rb +4 -1
- data/plist4r.gemspec +8 -12
- metadata +8 -11
- data/.gitignore +0 -29
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.1
|
|
1
|
+
1.2.1
|
data/ext/osx_plist/extconf.rb
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
2
|
|
|
3
|
+
require 'mkmf'
|
|
4
|
+
|
|
3
5
|
if File.exists? "/System/Library/Frameworks/CoreFoundation.framework"
|
|
4
|
-
require 'mkmf'
|
|
5
6
|
$LDFLAGS += ' -framework CoreFoundation -undefined suppress -flat_namespace'
|
|
6
7
|
$LIBRUBYARG_SHARED=""
|
|
7
8
|
create_makefile("plist4r/backend/osx_plist/ext/osx_plist")
|
|
9
|
+
else
|
|
10
|
+
create_makefile("")
|
|
8
11
|
end
|
|
9
12
|
|
data/plist4r.gemspec
CHANGED
|
@@ -4,15 +4,14 @@
|
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
|
-
s.name =
|
|
8
|
-
s.version = "1.1
|
|
7
|
+
s.name = "plist4r"
|
|
8
|
+
s.version = "1.2.1"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["dreamcat4"]
|
|
12
|
-
s.date =
|
|
13
|
-
s.
|
|
14
|
-
s.
|
|
15
|
-
s.email = %q{dreamcat4@gmail.com}
|
|
12
|
+
s.date = "2011-10-05"
|
|
13
|
+
s.description = "Plist4r is for editing Plist files in an easy-to-use, fast, and reliabile way. A comprehensive and fully featured Ruby library. Xml and Binary file formats are supported, with backends for Linux and Mac."
|
|
14
|
+
s.email = "dreamcat4@gmail.com"
|
|
16
15
|
s.executables = ["plist4r"]
|
|
17
16
|
s.extensions = ["ext/osx_plist/extconf.rb"]
|
|
18
17
|
s.extra_rdoc_files = [
|
|
@@ -21,7 +20,6 @@ Gem::Specification.new do |s|
|
|
|
21
20
|
]
|
|
22
21
|
s.files = [
|
|
23
22
|
".document",
|
|
24
|
-
".gitignore",
|
|
25
23
|
".nojekyll",
|
|
26
24
|
".yardopts",
|
|
27
25
|
"LICENSE",
|
|
@@ -106,11 +104,10 @@ Gem::Specification.new do |s|
|
|
|
106
104
|
"spec/spec.opts",
|
|
107
105
|
"spec/spec_helper.rb"
|
|
108
106
|
]
|
|
109
|
-
s.homepage =
|
|
110
|
-
s.rdoc_options = ["--charset=UTF-8"]
|
|
107
|
+
s.homepage = "http://github.com/dreamcat4/plist4r"
|
|
111
108
|
s.require_paths = ["lib"]
|
|
112
|
-
s.rubygems_version =
|
|
113
|
-
s.summary =
|
|
109
|
+
s.rubygems_version = "1.8.10"
|
|
110
|
+
s.summary = "Dreamcat4's plist4r gem. For reading/writing plists in ruby"
|
|
114
111
|
s.test_files = [
|
|
115
112
|
"spec/launchd_examples.rb",
|
|
116
113
|
"spec/plist4r/application_spec.rb",
|
|
@@ -131,7 +128,6 @@ Gem::Specification.new do |s|
|
|
|
131
128
|
]
|
|
132
129
|
|
|
133
130
|
if s.respond_to? :specification_version then
|
|
134
|
-
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
135
131
|
s.specification_version = 3
|
|
136
132
|
|
|
137
133
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: plist4r
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
5
|
-
prerelease:
|
|
4
|
+
hash: 29
|
|
5
|
+
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 1
|
|
8
|
+
- 2
|
|
8
9
|
- 1
|
|
9
|
-
|
|
10
|
-
version: 1.1.6
|
|
10
|
+
version: 1.2.1
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- dreamcat4
|
|
@@ -15,8 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date:
|
|
19
|
-
default_executable: plist4r
|
|
18
|
+
date: 2011-10-05 00:00:00 Z
|
|
20
19
|
dependencies:
|
|
21
20
|
- !ruby/object:Gem::Dependency
|
|
22
21
|
name: libxml-ruby
|
|
@@ -115,7 +114,6 @@ extra_rdoc_files:
|
|
|
115
114
|
- README.rdoc
|
|
116
115
|
files:
|
|
117
116
|
- .document
|
|
118
|
-
- .gitignore
|
|
119
117
|
- .nojekyll
|
|
120
118
|
- .yardopts
|
|
121
119
|
- LICENSE
|
|
@@ -199,13 +197,12 @@ files:
|
|
|
199
197
|
- spec/scratchpad.rb
|
|
200
198
|
- spec/spec.opts
|
|
201
199
|
- spec/spec_helper.rb
|
|
202
|
-
has_rdoc: true
|
|
203
200
|
homepage: http://github.com/dreamcat4/plist4r
|
|
204
201
|
licenses: []
|
|
205
202
|
|
|
206
203
|
post_install_message:
|
|
207
|
-
rdoc_options:
|
|
208
|
-
|
|
204
|
+
rdoc_options: []
|
|
205
|
+
|
|
209
206
|
require_paths:
|
|
210
207
|
- lib
|
|
211
208
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
@@ -229,7 +226,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
229
226
|
requirements: []
|
|
230
227
|
|
|
231
228
|
rubyforge_project:
|
|
232
|
-
rubygems_version: 1.
|
|
229
|
+
rubygems_version: 1.8.10
|
|
233
230
|
signing_key:
|
|
234
231
|
specification_version: 3
|
|
235
232
|
summary: Dreamcat4's plist4r gem. For reading/writing plists in ruby
|
data/.gitignore
DELETED
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
## MAC OS
|
|
2
|
-
.DS_Store
|
|
3
|
-
|
|
4
|
-
## TEXTMATE
|
|
5
|
-
*.tmproj
|
|
6
|
-
tmtags
|
|
7
|
-
|
|
8
|
-
## EMACS
|
|
9
|
-
*~
|
|
10
|
-
\#*
|
|
11
|
-
.\#*
|
|
12
|
-
|
|
13
|
-
## VIM
|
|
14
|
-
*.swp
|
|
15
|
-
|
|
16
|
-
## PROJECT::GENERAL
|
|
17
|
-
coverage
|
|
18
|
-
rdoc
|
|
19
|
-
pkg
|
|
20
|
-
|
|
21
|
-
## PROJECT::SPECIFIC
|
|
22
|
-
.yardoc
|
|
23
|
-
doc
|
|
24
|
-
ext/osx_plist/plist.o
|
|
25
|
-
ext/osx_plist/Makefile
|
|
26
|
-
|
|
27
|
-
# Ruby
|
|
28
|
-
*.bundle
|
|
29
|
-
|