xcoder 0.0.11 → 0.0.12

Sign up to get free protection for your applications and to get access to all the features.
Files changed (34) hide show
  1. data/lib/xcode/builder.rb +20 -2
  2. data/lib/xcode/project.rb +10 -1
  3. data/lib/xcode/version.rb +1 -1
  4. data/spec/TestProject/TestProject.xcodeproj/project.pbxproj +8 -0
  5. data/spec/TestProject/TestProjectTests/AnotherTest.h +16 -0
  6. data/spec/TestProject/TestProjectTests/AnotherTest.m +19 -0
  7. data/spec/TestProject/TestProjectTests/TestProjectTests.m +8 -2
  8. data/spec/TestWorkspace.xcworkspace/xcuserdata/ray.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  9. data/spec/configuration_spec.rb +6 -0
  10. metadata +12 -56
  11. data/spec/TestProject/build/Debug-iphoneos/TestProject-Debug-1.0.dSYM.zip +0 -0
  12. data/spec/TestProject/build/Debug-iphoneos/TestProject-Debug-1.0.ipa +0 -0
  13. data/spec/TestProject/build/Debug-iphoneos/TestProject.app.dSYM/Contents/Info.plist +0 -20
  14. data/spec/TestProject/build/Debug-iphoneos/TestProject.app.dSYM/Contents/Resources/DWARF/TestProject +0 -0
  15. data/spec/TestProject/build/Debug-iphoneos/TestProject.app/Info.plist +0 -0
  16. data/spec/TestProject/build/Debug-iphoneos/TestProject.app/PkgInfo +0 -1
  17. data/spec/TestProject/build/Debug-iphoneos/TestProject.app/ResourceRules.plist +0 -25
  18. data/spec/TestProject/build/Debug-iphoneos/TestProject.app/TestProject +0 -0
  19. data/spec/TestProject/build/Debug-iphoneos/TestProject.app/_CodeSignature/CodeResources +0 -40
  20. data/spec/TestProject/build/Debug-iphoneos/TestProject.app/embedded.mobileprovision +0 -0
  21. data/spec/TestProject/build/Debug-iphoneos/TestProject.app/en.lproj/InfoPlist.strings +0 -0
  22. data/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/Objects-normal/armv7/AppDelegate.d +0 -3
  23. data/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/Objects-normal/armv7/AppDelegate.o +0 -0
  24. data/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/Objects-normal/armv7/TestProject.LinkFileList +0 -2
  25. data/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/Objects-normal/armv7/main.d +0 -3
  26. data/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/Objects-normal/armv7/main.o +0 -0
  27. data/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject-all-target-headers.hmap +0 -0
  28. data/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject-generated-files.hmap +0 -0
  29. data/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject-own-target-headers.hmap +0 -0
  30. data/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject-project-headers.hmap +0 -0
  31. data/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject.dep +0 -12
  32. data/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject.hmap +0 -0
  33. data/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject.xcent +0 -20
  34. data/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/build-state.dat +0 -254
data/lib/xcode/builder.rb CHANGED
@@ -15,7 +15,7 @@ module Xcode
15
15
  end
16
16
 
17
17
  def install_profile
18
- return if @profile.nil?
18
+ return nil if @profile.nil?
19
19
  # TODO: remove other profiles for the same app?
20
20
  p = ProvisioningProfile.new(@profile)
21
21
 
@@ -26,10 +26,11 @@ module Xcode
26
26
  end
27
27
 
28
28
  p.install
29
+ p
29
30
  end
30
31
 
31
32
  def build
32
- install_profile
33
+ profile = install_profile
33
34
 
34
35
  cmd = []
35
36
  cmd << "xcodebuild"
@@ -43,6 +44,23 @@ module Xcode
43
44
  cmd << "CODE_SIGN_IDENTITY=\"#{@identity}\"" unless @identity.nil?
44
45
  cmd << "OBJROOT=\"#{@build_path}\""
45
46
  cmd << "SYMROOT=\"#{@build_path}\""
47
+ cmd << "PROVISIONING_PROFILE=#{profile.uuid}" unless profile.nil?
48
+ yield(cmd) if block_given?
49
+
50
+ Xcode::Shell.execute(cmd)
51
+ end
52
+
53
+ def test
54
+ build do |cmd|
55
+ cmd.select! do |line|
56
+ !line=~/\^-sdk/
57
+ end
58
+
59
+ cmd << "TEST_AFTER_BUILD=YES"
60
+ cmd << "TEST_HOST=''"
61
+ cmd << "-sdk iphonesimulator5.0"
62
+ end
63
+
46
64
  Xcode::Shell.execute(cmd)
47
65
  end
48
66
 
data/lib/xcode/project.rb CHANGED
@@ -5,12 +5,13 @@ require 'xcode/scheme'
5
5
 
6
6
  module Xcode
7
7
  class Project
8
- attr_reader :name, :targets, :sdk, :path, :schemes
8
+ attr_reader :name, :targets, :sdk, :path, :schemes, :groups
9
9
  def initialize(path, sdk=nil)
10
10
  @sdk = sdk || "iphoneos" # FIXME: should support OSX/simulator too
11
11
  @path = File.expand_path path
12
12
  @targets = []
13
13
  @schemes = []
14
+ @groups = []
14
15
  @name = File.basename(@path).gsub(/\.xcodeproj/,'')
15
16
 
16
17
  parse_pbxproj
@@ -18,6 +19,14 @@ module Xcode
18
19
  # parse_configurations
19
20
  end
20
21
 
22
+ def group(name)
23
+
24
+ end
25
+
26
+ def save
27
+ # Save modified groups/f
28
+ end
29
+
21
30
  def scheme(name)
22
31
  scheme = @schemes.select {|t| t.name == name.to_s}.first
23
32
  raise "No such scheme #{name}, available schemes are #{@schemes.map {|t| t.name}.join(', ')}" if scheme.nil?
data/lib/xcode/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Xcode
2
- VERSION = "0.0.11"
2
+ VERSION = "0.0.12"
3
3
  end
@@ -18,6 +18,7 @@
18
18
  7165D46F146B4EA100DE2F0E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7165D456146B4EA100DE2F0E /* Foundation.framework */; };
19
19
  7165D477146B4EA100DE2F0E /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 7165D475146B4EA100DE2F0E /* InfoPlist.strings */; };
20
20
  7165D47A146B4EA100DE2F0E /* TestProjectTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 7165D479146B4EA100DE2F0E /* TestProjectTests.m */; };
21
+ 7171EB6F1486E29E00AF2FE3 /* AnotherTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 7171EB6C1486DFE000AF2FE3 /* AnotherTest.m */; };
21
22
  /* End PBXBuildFile section */
22
23
 
23
24
  /* Begin PBXContainerItemProxy section */
@@ -47,6 +48,8 @@
47
48
  7165D476146B4EA100DE2F0E /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
48
49
  7165D478146B4EA100DE2F0E /* TestProjectTests.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TestProjectTests.h; sourceTree = "<group>"; };
49
50
  7165D479146B4EA100DE2F0E /* TestProjectTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TestProjectTests.m; sourceTree = "<group>"; };
51
+ 7171EB6B1486DFE000AF2FE3 /* AnotherTest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AnotherTest.h; sourceTree = "<group>"; };
52
+ 7171EB6C1486DFE000AF2FE3 /* AnotherTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AnotherTest.m; sourceTree = "<group>"; };
50
53
  /* End PBXFileReference section */
51
54
 
52
55
  /* Begin PBXFrameworksBuildPhase section */
@@ -130,6 +133,8 @@
130
133
  7165D478146B4EA100DE2F0E /* TestProjectTests.h */,
131
134
  7165D479146B4EA100DE2F0E /* TestProjectTests.m */,
132
135
  7165D473146B4EA100DE2F0E /* Supporting Files */,
136
+ 7171EB6B1486DFE000AF2FE3 /* AnotherTest.h */,
137
+ 7171EB6C1486DFE000AF2FE3 /* AnotherTest.m */,
133
138
  );
134
139
  path = TestProjectTests;
135
140
  sourceTree = "<group>";
@@ -258,6 +263,7 @@
258
263
  buildActionMask = 2147483647;
259
264
  files = (
260
265
  7165D47A146B4EA100DE2F0E /* TestProjectTests.m in Sources */,
266
+ 7171EB6F1486E29E00AF2FE3 /* AnotherTest.m in Sources */,
261
267
  );
262
268
  runOnlyForDeploymentPostprocessing = 0;
263
269
  };
@@ -411,6 +417,7 @@
411
417
  7165D47F146B4EA100DE2F0E /* Release */,
412
418
  );
413
419
  defaultConfigurationIsVisible = 0;
420
+ defaultConfigurationName = Release;
414
421
  };
415
422
  7165D480146B4EA100DE2F0E /* Build configuration list for PBXNativeTarget "TestProjectTests" */ = {
416
423
  isa = XCConfigurationList;
@@ -419,6 +426,7 @@
419
426
  7165D482146B4EA100DE2F0E /* Release */,
420
427
  );
421
428
  defaultConfigurationIsVisible = 0;
429
+ defaultConfigurationName = Release;
422
430
  };
423
431
  /* End XCConfigurationList section */
424
432
  };
@@ -0,0 +1,16 @@
1
+ //
2
+ // AnotherTest.h
3
+ // TestProject
4
+ //
5
+ // Created by Ray Hilton on 1/12/11.
6
+ // Copyright (c) 2011 __MyCompanyName__. All rights reserved.
7
+ //
8
+
9
+ // Logic unit tests contain unit test code that is designed to be linked into an independent test executable.
10
+ // See Also: http://developer.apple.com/iphone/library/documentation/Xcode/Conceptual/iphone_development/135-Unit_Testing_Applications/unit_testing_applications.html
11
+
12
+ #import <SenTestingKit/SenTestingKit.h>
13
+
14
+ @interface AnotherTest : SenTestCase
15
+
16
+ @end
@@ -0,0 +1,19 @@
1
+ //
2
+ // AnotherTest.m
3
+ // TestProject
4
+ //
5
+ // Created by Ray Hilton on 1/12/11.
6
+ // Copyright (c) 2011 __MyCompanyName__. All rights reserved.
7
+ //
8
+
9
+ #import "AnotherTest.h"
10
+
11
+ @implementation AnotherTest
12
+
13
+ // All code under test must be linked into the Unit Test bundle
14
+ - (void)testMath
15
+ {
16
+ STAssertTrue((1 + 1) == 2, @"Compiler isn't feeling well today :-(");
17
+ }
18
+
19
+ @end
@@ -24,9 +24,15 @@
24
24
  [super tearDown];
25
25
  }
26
26
 
27
- - (void)testExample
27
+ - (void)testNilShouldAlwaysBeNil
28
28
  {
29
- STFail(@"Unit tests are not implemented yet in TestProjectTests");
29
+ STAssertNil(nil, @"This should definitely be nil");
30
30
  }
31
31
 
32
+ - (void)testShouldFail
33
+ {
34
+ STAssertEquals(1+1, 3, @"Something is broken");
35
+ }
36
+
37
+
32
38
  @end
@@ -26,4 +26,10 @@ describe Xcode::Configuration do
26
26
  File.exists?(builder.dsym_zip_path).should==true
27
27
  File.exists?(builder.ipa_path).should==true
28
28
  end
29
+
30
+ # it "should run tests and fail" do
31
+ # builder = Xcode.project('TestProject').target('TestProjectTests').config('Debug').builder
32
+ # builder.clean
33
+ # builder.test
34
+ # end
29
35
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xcoder
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.11
4
+ version: 0.0.12
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,11 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2011-11-10 00:00:00.000000000Z
12
+ date: 2011-12-06 00:00:00.000000000Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: json
16
- requirement: &70114428289880 !ruby/object:Gem::Requirement
16
+ requirement: &70200469164180 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: '0'
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *70114428289880
24
+ version_requirements: *70200469164180
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: plist
27
- requirement: &70114428289460 !ruby/object:Gem::Requirement
27
+ requirement: &70200469163760 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ! '>='
@@ -32,10 +32,10 @@ dependencies:
32
32
  version: '0'
33
33
  type: :runtime
34
34
  prerelease: false
35
- version_requirements: *70114428289460
35
+ version_requirements: *70200469163760
36
36
  - !ruby/object:Gem::Dependency
37
37
  name: nokogiri
38
- requirement: &70114428289040 !ruby/object:Gem::Requirement
38
+ requirement: &70200469163340 !ruby/object:Gem::Requirement
39
39
  none: false
40
40
  requirements:
41
41
  - - ! '>='
@@ -43,7 +43,7 @@ dependencies:
43
43
  version: '0'
44
44
  type: :runtime
45
45
  prerelease: false
46
- version_requirements: *70114428289040
46
+ version_requirements: *70200469163340
47
47
  description: Provides a ruby based object-model for parsing project structures and
48
48
  invoking builds
49
49
  email:
@@ -78,34 +78,12 @@ files:
78
78
  - spec/TestProject/TestProject/TestProject-Prefix.pch
79
79
  - spec/TestProject/TestProject/en.lproj/InfoPlist.strings
80
80
  - spec/TestProject/TestProject/main.m
81
+ - spec/TestProject/TestProjectTests/AnotherTest.h
82
+ - spec/TestProject/TestProjectTests/AnotherTest.m
81
83
  - spec/TestProject/TestProjectTests/TestProjectTests-Info.plist
82
84
  - spec/TestProject/TestProjectTests/TestProjectTests.h
83
85
  - spec/TestProject/TestProjectTests/TestProjectTests.m
84
86
  - spec/TestProject/TestProjectTests/en.lproj/InfoPlist.strings
85
- - spec/TestProject/build/Debug-iphoneos/TestProject-Debug-1.0.dSYM.zip
86
- - spec/TestProject/build/Debug-iphoneos/TestProject-Debug-1.0.ipa
87
- - spec/TestProject/build/Debug-iphoneos/TestProject.app.dSYM/Contents/Info.plist
88
- - spec/TestProject/build/Debug-iphoneos/TestProject.app.dSYM/Contents/Resources/DWARF/TestProject
89
- - spec/TestProject/build/Debug-iphoneos/TestProject.app/Info.plist
90
- - spec/TestProject/build/Debug-iphoneos/TestProject.app/PkgInfo
91
- - spec/TestProject/build/Debug-iphoneos/TestProject.app/ResourceRules.plist
92
- - spec/TestProject/build/Debug-iphoneos/TestProject.app/TestProject
93
- - spec/TestProject/build/Debug-iphoneos/TestProject.app/_CodeSignature/CodeResources
94
- - spec/TestProject/build/Debug-iphoneos/TestProject.app/embedded.mobileprovision
95
- - spec/TestProject/build/Debug-iphoneos/TestProject.app/en.lproj/InfoPlist.strings
96
- - spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/Objects-normal/armv7/AppDelegate.d
97
- - spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/Objects-normal/armv7/AppDelegate.o
98
- - spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/Objects-normal/armv7/TestProject.LinkFileList
99
- - spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/Objects-normal/armv7/main.d
100
- - spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/Objects-normal/armv7/main.o
101
- - spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject-all-target-headers.hmap
102
- - spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject-generated-files.hmap
103
- - spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject-own-target-headers.hmap
104
- - spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject-project-headers.hmap
105
- - spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject.dep
106
- - spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject.hmap
107
- - spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject.xcent
108
- - spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/build-state.dat
109
87
  - spec/TestWorkspace.xcworkspace/contents.xcworkspacedata
110
88
  - spec/TestWorkspace.xcworkspace/xcuserdata/ray.xcuserdatad/UserInterfaceState.xcuserstate
111
89
  - spec/configuration_spec.rb
@@ -148,34 +126,12 @@ test_files:
148
126
  - spec/TestProject/TestProject/TestProject-Prefix.pch
149
127
  - spec/TestProject/TestProject/en.lproj/InfoPlist.strings
150
128
  - spec/TestProject/TestProject/main.m
129
+ - spec/TestProject/TestProjectTests/AnotherTest.h
130
+ - spec/TestProject/TestProjectTests/AnotherTest.m
151
131
  - spec/TestProject/TestProjectTests/TestProjectTests-Info.plist
152
132
  - spec/TestProject/TestProjectTests/TestProjectTests.h
153
133
  - spec/TestProject/TestProjectTests/TestProjectTests.m
154
134
  - spec/TestProject/TestProjectTests/en.lproj/InfoPlist.strings
155
- - spec/TestProject/build/Debug-iphoneos/TestProject-Debug-1.0.dSYM.zip
156
- - spec/TestProject/build/Debug-iphoneos/TestProject-Debug-1.0.ipa
157
- - spec/TestProject/build/Debug-iphoneos/TestProject.app.dSYM/Contents/Info.plist
158
- - spec/TestProject/build/Debug-iphoneos/TestProject.app.dSYM/Contents/Resources/DWARF/TestProject
159
- - spec/TestProject/build/Debug-iphoneos/TestProject.app/Info.plist
160
- - spec/TestProject/build/Debug-iphoneos/TestProject.app/PkgInfo
161
- - spec/TestProject/build/Debug-iphoneos/TestProject.app/ResourceRules.plist
162
- - spec/TestProject/build/Debug-iphoneos/TestProject.app/TestProject
163
- - spec/TestProject/build/Debug-iphoneos/TestProject.app/_CodeSignature/CodeResources
164
- - spec/TestProject/build/Debug-iphoneos/TestProject.app/embedded.mobileprovision
165
- - spec/TestProject/build/Debug-iphoneos/TestProject.app/en.lproj/InfoPlist.strings
166
- - spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/Objects-normal/armv7/AppDelegate.d
167
- - spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/Objects-normal/armv7/AppDelegate.o
168
- - spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/Objects-normal/armv7/TestProject.LinkFileList
169
- - spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/Objects-normal/armv7/main.d
170
- - spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/Objects-normal/armv7/main.o
171
- - spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject-all-target-headers.hmap
172
- - spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject-generated-files.hmap
173
- - spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject-own-target-headers.hmap
174
- - spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject-project-headers.hmap
175
- - spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject.dep
176
- - spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject.hmap
177
- - spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject.xcent
178
- - spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/build-state.dat
179
135
  - spec/TestWorkspace.xcworkspace/contents.xcworkspacedata
180
136
  - spec/TestWorkspace.xcworkspace/xcuserdata/ray.xcuserdatad/UserInterfaceState.xcuserstate
181
137
  - spec/configuration_spec.rb
@@ -1,20 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
- <plist version="1.0">
4
- <dict>
5
- <key>CFBundleDevelopmentRegion</key>
6
- <string>English</string>
7
- <key>CFBundleIdentifier</key>
8
- <string>com.apple.xcode.dsym.au.com.rayh.xcoder.TestProject</string>
9
- <key>CFBundleInfoDictionaryVersion</key>
10
- <string>6.0</string>
11
- <key>CFBundlePackageType</key>
12
- <string>dSYM</string>
13
- <key>CFBundleSignature</key>
14
- <string>????</string>
15
- <key>CFBundleShortVersionString</key>
16
- <string>1.0</string>
17
- <key>CFBundleVersion</key>
18
- <string>1.0</string>
19
- </dict>
20
- </plist>
@@ -1,25 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
- <plist version="1.0">
4
- <dict>
5
- <key>rules</key>
6
- <dict>
7
- <key>.*</key>
8
- <true/>
9
- <key>Info.plist</key>
10
- <dict>
11
- <key>omit</key>
12
- <true/>
13
- <key>weight</key>
14
- <real>10</real>
15
- </dict>
16
- <key>ResourceRules.plist</key>
17
- <dict>
18
- <key>omit</key>
19
- <true/>
20
- <key>weight</key>
21
- <real>100</real>
22
- </dict>
23
- </dict>
24
- </dict>
25
- </plist>
@@ -1,40 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
- <plist version="1.0">
4
- <dict>
5
- <key>files</key>
6
- <dict>
7
- <key>PkgInfo</key>
8
- <data>
9
- n57qDP4tZfLD1rCS43W0B4LQjzE=
10
- </data>
11
- <key>embedded.mobileprovision</key>
12
- <data>
13
- Ex8GJc83ST93UvucXr3DbD9/zxQ=
14
- </data>
15
- <key>en.lproj/InfoPlist.strings</key>
16
- <data>
17
- zmV6UqBSo6r1NOz798vd5O4zTBA=
18
- </data>
19
- </dict>
20
- <key>rules</key>
21
- <dict>
22
- <key>.*</key>
23
- <true/>
24
- <key>Info.plist</key>
25
- <dict>
26
- <key>omit</key>
27
- <true/>
28
- <key>weight</key>
29
- <real>10</real>
30
- </dict>
31
- <key>ResourceRules.plist</key>
32
- <dict>
33
- <key>omit</key>
34
- <true/>
35
- <key>weight</key>
36
- <real>100</real>
37
- </dict>
38
- </dict>
39
- </dict>
40
- </plist>
@@ -1,3 +0,0 @@
1
- dependencies: \
2
- /Users/ray/Projects/iOS\ Libraries/xcoder/spec/TestProject/TestProject/AppDelegate.m \
3
- /Users/ray/Projects/iOS\ Libraries/xcoder/spec/TestProject/TestProject/AppDelegate.h
@@ -1,2 +0,0 @@
1
- /Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/Objects-normal/armv7/main.o
2
- /Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/Objects-normal/armv7/AppDelegate.o
@@ -1,3 +0,0 @@
1
- dependencies: \
2
- /Users/ray/Projects/iOS\ Libraries/xcoder/spec/TestProject/TestProject/main.m \
3
- /Users/ray/Projects/iOS\ Libraries/xcoder/spec/TestProject/TestProject/AppDelegate.h
@@ -1,12 +0,0 @@
1
- ffffffffffffffffffffffffffffffff 83cdd660b1595506ae5e1a383ef84115 ffffffffffffffffffffffffffffffff 0 /Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject.xcent
2
- ffffffffffffffffffffffffffffffff cc79cb005e3519ae411da2465b68b8ce ffffffffffffffffffffffffffffffff 0 /Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app
3
- 00000000000000000000000000000000 35e21d9b903254ae34e7cbe1b858636b ffffffffffffffffffffffffffffffff 0 /Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app/embedded.mobileprovision
4
- 000000004ebb1721000000000000002d a7583bbaac76e452e0e4e5582c473a86 ffffffffffffffffffffffffffffffff 0 /Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app/en.lproj/InfoPlist.strings
5
- ffffffffffffffffffffffffffffffff eae9f5c10adde4b86be53564dddd9ff9 ffffffffffffffffffffffffffffffff 0 /Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app.dSYM
6
- ffffffffffffffffffffffffffffffff ffc9dfbe4bebcf6128367f7383bbea38 ffffffffffffffffffffffffffffffff 0 /Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app/TestProject
7
- ffffffffffffffffffffffffffffffff 36f62688bbded3cb6bd88ac91ff433d7 ffffffffffffffffffffffffffffffff 0 /Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/Objects-normal/armv7/AppDelegate.o
8
- ffffffffffffffffffffffffffffffff 58fac714cf9cb453c4e1c630d49f812b ffffffffffffffffffffffffffffffff 0 /Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/Objects-normal/armv7/main.o
9
- 00000000000000000000000000000000 c6f3077066dbd582db69a7cb738cad39 ffffffffffffffffffffffffffffffff 0 /var/folders/33/25zr4vf11qq20jjh3qw95gsh0000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/TestProject-Prefix-cwjntadhncrbubgjqchboqholgnq/TestProject-Prefix.pch.pth
10
- 00000000000000000000000000000000 f7ef5f74c941922b84a860c9fa8cb01d ffffffffffffffffffffffffffffffff 0 /Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app/ResourceRules.plist
11
- 00000000000000000000000000000000 2d3e937330362fa149510f7f737d10e3 ffffffffffffffffffffffffffffffff 0 /Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app/Info.plist
12
- 00000000000000000000000000000000 2d3e937330362fa149510f7f737d10e3 ffffffffffffffffffffffffffffffff 0 /Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app/PkgInfo
@@ -1,20 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
- <plist version="1.0">
4
- <dict>
5
- <key>application-identifier</key>
6
- <string>34J9H2WVY5.au.com.rayh.xcoder.TestProject</string>
7
- <key>com.apple.developer.ubiquity-container-identifiers</key>
8
- <array>
9
- <string>34J9H2WVY5.au.com.rayh.xcoder.TestProject</string>
10
- </array>
11
- <key>com.apple.developer.ubiquity-kvstore-identifier</key>
12
- <string>34J9H2WVY5.au.com.rayh.xcoder.TestProject</string>
13
- <key>get-task-allow</key>
14
- <true/>
15
- <key>keychain-access-groups</key>
16
- <array>
17
- <string>34J9H2WVY5.au.com.rayh.xcoder.TestProject</string>
18
- </array>
19
- </dict>
20
- </plist>
@@ -1,254 +0,0 @@
1
- TTestProject
2
- v4
3
- r1
4
- cCheck dependencies
5
- cCpResource /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk/ResourceRules.plist build/Debug-iphoneos/TestProject.app/ResourceRules.plist
6
- cProcessInfoPlistFile "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app/Info.plist" TestProject/TestProject-Info.plist
7
- cProcessPCH /var/folders/33/25zr4vf11qq20jjh3qw95gsh0000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/TestProject-Prefix-cwjntadhncrbubgjqchboqholgnq/TestProject-Prefix.pch.pth TestProject/TestProject-Prefix.pch normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler
8
- cCompileC build/TestProject.build/Debug-iphoneos/TestProject.build/Objects-normal/armv7/AppDelegate.o "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/TestProject/AppDelegate.m" normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler
9
- cCompileC build/TestProject.build/Debug-iphoneos/TestProject.build/Objects-normal/armv7/main.o "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/TestProject/main.m" normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler
10
- cLd "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app/TestProject" normal armv7
11
- cGenerateDSYMFile "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app.dSYM" "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app/TestProject"
12
- cCopyStringsFile "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app/en.lproj/InfoPlist.strings" TestProject/en.lproj/InfoPlist.strings
13
- cProcessProductPackaging "/Users/ray/Library/MobileDevice/Provisioning Profiles/023D3266-7376-4DD9-B33C-F7880BA290CE.mobileprovision" "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app/embedded.mobileprovision"
14
- cProcessProductPackaging "/Users/ray/Library/MobileDevice/Provisioning Profiles/023D3266-7376-4DD9-B33C-F7880BA290CE.mobileprovision" "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app/embedded.mobileprovision"
15
- cTouch "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app"
16
- cProcessProductPackaging /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk/Entitlements.plist "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject.xcent"
17
- cCodeSign "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app"
18
-
19
- N/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk
20
- c000000004E7840290000000000000110
21
- t1316503593
22
- s272
23
-
24
- N/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk/Entitlements.plist
25
- c000000004E5C595800000000000001A7
26
- t1314675032
27
- s423
28
-
29
- N/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk/ResourceRules.plist
30
- c000000004E5C595800000000000001E5
31
- t1314675032
32
- s485
33
-
34
- N/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk/System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
35
- c000000004E72F28700000000003AB0A0
36
- t1316156039
37
- s3846304
38
-
39
- N/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk/System/Library/Frameworks/Foundation.framework/Foundation
40
- c000000004E72F3440000000000529540
41
- t1316156228
42
- s5412160
43
-
44
- N/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk/System/Library/Frameworks/UIKit.framework/UIKit
45
- c000000004E7808C7000000000078BE50
46
- t1316489415
47
- s7913040
48
-
49
- N/Users/ray/Library/MobileDevice/Provisioning Profiles/023D3266-7376-4DD9-B33C-F7880BA290CE.mobileprovision
50
- c000000004EA8CD060000000000001FA6
51
- t1319685382
52
- s8102
53
-
54
- N/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/TestProject/AppDelegate.m
55
- c000000004EBB1721000000000000093F
56
- t1320884001
57
- s2367
58
-
59
- N/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/TestProject/TestProject-Prefix.pch
60
- c000000004EBB17210000000000000145
61
- t1320884001
62
- s325
63
-
64
- N/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/TestProject/en.lproj/InfoPlist.strings
65
- c000000004EBB1721000000000000002D
66
- t1320884001
67
- s45
68
-
69
- N/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/TestProject/main.m
70
- c000000004EBB1721000000000000015A
71
- t1320884001
72
- s346
73
-
74
- N/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app
75
- t2
76
- s0
77
-
78
- N/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app.dSYM
79
- t2
80
- s0
81
-
82
- N/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app/Info.plist
83
- t2
84
- s0
85
-
86
- N/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app/PkgInfo
87
- t2
88
- s0
89
-
90
- N/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app/ResourceRules.plist
91
- t2
92
- s0
93
-
94
- N/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app/TestProject
95
- t2
96
- s0
97
-
98
- N/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app/embedded.mobileprovision
99
- t2
100
- s0
101
-
102
- N/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app/en.lproj/InfoPlist.strings
103
- t2
104
- s0
105
-
106
- N/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/Objects-normal/armv7/AppDelegate.o
107
- t2
108
- s0
109
-
110
- N/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/Objects-normal/armv7/TestProject.LinkFileList
111
- c000000004EBB25840000000000000125
112
- t1320887684
113
- s293
114
-
115
- N/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/Objects-normal/armv7/main.o
116
- t2
117
- s0
118
-
119
- N/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject.xcent
120
- t2
121
- s0
122
-
123
- N/var/folders/33/25zr4vf11qq20jjh3qw95gsh0000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/TestProject-Prefix-cwjntadhncrbubgjqchboqholgnq/TestProject-Prefix.pch.pth
124
- t2
125
- s0
126
-
127
- NTestProject/TestProject-Info.plist
128
- c000000004EBB172100000000000005E1
129
- t1320884001
130
- s1505
131
-
132
- CCheck dependencies
133
- r0
134
- lSLF04#21%IDEActivityLogSection1@2#32"com.apple.dt.IDE.BuildLogSection18"Check dependenciesa7cda0045d6bb441^6a4bed045d6bb441^-247"[BWARN]Code Sign warning: code-signing identity 'iPhone Developer' matches multiple identities : 'iPhone Developer: Ray Hilton (F93L985ZD8)', 'iPhone Developer: Ray Hilton (4B2862EFWX)' -- 'iPhone Developer: Ray Hilton (F93L985ZD8)' will be used.
135
-
136
- CCodeSign "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app"
137
- s342580485.370794
138
- e342580485.546996
139
- r1
140
- xCodeSign
141
- x/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app
142
- lSLF04#21%IDEActivityLogSection1@2#32"com.apple.dt.IDE.BuildLogSection45"CodeSign build/Debug-iphoneos/TestProject.appc4065f055d6bb441^ff078c055d6bb441^---0#0#0#-19%DVTDocumentLocation2@113"file://localhost/Users/ray/Projects/iOS%20Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app/0000000000000000^1009"CodeSign build/Debug-iphoneos/TestProject.app
143
  cd "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject"
144
1
  setenv CODESIGN_ALLOCATE /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/codesign_allocate
145
2
  setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/Users/ray/.rvm/gems/ruby-1.9.2-p290@xcoder/bin:/Users/ray/.rvm/gems/ruby-1.9.2-p290@global/bin:/Users/ray/.rvm/rubies/ruby-1.9.2-p290/bin:/Users/ray/.rvm/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/usr/local/git/bin"
146
3
  /usr/bin/codesign --force --sign "iPhone Developer: Ray Hilton (F93L985ZD8)" "--resource-rules=/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app/ResourceRules.plist" --entitlements "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject.xcent" "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app"
147
-
148
- CCompileC build/TestProject.build/Debug-iphoneos/TestProject.build/Objects-normal/armv7/AppDelegate.o "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/TestProject/AppDelegate.m" normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler
149
- s342580485.180600
150
- e342580485.245723
151
- r1
152
- xCompileC
153
- xbuild/TestProject.build/Debug-iphoneos/TestProject.build/Objects-normal/armv7/AppDelegate.o
154
- x/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/TestProject/AppDelegate.m
155
- xnormal
156
- xarmv7
157
- xobjective-c
158
- xcom.apple.compilers.llvm.clang.1_0.compiler
159
- lSLF04#21%IDEActivityLogSection1@2#32"com.apple.dt.IDE.BuildLogSection91"Compile /Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/TestProject/AppDelegate.meb722e055d6bb441^71e73e055d6bb441^---0#0#0#-19%DVTDocumentLocation2@101"file://localhost/Users/ray/Projects/iOS%20Libraries/xcoder/spec/TestProject/TestProject/AppDelegate.m0000000000000000^3008"CompileC build/TestProject.build/Debug-iphoneos/TestProject.build/Objects-normal/armv7/AppDelegate.o TestProject/AppDelegate.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler
160
4
  cd "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject"
161
5
  setenv LANG en_US.US-ASCII
162
6
  setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/Users/ray/.rvm/gems/ruby-1.9.2-p290@xcoder/bin:/Users/ray/.rvm/gems/ruby-1.9.2-p290@global/bin:/Users/ray/.rvm/rubies/ruby-1.9.2-p290/bin:/Users/ray/.rvm/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/usr/local/git/bin"
163
7
  /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-print-source-range-info -fdiagnostics-show-category=id -fdiagnostics-parseable-fixits -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-prototypes -Wreturn-type -Wparentheses -Wswitch -Wno-unused-parameter -Wunused-variable -Wunused-value -Wno-shorten-64-to-32 -DDEBUG=1 -isysroot /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk -gdwarf-2 -Wno-sign-conversion -mthumb "-DIBOutlet=__attribute__((iboutlet))" "-DIBOutletCollection(ClassName)=__attribute__((iboutletcollection(ClassName)))" "-DIBAction=void)__attribute__((ibaction)" -miphoneos-version-min=5.0 -iquote "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject-generated-files.hmap" "-I/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject-own-target-headers.hmap" "-I/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject-all-target-headers.hmap" -iquote "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject-project-headers.hmap" "-I/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/include" "-I/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/DerivedSources/armv7" "-I/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/DerivedSources" "-F/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos" -include /var/folders/33/25zr4vf11qq20jjh3qw95gsh0000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/TestProject-Prefix-cwjntadhncrbubgjqchboqholgnq/TestProject-Prefix.pch -MMD -MT dependencies -MF "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/Objects-normal/armv7/AppDelegate.d" -c "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/TestProject/AppDelegate.m" -o "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/Objects-normal/armv7/AppDelegate.o"
164
-
165
- CCompileC build/TestProject.build/Debug-iphoneos/TestProject.build/Objects-normal/armv7/main.o "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/TestProject/main.m" normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler
166
- s342580485.180671
167
- e342580485.209618
168
- r1
169
- xCompileC
170
- xbuild/TestProject.build/Debug-iphoneos/TestProject.build/Objects-normal/armv7/main.o
171
- x/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/TestProject/main.m
172
- xnormal
173
- xarmv7
174
- xobjective-c
175
- xcom.apple.compilers.llvm.clang.1_0.compiler
176
- lSLF04#21%IDEActivityLogSection1@2#32"com.apple.dt.IDE.BuildLogSection84"Compile /Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/TestProject/main.mf86f2e055d6bb441^efa835055d6bb441^---0#0#0#-19%DVTDocumentLocation2@94"file://localhost/Users/ray/Projects/iOS%20Libraries/xcoder/spec/TestProject/TestProject/main.m0000000000000000^2973"CompileC build/TestProject.build/Debug-iphoneos/TestProject.build/Objects-normal/armv7/main.o TestProject/main.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler
177
8
  cd "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject"
178
9
  setenv LANG en_US.US-ASCII
179
10
  setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/Users/ray/.rvm/gems/ruby-1.9.2-p290@xcoder/bin:/Users/ray/.rvm/gems/ruby-1.9.2-p290@global/bin:/Users/ray/.rvm/rubies/ruby-1.9.2-p290/bin:/Users/ray/.rvm/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/usr/local/git/bin"
180
11
  /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/clang -x objective-c -arch armv7 -fmessage-length=0 -fdiagnostics-print-source-range-info -fdiagnostics-show-category=id -fdiagnostics-parseable-fixits -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-prototypes -Wreturn-type -Wparentheses -Wswitch -Wno-unused-parameter -Wunused-variable -Wunused-value -Wno-shorten-64-to-32 -DDEBUG=1 -isysroot /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk -gdwarf-2 -Wno-sign-conversion -mthumb "-DIBOutlet=__attribute__((iboutlet))" "-DIBOutletCollection(ClassName)=__attribute__((iboutletcollection(ClassName)))" "-DIBAction=void)__attribute__((ibaction)" -miphoneos-version-min=5.0 -iquote "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject-generated-files.hmap" "-I/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject-own-target-headers.hmap" "-I/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject-all-target-headers.hmap" -iquote "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject-project-headers.hmap" "-I/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/include" "-I/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/DerivedSources/armv7" "-I/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/DerivedSources" "-F/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos" -include /var/folders/33/25zr4vf11qq20jjh3qw95gsh0000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/TestProject-Prefix-cwjntadhncrbubgjqchboqholgnq/TestProject-Prefix.pch -MMD -MT dependencies -MF "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/Objects-normal/armv7/main.d" -c "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/TestProject/main.m" -o "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/Objects-normal/armv7/main.o"
181
-
182
- CCopyStringsFile "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app/en.lproj/InfoPlist.strings" TestProject/en.lproj/InfoPlist.strings
183
- s342580485.311524
184
- e342580485.314496
185
- r1
186
- xCopyStringsFile
187
- x/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app/en.lproj/InfoPlist.strings
188
- xTestProject/en.lproj/InfoPlist.strings
189
- lSLF04#21%IDEActivityLogSection1@2#32"com.apple.dt.IDE.BuildLogSection43"Copy TestProject/en.lproj/InfoPlist.stringsf9da4f055d6bb441^348350055d6bb441^---0#0#0#-19%DVTDocumentLocation2@114"file://localhost/Users/ray/Projects/iOS%20Libraries/xcoder/spec/TestProject/TestProject/en.lproj/InfoPlist.strings0000000000000000^754"CopyStringsFile build/Debug-iphoneos/TestProject.app/en.lproj/InfoPlist.strings TestProject/en.lproj/InfoPlist.strings
190
12
  cd "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject"
191
13
  setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/Users/ray/.rvm/gems/ruby-1.9.2-p290@xcoder/bin:/Users/ray/.rvm/gems/ruby-1.9.2-p290@global/bin:/Users/ray/.rvm/rubies/ruby-1.9.2-p290/bin:/Users/ray/.rvm/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/usr/local/git/bin"
192
14
  builtin-copyStrings --validate --inputencoding utf-8 --outputencoding binary --outdir "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app/en.lproj" -- TestProject/en.lproj/InfoPlist.strings
193
-
194
- CCpResource /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk/ResourceRules.plist build/Debug-iphoneos/TestProject.app/ResourceRules.plist
195
- s342580484.934666
196
- e342580484.939300
197
- r1
198
- xCpResource
199
- x/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk/ResourceRules.plist
200
- xbuild/Debug-iphoneos/TestProject.app/ResourceRules.plist
201
- lSLF04#21%IDEActivityLogSection1@2#32"com.apple.dt.IDE.BuildLogSection61"Copy build/Debug-iphoneos/TestProject.app/ResourceRules.plist0d72ef045d6bb441^6075f0045d6bb441^---0#0#0#-19%DVTDocumentLocation2@132"file://localhost/Users/ray/Projects/iOS%20Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app/ResourceRules.plist00f4d40addffdf42^854"CpResource /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk/ResourceRules.plist build/Debug-iphoneos/TestProject.app/ResourceRules.plist
202
15
  cd "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject"
203
16
  setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/Users/ray/.rvm/gems/ruby-1.9.2-p290@xcoder/bin:/Users/ray/.rvm/gems/ruby-1.9.2-p290@global/bin:/Users/ray/.rvm/rubies/ruby-1.9.2-p290/bin:/Users/ray/.rvm/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/usr/local/git/bin"
204
17
  builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk/ResourceRules.plist "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app"
205
-
206
- CGenerateDSYMFile "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app.dSYM" "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app/TestProject"
207
- s342580485.285968
208
- e342580485.302622
209
- r1
210
- xGenerateDSYMFile
211
- x/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app.dSYM
212
- x/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app/TestProject
213
- lSLF04#21%IDEActivityLogSection1@2#32"com.apple.dt.IDE.BuildLogSection110"Generating /Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app.dSYM7b4f49055d6bb441^0c784d055d6bb441^---0#0#0#-19%DVTDocumentLocation2@117"file://localhost/Users/ray/Projects/iOS%20Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app.dSYM00f4d40addffdf42^751"GenerateDSYMFile build/Debug-iphoneos/TestProject.app.dSYM build/Debug-iphoneos/TestProject.app/TestProject
214
18
  cd "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject"
215
19
  setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/Users/ray/.rvm/gems/ruby-1.9.2-p290@xcoder/bin:/Users/ray/.rvm/gems/ruby-1.9.2-p290@global/bin:/Users/ray/.rvm/rubies/ruby-1.9.2-p290/bin:/Users/ray/.rvm/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/usr/local/git/bin"
216
20
  /Developer/usr/bin/dsymutil "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app/TestProject" -o "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app.dSYM"
217
-
218
- CLd "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app/TestProject" normal armv7
219
- s342580485.252025
220
- e342580485.278549
221
- r1
222
- xLd
223
- x/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app/TestProject
224
- xnormal
225
- xarmv7
226
- lSLF04#21%IDEActivityLogSection1@2#32"com.apple.dt.IDE.BuildLogSection111"Link /Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app/TestProject4eb340055d6bb441^265147055d6bb441^---0#0#0#--1216"Ld build/Debug-iphoneos/TestProject.app/TestProject normal armv7
227
21
  cd "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject"
228
22
  setenv IPHONEOS_DEPLOYMENT_TARGET 5.0
229
23
  setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/Users/ray/.rvm/gems/ruby-1.9.2-p290@xcoder/bin:/Users/ray/.rvm/gems/ruby-1.9.2-p290@global/bin:/Users/ray/.rvm/rubies/ruby-1.9.2-p290/bin:/Users/ray/.rvm/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/usr/local/git/bin"
230
24
  /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/clang -arch armv7 -isysroot /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk "-L/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos" "-F/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos" -filelist "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/Objects-normal/armv7/TestProject.LinkFileList" -dead_strip -miphoneos-version-min=5.0 -framework UIKit -framework Foundation -framework CoreGraphics -o "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app/TestProject"
231
-
232
- CProcessInfoPlistFile "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app/Info.plist" TestProject/TestProject-Info.plist
233
- s342580484.934671
234
- e342580484.938897
235
- r1
236
- xProcessInfoPlistFile
237
- x/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app/Info.plist
238
- xTestProject/TestProject-Info.plist
239
- lSLF04#21%IDEActivityLogSection1@2#32"com.apple.dt.IDE.BuildLogSection42"Process TestProject/TestProject-Info.plisteb71ef045d6bb441^e25bf0045d6bb441^---0#0#0#-19%DVTDocumentLocation2@110"file://localhost/Users/ray/Projects/iOS%20Libraries/xcoder/spec/TestProject/TestProject/TestProject-Info.plist0000000000000000^984"ProcessInfoPlistFile build/Debug-iphoneos/TestProject.app/Info.plist TestProject/TestProject-Info.plist
240
25
  cd "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject"
241
26
  setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/Users/ray/.rvm/gems/ruby-1.9.2-p290@xcoder/bin:/Users/ray/.rvm/gems/ruby-1.9.2-p290@global/bin:/Users/ray/.rvm/rubies/ruby-1.9.2-p290/bin:/Users/ray/.rvm/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/usr/local/git/bin"
242
27
  builtin-infoPlistUtility TestProject/TestProject-Info.plist -genpkginfo "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app/PkgInfo" -expandbuildsettings -format binary -platform iphoneos -resourcerulesfile "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app/ResourceRules.plist" -o "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app/Info.plist"
243
-
244
- CProcessPCH /var/folders/33/25zr4vf11qq20jjh3qw95gsh0000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/TestProject-Prefix-cwjntadhncrbubgjqchboqholgnq/TestProject-Prefix.pch.pth TestProject/TestProject-Prefix.pch normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler
245
- s342580484.947195
246
- e342580485.163899
247
- r1
248
- xProcessPCH
249
- x/var/folders/33/25zr4vf11qq20jjh3qw95gsh0000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/TestProject-Prefix-cwjntadhncrbubgjqchboqholgnq/TestProject-Prefix.pch.pth
250
- xTestProject/TestProject-Prefix.pch
251
- xnormal
252
- xarmv7
253
- xobjective-c
254
- xcom.apple.compilers.llvm.clang.1_0.compiler
255
- lSLF04#21%IDEActivityLogSection1@2#32"com.apple.dt.IDE.BuildLogSection45"Precompile TestProject/TestProject-Prefix.pchc2a2f2045d6bb441^66112a055d6bb441^---0#0#0#-19%DVTDocumentLocation2@110"file://localhost/Users/ray/Projects/iOS%20Libraries/xcoder/spec/TestProject/TestProject/TestProject-Prefix.pch0000000000000000^2970"ProcessPCH /var/folders/33/25zr4vf11qq20jjh3qw95gsh0000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/TestProject-Prefix-cwjntadhncrbubgjqchboqholgnq/TestProject-Prefix.pch.pth TestProject/TestProject-Prefix.pch normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler
256
28
  cd "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject"
257
29
  setenv LANG en_US.US-ASCII
258
30
  setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/Users/ray/.rvm/gems/ruby-1.9.2-p290@xcoder/bin:/Users/ray/.rvm/gems/ruby-1.9.2-p290@global/bin:/Users/ray/.rvm/rubies/ruby-1.9.2-p290/bin:/Users/ray/.rvm/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/usr/local/git/bin"
259
31
  /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/clang -x objective-c-header -arch armv7 -fmessage-length=0 -fdiagnostics-print-source-range-info -fdiagnostics-show-category=id -fdiagnostics-parseable-fixits -std=gnu99 -Wno-trigraphs -fpascal-strings -O0 -Wmissing-prototypes -Wreturn-type -Wparentheses -Wswitch -Wno-unused-parameter -Wunused-variable -Wunused-value -Wno-shorten-64-to-32 -DDEBUG=1 -isysroot /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk -gdwarf-2 -Wno-sign-conversion -mthumb "-DIBOutlet=__attribute__((iboutlet))" "-DIBOutletCollection(ClassName)=__attribute__((iboutletcollection(ClassName)))" "-DIBAction=void)__attribute__((ibaction)" -miphoneos-version-min=5.0 -iquote "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject-generated-files.hmap" "-I/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject-own-target-headers.hmap" "-I/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject-all-target-headers.hmap" -iquote "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject-project-headers.hmap" "-I/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/include" "-I/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/DerivedSources/armv7" "-I/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/DerivedSources" "-F/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos" -c "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/TestProject/TestProject-Prefix.pch" -o /var/folders/33/25zr4vf11qq20jjh3qw95gsh0000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/TestProject-Prefix-cwjntadhncrbubgjqchboqholgnq/TestProject-Prefix.pch.pth -MMD -MT dependencies -MF /var/folders/33/25zr4vf11qq20jjh3qw95gsh0000gn/C/com.apple.Xcode.501/SharedPrecompiledHeaders/TestProject-Prefix-cwjntadhncrbubgjqchboqholgnq/TestProject-Prefix.pch.d
260
-
261
- CProcessProductPackaging "/Users/ray/Library/MobileDevice/Provisioning Profiles/023D3266-7376-4DD9-B33C-F7880BA290CE.mobileprovision" "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app/embedded.mobileprovision"
262
- s342580485.333829
263
- e342580485.337663
264
- r1
265
- xProcessProductPackaging
266
- x/Users/ray/Library/MobileDevice/Provisioning Profiles/023D3266-7376-4DD9-B33C-F7880BA290CE.mobileprovision
267
- x/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app/embedded.mobileprovision
268
- lSLF04#21%IDEActivityLogSection1@2#32"com.apple.dt.IDE.BuildLogSection194"ProcessProductPackaging "/Users/ray/Library/MobileDevice/Provisioning Profiles/023D3266-7376-4DD9-B33C-F7880BA290CE.mobileprovision" build/Debug-iphoneos/TestProject.app/embedded.mobileprovisionb48f55055d6bb441^157156055d6bb441^---0#0#0#-19%DVTDocumentLocation2@137"file://localhost/Users/ray/Projects/iOS%20Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app/embedded.mobileprovision0000000000000000^862"ProcessProductPackaging "/Users/ray/Library/MobileDevice/Provisioning Profiles/023D3266-7376-4DD9-B33C-F7880BA290CE.mobileprovision" build/Debug-iphoneos/TestProject.app/embedded.mobileprovision
269
32
  cd "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject"
270
33
  setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/Users/ray/.rvm/gems/ruby-1.9.2-p290@xcoder/bin:/Users/ray/.rvm/gems/ruby-1.9.2-p290@global/bin:/Users/ray/.rvm/rubies/ruby-1.9.2-p290/bin:/Users/ray/.rvm/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/usr/local/git/bin"
271
34
  builtin-productPackagingUtility "/Users/ray/Library/MobileDevice/Provisioning Profiles/023D3266-7376-4DD9-B33C-F7880BA290CE.mobileprovision" -o "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app/embedded.mobileprovision"
272
-
273
- CProcessProductPackaging /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk/Entitlements.plist "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject.xcent"
274
- s342580485.358287
275
- e342580485.362072
276
- r1
277
- xProcessProductPackaging
278
- x/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk/Entitlements.plist
279
- x/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject.xcent
280
- lSLF04#21%IDEActivityLogSection1@2#32"com.apple.dt.IDE.BuildLogSection187"ProcessProductPackaging /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk/Entitlements.plist build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject.xcent89d15b055d6bb441^5bb05c055d6bb441^---0#0#0#-19%DVTDocumentLocation2@150"file://localhost/Users/ray/Projects/iOS%20Libraries/xcoder/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject.xcent00f4d40addffdf42^874"ProcessProductPackaging /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk/Entitlements.plist build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject.xcent
281
35
  cd "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject"
282
36
  setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/Users/ray/.rvm/gems/ruby-1.9.2-p290@xcoder/bin:/Users/ray/.rvm/gems/ruby-1.9.2-p290@global/bin:/Users/ray/.rvm/rubies/ruby-1.9.2-p290/bin:/Users/ray/.rvm/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/usr/local/git/bin"
283
37
  builtin-productPackagingUtility /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk/Entitlements.plist -entitlements -format xml -o "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject.xcent"
284
-
285
- CTouch "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app"
286
- s342580485.345657
287
- e342580485.350645
288
- r1
289
- xTouch
290
- x/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app
291
- lSLF04#21%IDEActivityLogSection1@2#32"com.apple.dt.IDE.BuildLogSection100"Touch /Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app969758055d6bb441^0dc559055d6bb441^---0#0#0#--559"Touch build/Debug-iphoneos/TestProject.app
292
38
  cd "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject"
293
39
  setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/Users/ray/.rvm/gems/ruby-1.9.2-p290@xcoder/bin:/Users/ray/.rvm/gems/ruby-1.9.2-p290@global/bin:/Users/ray/.rvm/rubies/ruby-1.9.2-p290/bin:/Users/ray/.rvm/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/usr/local/git/bin"
294
40
  /usr/bin/touch -c "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app"
295
-