xcoder 0.0.10 → 0.0.11

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.
Files changed (54) hide show
  1. data/Gemfile +2 -1
  2. data/README.md +46 -5
  3. data/lib/xcode/builder.rb +21 -11
  4. data/lib/xcode/info_plist.rb +3 -3
  5. data/lib/xcode/project.rb +9 -2
  6. data/lib/xcode/scheme.rb +3 -0
  7. data/lib/xcode/version.rb +1 -1
  8. data/lib/xcode/workspace.rb +7 -0
  9. data/spec/TestProject/TestProject.xcodeproj/project.pbxproj +426 -0
  10. data/spec/TestProject/TestProject.xcodeproj/xcuserdata/ray.xcuserdatad/xcschemes/TestProject.xcscheme +94 -0
  11. data/spec/TestProject/TestProject.xcodeproj/xcuserdata/ray.xcuserdatad/xcschemes/xcschememanagement.plist +27 -0
  12. data/spec/TestProject/TestProject/AppDelegate.h +15 -0
  13. data/spec/TestProject/TestProject/AppDelegate.m +69 -0
  14. data/spec/TestProject/TestProject/TestProject-Info.plist +47 -0
  15. data/spec/TestProject/TestProject/TestProject-Prefix.pch +14 -0
  16. data/spec/TestProject/TestProject/en.lproj/InfoPlist.strings +2 -0
  17. data/spec/TestProject/TestProject/main.m +18 -0
  18. data/spec/TestProject/TestProjectTests/TestProjectTests-Info.plist +22 -0
  19. data/spec/TestProject/TestProjectTests/TestProjectTests.h +13 -0
  20. data/spec/TestProject/TestProjectTests/TestProjectTests.m +32 -0
  21. data/spec/TestProject/TestProjectTests/en.lproj/InfoPlist.strings +2 -0
  22. data/spec/TestProject/build/Debug-iphoneos/TestProject-Debug-1.0.dSYM.zip +0 -0
  23. data/spec/TestProject/build/Debug-iphoneos/TestProject-Debug-1.0.ipa +0 -0
  24. data/spec/TestProject/build/Debug-iphoneos/TestProject.app.dSYM/Contents/Info.plist +20 -0
  25. data/spec/TestProject/build/Debug-iphoneos/TestProject.app.dSYM/Contents/Resources/DWARF/TestProject +0 -0
  26. data/spec/TestProject/build/Debug-iphoneos/TestProject.app/Info.plist +0 -0
  27. data/spec/TestProject/build/Debug-iphoneos/TestProject.app/PkgInfo +1 -0
  28. data/spec/TestProject/build/Debug-iphoneos/TestProject.app/ResourceRules.plist +25 -0
  29. data/spec/TestProject/build/Debug-iphoneos/TestProject.app/TestProject +0 -0
  30. data/spec/TestProject/build/Debug-iphoneos/TestProject.app/_CodeSignature/CodeResources +40 -0
  31. data/spec/TestProject/build/Debug-iphoneos/TestProject.app/embedded.mobileprovision +0 -0
  32. data/spec/TestProject/build/Debug-iphoneos/TestProject.app/en.lproj/InfoPlist.strings +0 -0
  33. data/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/Objects-normal/armv7/AppDelegate.d +3 -0
  34. data/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/Objects-normal/armv7/AppDelegate.o +0 -0
  35. data/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/Objects-normal/armv7/TestProject.LinkFileList +2 -0
  36. data/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/Objects-normal/armv7/main.d +3 -0
  37. data/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/Objects-normal/armv7/main.o +0 -0
  38. data/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject-all-target-headers.hmap +0 -0
  39. data/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject-generated-files.hmap +0 -0
  40. data/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject-own-target-headers.hmap +0 -0
  41. data/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject-project-headers.hmap +0 -0
  42. data/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject.dep +12 -0
  43. data/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject.hmap +0 -0
  44. data/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/TestProject.xcent +20 -0
  45. data/spec/TestProject/build/TestProject.build/Debug-iphoneos/TestProject.build/build-state.dat +254 -0
  46. data/spec/TestWorkspace.xcworkspace/contents.xcworkspacedata +7 -0
  47. data/spec/TestWorkspace.xcworkspace/xcuserdata/ray.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  48. data/spec/configuration_spec.rb +29 -0
  49. data/spec/project_spec.rb +43 -0
  50. data/spec/scheme_spec.rb +29 -0
  51. data/spec/target_spec.rb +25 -0
  52. data/spec/workspace_spec.rb +33 -0
  53. data/xcoder.gemspec +1 -0
  54. metadata +96 -8
@@ -0,0 +1,3 @@
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
@@ -0,0 +1,2 @@
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
@@ -0,0 +1,3 @@
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
@@ -0,0 +1,12 @@
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
@@ -0,0 +1,20 @@
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>
@@ -0,0 +1,254 @@
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"
1
144
  setenv CODESIGN_ALLOCATE /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/codesign_allocate
2
145
  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"
3
146
  /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
4
160
  cd "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject"
5
161
  setenv LANG en_US.US-ASCII
6
162
  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"
7
163
  /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
8
177
  cd "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject"
9
178
  setenv LANG en_US.US-ASCII
10
179
  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"
11
180
  /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
12
190
  cd "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject"
13
191
  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"
14
192
  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
15
202
  cd "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject"
16
203
  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"
17
204
  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
18
214
  cd "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject"
19
215
  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"
20
216
  /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
21
227
  cd "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject"
22
228
  setenv IPHONEOS_DEPLOYMENT_TARGET 5.0
23
229
  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"
24
230
  /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
25
240
  cd "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject"
26
241
  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"
27
242
  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
28
256
  cd "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject"
29
257
  setenv LANG en_US.US-ASCII
30
258
  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"
31
259
  /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
32
269
  cd "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject"
33
270
  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"
34
271
  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
35
281
  cd "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject"
36
282
  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"
37
283
  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
38
292
  cd "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject"
39
293
  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"
40
294
  /usr/bin/touch -c "/Users/ray/Projects/iOS Libraries/xcoder/spec/TestProject/build/Debug-iphoneos/TestProject.app"
295
+
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Workspace
3
+ version = "1.0">
4
+ <FileRef
5
+ location = "group:TestProject/TestProject.xcodeproj">
6
+ </FileRef>
7
+ </Workspace>
@@ -0,0 +1,29 @@
1
+ require 'rspec'
2
+ require 'xcoder'
3
+
4
+ describe Xcode::Configuration do
5
+ before do
6
+ @config = Xcode.project('TestProject').target('TestProject').config('Debug')
7
+ end
8
+
9
+ it "should parse the name" do
10
+ @config.name.should=="Debug"
11
+ end
12
+
13
+ it "should be able to build" do
14
+ builder = @config.builder
15
+ builder.clean
16
+ builder.build
17
+ File.exists?(builder.app_path).should==true
18
+ File.exists?(builder.dsym_path).should==true
19
+ end
20
+
21
+ it "should be able to package" do
22
+ builder = @config.builder
23
+ builder.clean
24
+ builder.build
25
+ builder.package
26
+ File.exists?(builder.dsym_zip_path).should==true
27
+ File.exists?(builder.ipa_path).should==true
28
+ end
29
+ end
@@ -0,0 +1,43 @@
1
+ require 'rspec'
2
+ require 'xcoder'
3
+
4
+ describe Xcode::Project do
5
+ it "should enumerate all projects in current directory" do
6
+ projects = Xcode.projects
7
+ projects.size.should==1
8
+ projects.first.name.should=="TestProject"
9
+ end
10
+
11
+ it "should fetch project by name" do
12
+ p = Xcode.project 'TestProject'
13
+ p.should_not be_nil
14
+ end
15
+
16
+ it "should fetch project by name with extension and path" do
17
+ w = Xcode.project "#{File.dirname(__FILE__)}/TestProject/TestProject.xcodeproj"
18
+ w.should_not be_nil
19
+ end
20
+
21
+ it "should have many targets" do
22
+ p = Xcode.project "TestProject"
23
+ p.targets.size.should==2
24
+ p.targets[0].name.should=="TestProject"
25
+ p.targets[1].name.should=="TestProjectTests"
26
+ end
27
+
28
+ it "should get target by name" do
29
+ p = Xcode.project "TestProject"
30
+ p.target('TestProjectTests').should_not be_nil
31
+ end
32
+
33
+ it "should have many schemes" do
34
+ p = Xcode.project "TestProject"
35
+ p.schemes.size.should==1
36
+ p.schemes.first.name.should=="TestProject"
37
+ end
38
+
39
+ it "should get scheme by name" do
40
+ p = Xcode.project "TestProject"
41
+ p.scheme('TestProject').should_not be_nil
42
+ end
43
+ end