plist4r 1.2.1 → 1.2.2
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 → extconf.rb} +2 -2
- data/plist4r.gemspec +4 -4
- metadata +6 -6
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.2.
|
|
1
|
+
1.2.2
|
|
@@ -5,8 +5,8 @@ require 'mkmf'
|
|
|
5
5
|
if File.exists? "/System/Library/Frameworks/CoreFoundation.framework"
|
|
6
6
|
$LDFLAGS += ' -framework CoreFoundation -undefined suppress -flat_namespace'
|
|
7
7
|
$LIBRUBYARG_SHARED=""
|
|
8
|
-
create_makefile("plist4r/backend/osx_plist/ext/osx_plist")
|
|
8
|
+
create_makefile("plist4r/backend/osx_plist/ext/osx_plist","osx_plist")
|
|
9
9
|
else
|
|
10
|
-
create_makefile("")
|
|
10
|
+
create_makefile("","null")
|
|
11
11
|
end
|
|
12
12
|
|
data/plist4r.gemspec
CHANGED
|
@@ -5,15 +5,15 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = "plist4r"
|
|
8
|
-
s.version = "1.2.
|
|
8
|
+
s.version = "1.2.2"
|
|
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 = "2011-10-
|
|
12
|
+
s.date = "2011-10-06"
|
|
13
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
14
|
s.email = "dreamcat4@gmail.com"
|
|
15
15
|
s.executables = ["plist4r"]
|
|
16
|
-
s.extensions = ["ext/
|
|
16
|
+
s.extensions = ["ext/extconf.rb"]
|
|
17
17
|
s.extra_rdoc_files = [
|
|
18
18
|
"LICENSE",
|
|
19
19
|
"README.rdoc"
|
|
@@ -27,7 +27,7 @@ Gem::Specification.new do |s|
|
|
|
27
27
|
"Rakefile",
|
|
28
28
|
"VERSION",
|
|
29
29
|
"bin/plist4r",
|
|
30
|
-
"ext/
|
|
30
|
+
"ext/extconf.rb",
|
|
31
31
|
"ext/osx_plist/plist.c",
|
|
32
32
|
"features/plist4r.feature",
|
|
33
33
|
"features/step_definitions/plist4r_steps.rb",
|
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:
|
|
4
|
+
hash: 27
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 1
|
|
8
8
|
- 2
|
|
9
|
-
-
|
|
10
|
-
version: 1.2.
|
|
9
|
+
- 2
|
|
10
|
+
version: 1.2.2
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- dreamcat4
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2011-10-
|
|
18
|
+
date: 2011-10-06 00:00:00 Z
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|
|
21
21
|
name: libxml-ruby
|
|
@@ -108,7 +108,7 @@ email: dreamcat4@gmail.com
|
|
|
108
108
|
executables:
|
|
109
109
|
- plist4r
|
|
110
110
|
extensions:
|
|
111
|
-
- ext/
|
|
111
|
+
- ext/extconf.rb
|
|
112
112
|
extra_rdoc_files:
|
|
113
113
|
- LICENSE
|
|
114
114
|
- README.rdoc
|
|
@@ -121,7 +121,7 @@ files:
|
|
|
121
121
|
- Rakefile
|
|
122
122
|
- VERSION
|
|
123
123
|
- bin/plist4r
|
|
124
|
-
- ext/
|
|
124
|
+
- ext/extconf.rb
|
|
125
125
|
- ext/osx_plist/plist.c
|
|
126
126
|
- features/plist4r.feature
|
|
127
127
|
- features/step_definitions/plist4r_steps.rb
|