juretta-ipt 1.0.6 → 1.0.7
Sign up to get free protection for your applications and to get access to all the features.
- data/ipt.gemspec +1 -1
- data/tasks/iphone_tools.rake +2 -2
- metadata +1 -1
data/ipt.gemspec
CHANGED
data/tasks/iphone_tools.rake
CHANGED
@@ -34,8 +34,8 @@ module IPT
|
|
34
34
|
class Parser
|
35
35
|
def initialize(path)
|
36
36
|
if File.file?(path)
|
37
|
-
type = `file #{path}`
|
38
|
-
@xml = type =~ /Apple binary property list/ ? `plutil -convert xml1 -o - #{path}` : path
|
37
|
+
type = `file '#{path}'`
|
38
|
+
@xml = type =~ /Apple binary property list/ ? `plutil -convert xml1 -o - '#{path}'` : path
|
39
39
|
end
|
40
40
|
end
|
41
41
|
|