xcodeproj 1.4.0 → 1.4.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.
- checksums.yaml +4 -4
- data/lib/xcodeproj/gem_version.rb +1 -1
- data/lib/xcodeproj/plist.rb +1 -1
- data/lib/xcodeproj/project.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 82fb2422799fc5fa094226e291b0f4aca3907a4e
|
4
|
+
data.tar.gz: 55cdcde243f6c7e81d4a2090e5d5d33fd0a4076a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: db09ae7860636eb6e65f01bdb7c529b59582f34a0e2973aa8a462d4ebeb361178920d14b0f2c66c4df13d4544ee4593ff3ccc3fe8b99a4548814e56078fd08db
|
7
|
+
data.tar.gz: 6cdaa2eff8c4f197ea2f77bde4e0008dfff76a26e26b79f6325fa15a8c7c20eeceb56beb66dbeb6d08cc6e2b7143298f23c272bdccb02dc7a25d291ab903bc88
|
data/lib/xcodeproj/plist.rb
CHANGED
@@ -52,7 +52,7 @@ module Xcodeproj
|
|
52
52
|
|
53
53
|
File.open(path, 'w') do |f|
|
54
54
|
plist = Nanaimo::Plist.new(hash, :xml)
|
55
|
-
Nanaimo::Writer::XMLWriter.new(plist, true, f).write
|
55
|
+
Nanaimo::Writer::XMLWriter.new(plist, :pretty => true, :output => f, :strict => false).write
|
56
56
|
end
|
57
57
|
end
|
58
58
|
|
data/lib/xcodeproj/project.rb
CHANGED
@@ -350,7 +350,7 @@ module Xcodeproj
|
|
350
350
|
@dirty = false if save_path == path
|
351
351
|
FileUtils.mkdir_p(save_path)
|
352
352
|
file = File.join(save_path, 'project.pbxproj')
|
353
|
-
File.open(file, 'w') { |f| Nanaimo::
|
353
|
+
File.open(file, 'w') { |f| Nanaimo::Writer::PBXProjWriter.new(to_ascii_plist, :pretty => true, :output => f, :strict => false).write }
|
354
354
|
end
|
355
355
|
|
356
356
|
# Marks the project as dirty, that is, modified from what is on disk.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: xcodeproj
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.4.
|
4
|
+
version: 1.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Eloy Duran
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-11-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -78,14 +78,14 @@ dependencies:
|
|
78
78
|
requirements:
|
79
79
|
- - "~>"
|
80
80
|
- !ruby/object:Gem::Version
|
81
|
-
version: 0.
|
81
|
+
version: 0.2.0
|
82
82
|
type: :runtime
|
83
83
|
prerelease: false
|
84
84
|
version_requirements: !ruby/object:Gem::Requirement
|
85
85
|
requirements:
|
86
86
|
- - "~>"
|
87
87
|
- !ruby/object:Gem::Version
|
88
|
-
version: 0.
|
88
|
+
version: 0.2.0
|
89
89
|
description: Xcodeproj lets you create and modify Xcode projects from Ruby. Script
|
90
90
|
boring management tasks or build Xcode-friendly libraries. Also includes support
|
91
91
|
for Xcode workspaces (.xcworkspace) and configuration files (.xcconfig).
|