xcoder 0.1.2 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/lib/xcode/project.rb CHANGED
@@ -38,11 +38,26 @@ module Xcode
38
38
  # Parse the Xcode project file and create the registry
39
39
 
40
40
  @registry = parse_pbxproj
41
- @project = Xcode::Resource.new registry.root, @registry
41
+ @project = Xcode::Resource.new @registry.root, @registry
42
42
 
43
43
  @schemes = parse_schemes
44
44
  end
45
45
 
46
+
47
+ #
48
+ # @return [Fixnum] the project's object version
49
+ #
50
+ def object_version
51
+ @registry.object_version
52
+ end
53
+
54
+ #
55
+ # @return [Fixnum] the project's archive version
56
+ #
57
+ def archive_version
58
+ @registry.archive_version
59
+ end
60
+
46
61
  #
47
62
  # Returns the main group of the project where all the files reside.
48
63
  #
@@ -77,7 +92,9 @@ module Xcode
77
92
  #
78
93
  # @param [String] name the group name to find/create
79
94
  #
80
- def group(name,&block)
95
+ def group(name,options = {},&block)
96
+ # By default create missing groups along the way
97
+ options = { :create => true }.merge(options)
81
98
 
82
99
  current_group = @project.main_group
83
100
 
@@ -86,11 +103,17 @@ module Xcode
86
103
 
87
104
  name.split("/").each do |path_component|
88
105
  found_group = current_group.group(path_component).first
89
- found_group = current_group.create_group(path_component) unless found_group
106
+
107
+ if options[:create] and found_group.nil?
108
+ found_group = current_group.create_group(path_component)
109
+ end
110
+
90
111
  current_group = found_group
112
+
113
+ break unless current_group
91
114
  end
92
115
 
93
- current_group.instance_eval(&block) if block_given?
116
+ current_group.instance_eval(&block) if block_given? and current_group
94
117
 
95
118
  current_group
96
119
  end
@@ -113,7 +136,11 @@ module Xcode
113
136
  #
114
137
  # @return [Group] the 'Products' group of the project.
115
138
  def products_group
116
- groups.group('Products').first
139
+ current_group = groups.group('Products').first
140
+
141
+ current_group.instance_eval(&block) if block_given? and current_group
142
+
143
+ current_group
117
144
  end
118
145
 
119
146
  #
@@ -123,7 +150,11 @@ module Xcode
123
150
  #
124
151
  # @return [Group] the 'Frameworks' group of the projet.
125
152
  def frameworks_group
126
- groups.group('Frameworks').first
153
+ current_group = groups.group('Frameworks').first
154
+
155
+ current_group.instance_eval(&block) if block_given? and current_group
156
+
157
+ current_group
127
158
  end
128
159
 
129
160
  #
@@ -68,6 +68,20 @@ module Xcode
68
68
  def objects
69
69
  self['objects']
70
70
  end
71
+
72
+ #
73
+ # @return [Fixnum] the object version
74
+ #
75
+ def object_version
76
+ self['objectVersion'].to_i
77
+ end
78
+
79
+ #
80
+ # @return [Fixnum] the archive version
81
+ #
82
+ def archive_version
83
+ self['archiveVersion'].to_i
84
+ end
71
85
 
72
86
  #
73
87
  # Retrieve a Resource for the given identifier.
data/lib/xcode/target.rb CHANGED
@@ -116,22 +116,22 @@ module Xcode
116
116
  #
117
117
  # @return [BuildPhase] the framework specific build phase of the target.
118
118
  #
119
- def framework_build_phase
120
- build_phase 'PBXFrameworksBuildPhase'
119
+ def framework_build_phase(&block)
120
+ build_phase 'PBXFrameworksBuildPhase', &block
121
121
  end
122
122
 
123
123
  #
124
124
  # @return [BuildPhase] the sources specific build phase of the target.
125
125
  #
126
- def sources_build_phase
127
- build_phase 'PBXSourcesBuildPhase'
126
+ def sources_build_phase(&block)
127
+ build_phase 'PBXSourcesBuildPhase', &block
128
128
  end
129
129
 
130
130
  #
131
131
  # @return [BuildPhase] the resources specific build phase of the target.
132
132
  #
133
- def resources_build_phase
134
- build_phase 'PBXResourcesBuildPhase'
133
+ def resources_build_phase(&block)
134
+ build_phase 'PBXResourcesBuildPhase', &block
135
135
  end
136
136
 
137
137
  def build_phase(type,&block)
data/lib/xcode/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Xcode
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
3
3
  end
Binary file
@@ -1,802 +1,557 @@
1
- // !$*UTF8*$!"
1
+ // !$*UTF8*$!
2
2
  {
3
- "archiveVersion" = "1";
4
- "classes" = {
5
-
6
- };
7
- "objectVersion" = "46";
8
- "objects" = {
9
- "7165D445146B4EA100DE2F0E" = {
10
- "children" = (
11
- "7165D45A146B4EA100DE2F0E",
12
- "7165D472146B4EA100DE2F0E",
13
- "7165D453146B4EA100DE2F0E",
14
- "7165D451146B4EA100DE2F0E",
15
- "39DE9119D059DDAF344528F7",
16
- "08CA042925B6A23E9B5FD749"
17
- );
18
- "isa" = "PBXGroup";
19
- "sourceTree" = "<group>";
20
- };
21
- "7165D447146B4EA100DE2F0E" = {
22
- "attributes" = {
23
- "LastUpgradeCheck" = "0420";
24
- };
25
- "buildConfigurationList" = "7165D44A146B4EA100DE2F0E";
26
- "compatibilityVersion" = "Xcode 3.2";
27
- "developmentRegion" = "English";
28
- "hasScannedForEncodings" = "0";
29
- "isa" = "PBXProject";
30
- "knownRegions" = (
31
- "en"
32
- );
33
- "mainGroup" = "7165D445146B4EA100DE2F0E";
34
- "productRefGroup" = "7165D451146B4EA100DE2F0E";
35
- "projectDirPath" = "";
36
- "projectRoot" = "";
37
- "targets" = (
38
- "7165D44F146B4EA100DE2F0E",
39
- "7165D46A146B4EA100DE2F0E",
40
- "D111C141DDDD1009668E310E"
41
- );
42
- };
43
- "7165D44A146B4EA100DE2F0E" = {
44
- "buildConfigurations" = (
45
- "7165D47B146B4EA100DE2F0E",
46
- "7165D47C146B4EA100DE2F0E"
47
- );
48
- "defaultConfigurationIsVisible" = "0";
49
- "defaultConfigurationName" = "Release";
50
- "isa" = "XCConfigurationList";
51
- };
52
- "7165D44C146B4EA100DE2F0E" = {
53
- "buildActionMask" = "2147483647";
54
- "files" = (
55
- "7165D461146B4EA100DE2F0E",
56
- "7165D465146B4EA100DE2F0E"
57
- );
58
- "isa" = "PBXSourcesBuildPhase";
59
- "runOnlyForDeploymentPostprocessing" = "0";
60
- };
61
- "7165D44D146B4EA100DE2F0E" = {
62
- "buildActionMask" = "2147483647";
63
- "files" = (
64
- "7165D455146B4EA100DE2F0E",
65
- "7165D457146B4EA100DE2F0E",
66
- "7165D459146B4EA100DE2F0E"
67
- );
68
- "isa" = "PBXFrameworksBuildPhase";
69
- "runOnlyForDeploymentPostprocessing" = "0";
70
- };
71
- "7165D44E146B4EA100DE2F0E" = {
72
- "buildActionMask" = "2147483647";
73
- "files" = (
74
- "7165D45F146B4EA100DE2F0E"
75
- );
76
- "isa" = "PBXResourcesBuildPhase";
77
- "runOnlyForDeploymentPostprocessing" = "0";
78
- };
79
- "7165D44F146B4EA100DE2F0E" = {
80
- "buildConfigurationList" = "7165D47D146B4EA100DE2F0E";
81
- "buildPhases" = (
82
- "7165D44C146B4EA100DE2F0E",
83
- "7165D44D146B4EA100DE2F0E",
84
- "7165D44E146B4EA100DE2F0E"
85
- );
86
- "buildRules" = (
87
-
88
- );
89
- "dependencies" = (
90
-
91
- );
92
- "isa" = "PBXNativeTarget";
93
- "name" = "TestProject";
94
- "productName" = "TestProject";
95
- "productReference" = "7165D450146B4EA100DE2F0E";
96
- "productType" = "com.apple.product-type.application";
97
- };
98
- "7165D450146B4EA100DE2F0E" = {
99
- "explicitFileType" = "wrapper.application";
100
- "includeInIndex" = "0";
101
- "isa" = "PBXFileReference";
102
- "path" = "TestProject.app";
103
- "sourceTree" = "BUILT_PRODUCTS_DIR";
104
- };
105
- "7165D451146B4EA100DE2F0E" = {
106
- "children" = (
107
- "7165D450146B4EA100DE2F0E",
108
- "7165D46B146B4EA100DE2F0E",
109
- "630E8768C91375E025BDAB9D"
110
- );
111
- "isa" = "PBXGroup";
112
- "name" = "Products";
113
- "sourceTree" = "<group>";
114
- };
115
- "7165D453146B4EA100DE2F0E" = {
116
- "children" = (
117
- "7165D454146B4EA100DE2F0E",
118
- "7165D456146B4EA100DE2F0E",
119
- "7165D458146B4EA100DE2F0E",
120
- "7165D46C146B4EA100DE2F0E",
121
- "6C10ABBB52B3D1FA38AB47FF",
122
- "70F2C1C35C0D60D44412B5D5"
123
- );
124
- "isa" = "PBXGroup";
125
- "name" = "Frameworks";
126
- "sourceTree" = "<group>";
127
- };
128
- "7165D454146B4EA100DE2F0E" = {
129
- "isa" = "PBXFileReference";
130
- "lastKnownFileType" = "wrapper.framework";
131
- "name" = "UIKit.framework";
132
- "path" = "System/Library/Frameworks/UIKit.framework";
133
- "sourceTree" = "SDKROOT";
134
- };
135
- "7165D455146B4EA100DE2F0E" = {
136
- "fileRef" = "7165D454146B4EA100DE2F0E";
137
- "isa" = "PBXBuildFile";
138
- };
139
- "7165D456146B4EA100DE2F0E" = {
140
- "isa" = "PBXFileReference";
141
- "lastKnownFileType" = "wrapper.framework";
142
- "name" = "Foundation.framework";
143
- "path" = "System/Library/Frameworks/Foundation.framework";
144
- "sourceTree" = "SDKROOT";
145
- };
146
- "7165D457146B4EA100DE2F0E" = {
147
- "fileRef" = "7165D456146B4EA100DE2F0E";
148
- "isa" = "PBXBuildFile";
149
- };
150
- "7165D458146B4EA100DE2F0E" = {
151
- "isa" = "PBXFileReference";
152
- "lastKnownFileType" = "wrapper.framework";
153
- "name" = "CoreGraphics.framework";
154
- "path" = "System/Library/Frameworks/CoreGraphics.framework";
155
- "sourceTree" = "SDKROOT";
156
- };
157
- "7165D459146B4EA100DE2F0E" = {
158
- "fileRef" = "7165D458146B4EA100DE2F0E";
159
- "isa" = "PBXBuildFile";
160
- };
161
- "7165D45A146B4EA100DE2F0E" = {
162
- "children" = (
163
- "7165D463146B4EA100DE2F0E",
164
- "7165D464146B4EA100DE2F0E",
165
- "7165D45B146B4EA100DE2F0E"
166
- );
167
- "isa" = "PBXGroup";
168
- "path" = "TestProject";
169
- "sourceTree" = "<group>";
170
- };
171
- "7165D45B146B4EA100DE2F0E" = {
172
- "children" = (
173
- "7165D45C146B4EA100DE2F0E",
174
- "7165D45D146B4EA100DE2F0E",
175
- "7165D460146B4EA100DE2F0E",
176
- "7165D462146B4EA100DE2F0E"
177
- );
178
- "isa" = "PBXGroup";
179
- "name" = "Supporting Files";
180
- "sourceTree" = "<group>";
181
- };
182
- "7165D45C146B4EA100DE2F0E" = {
183
- "isa" = "PBXFileReference";
184
- "lastKnownFileType" = "text.plist.xml";
185
- "path" = "TestProject-Info.plist";
186
- "sourceTree" = "<group>";
187
- };
188
- "7165D45D146B4EA100DE2F0E" = {
189
- "children" = (
190
- "7165D45E146B4EA100DE2F0E"
191
- );
192
- "isa" = "PBXVariantGroup";
193
- "name" = "InfoPlist.strings";
194
- "sourceTree" = "<group>";
195
- };
196
- "7165D45E146B4EA100DE2F0E" = {
197
- "isa" = "PBXFileReference";
198
- "lastKnownFileType" = "text.plist.strings";
199
- "name" = "en";
200
- "path" = "en.lproj/InfoPlist.strings";
201
- "sourceTree" = "<group>";
202
- };
203
- "7165D45F146B4EA100DE2F0E" = {
204
- "fileRef" = "7165D45D146B4EA100DE2F0E";
205
- "isa" = "PBXBuildFile";
206
- };
207
- "7165D460146B4EA100DE2F0E" = {
208
- "isa" = "PBXFileReference";
209
- "lastKnownFileType" = "sourcecode.c.objc";
210
- "path" = "main.m";
211
- "sourceTree" = "<group>";
212
- };
213
- "7165D461146B4EA100DE2F0E" = {
214
- "fileRef" = "7165D460146B4EA100DE2F0E";
215
- "isa" = "PBXBuildFile";
216
- };
217
- "7165D462146B4EA100DE2F0E" = {
218
- "isa" = "PBXFileReference";
219
- "lastKnownFileType" = "sourcecode.c.h";
220
- "path" = "TestProject-Prefix.pch";
221
- "sourceTree" = "<group>";
222
- };
223
- "7165D463146B4EA100DE2F0E" = {
224
- "isa" = "PBXFileReference";
225
- "lastKnownFileType" = "sourcecode.c.h";
226
- "path" = "AppDelegate.h";
227
- "sourceTree" = "<group>";
228
- };
229
- "7165D464146B4EA100DE2F0E" = {
230
- "isa" = "PBXFileReference";
231
- "lastKnownFileType" = "sourcecode.c.objc";
232
- "path" = "AppDelegate.m";
233
- "sourceTree" = "<group>";
234
- };
235
- "7165D465146B4EA100DE2F0E" = {
236
- "fileRef" = "7165D464146B4EA100DE2F0E";
237
- "isa" = "PBXBuildFile";
238
- };
239
- "7165D466146B4EA100DE2F0E" = {
240
- "buildActionMask" = "2147483647";
241
- "files" = (
242
- "7165D47A146B4EA100DE2F0E",
243
- "7171EB6F1486E29E00AF2FE3"
244
- );
245
- "isa" = "PBXSourcesBuildPhase";
246
- "runOnlyForDeploymentPostprocessing" = "0";
247
- };
248
- "7165D467146B4EA100DE2F0E" = {
249
- "buildActionMask" = "2147483647";
250
- "files" = (
251
- "7165D46D146B4EA100DE2F0E",
252
- "7165D46E146B4EA100DE2F0E",
253
- "7165D46F146B4EA100DE2F0E"
254
- );
255
- "isa" = "PBXFrameworksBuildPhase";
256
- "runOnlyForDeploymentPostprocessing" = "0";
257
- };
258
- "7165D468146B4EA100DE2F0E" = {
259
- "buildActionMask" = "2147483647";
260
- "files" = (
261
- "7165D477146B4EA100DE2F0E"
262
- );
263
- "isa" = "PBXResourcesBuildPhase";
264
- "runOnlyForDeploymentPostprocessing" = "0";
265
- };
266
- "7165D469146B4EA100DE2F0E" = {
267
- "buildActionMask" = "2147483647";
268
- "files" = (
269
-
270
- );
271
- "inputPaths" = (
272
-
273
- );
274
- "isa" = "PBXShellScriptBuildPhase";
275
- "outputPaths" = (
276
-
277
- );
278
- "runOnlyForDeploymentPostprocessing" = "0";
279
- "shellPath" = "/bin/sh";
280
- "shellScript" = "# Run the unit tests in this test bundle.\n\"${SYSTEM_DEVELOPER_DIR}/Tools/RunUnitTests\"\n";
281
- };
282
- "7165D46A146B4EA100DE2F0E" = {
283
- "buildConfigurationList" = "7165D480146B4EA100DE2F0E";
284
- "buildPhases" = (
285
- "7165D466146B4EA100DE2F0E",
286
- "7165D467146B4EA100DE2F0E",
287
- "7165D468146B4EA100DE2F0E",
288
- "7165D469146B4EA100DE2F0E"
289
- );
290
- "buildRules" = (
291
-
292
- );
293
- "dependencies" = (
294
- "7165D471146B4EA100DE2F0E"
295
- );
296
- "isa" = "PBXNativeTarget";
297
- "name" = "TestProjectTests";
298
- "productName" = "TestProjectTests";
299
- "productReference" = "7165D46B146B4EA100DE2F0E";
300
- "productType" = "com.apple.product-type.bundle";
301
- };
302
- "7165D46B146B4EA100DE2F0E" = {
303
- "explicitFileType" = "wrapper.cfbundle";
304
- "includeInIndex" = "0";
305
- "isa" = "PBXFileReference";
306
- "path" = "TestProjectTests.octest";
307
- "sourceTree" = "BUILT_PRODUCTS_DIR";
308
- };
309
- "7165D46C146B4EA100DE2F0E" = {
310
- "isa" = "PBXFileReference";
311
- "lastKnownFileType" = "wrapper.framework";
312
- "name" = "SenTestingKit.framework";
313
- "path" = "Library/Frameworks/SenTestingKit.framework";
314
- "sourceTree" = "DEVELOPER_DIR";
315
- };
316
- "7165D46D146B4EA100DE2F0E" = {
317
- "fileRef" = "7165D46C146B4EA100DE2F0E";
318
- "isa" = "PBXBuildFile";
319
- };
320
- "7165D46E146B4EA100DE2F0E" = {
321
- "fileRef" = "7165D454146B4EA100DE2F0E";
322
- "isa" = "PBXBuildFile";
323
- };
324
- "7165D46F146B4EA100DE2F0E" = {
325
- "fileRef" = "7165D456146B4EA100DE2F0E";
326
- "isa" = "PBXBuildFile";
327
- };
328
- "7165D470146B4EA100DE2F0E" = {
329
- "containerPortal" = "7165D447146B4EA100DE2F0E";
330
- "isa" = "PBXContainerItemProxy";
331
- "proxyType" = "1";
332
- "remoteGlobalIDString" = "7165D44F146B4EA100DE2F0E";
333
- "remoteInfo" = "TestProject";
334
- };
335
- "7165D471146B4EA100DE2F0E" = {
336
- "isa" = "PBXTargetDependency";
337
- "target" = "7165D44F146B4EA100DE2F0E";
338
- "targetProxy" = "7165D470146B4EA100DE2F0E";
339
- };
340
- "7165D472146B4EA100DE2F0E" = {
341
- "children" = (
342
- "7165D478146B4EA100DE2F0E",
343
- "7165D479146B4EA100DE2F0E",
344
- "7165D473146B4EA100DE2F0E",
345
- "7171EB6B1486DFE000AF2FE3",
346
- "7171EB6C1486DFE000AF2FE3"
347
- );
348
- "isa" = "PBXGroup";
349
- "path" = "TestProjectTests";
350
- "sourceTree" = "<group>";
351
- };
352
- "7165D473146B4EA100DE2F0E" = {
353
- "children" = (
354
- "7165D474146B4EA100DE2F0E",
355
- "7165D475146B4EA100DE2F0E"
356
- );
357
- "isa" = "PBXGroup";
358
- "name" = "Supporting Files";
359
- "sourceTree" = "<group>";
360
- };
361
- "7165D474146B4EA100DE2F0E" = {
362
- "isa" = "PBXFileReference";
363
- "lastKnownFileType" = "text.plist.xml";
364
- "path" = "TestProjectTests-Info.plist";
365
- "sourceTree" = "<group>";
366
- };
367
- "7165D475146B4EA100DE2F0E" = {
368
- "children" = (
369
- "7165D476146B4EA100DE2F0E"
370
- );
371
- "isa" = "PBXVariantGroup";
372
- "name" = "InfoPlist.strings";
373
- "sourceTree" = "<group>";
374
- };
375
- "7165D476146B4EA100DE2F0E" = {
376
- "isa" = "PBXFileReference";
377
- "lastKnownFileType" = "text.plist.strings";
378
- "name" = "en";
379
- "path" = "en.lproj/InfoPlist.strings";
380
- "sourceTree" = "<group>";
381
- };
382
- "7165D477146B4EA100DE2F0E" = {
383
- "fileRef" = "7165D475146B4EA100DE2F0E";
384
- "isa" = "PBXBuildFile";
385
- };
386
- "7165D478146B4EA100DE2F0E" = {
387
- "isa" = "PBXFileReference";
388
- "lastKnownFileType" = "sourcecode.c.h";
389
- "path" = "TestProjectTests.h";
390
- "sourceTree" = "<group>";
391
- };
392
- "7165D479146B4EA100DE2F0E" = {
393
- "isa" = "PBXFileReference";
394
- "lastKnownFileType" = "sourcecode.c.objc";
395
- "path" = "TestProjectTests.m";
396
- "sourceTree" = "<group>";
397
- };
398
- "7165D47A146B4EA100DE2F0E" = {
399
- "fileRef" = "7165D479146B4EA100DE2F0E";
400
- "isa" = "PBXBuildFile";
401
- };
402
- "7165D47B146B4EA100DE2F0E" = {
403
- "buildSettings" = {
404
- "ALWAYS_SEARCH_USER_PATHS" = "NO";
405
- "ARCHS" = "$(ARCHS_STANDARD_32_BIT)";
406
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
407
- "COPY_PHASE_STRIP" = "NO";
408
- "GCC_C_LANGUAGE_STANDARD" = "gnu99";
409
- "GCC_DYNAMIC_NO_PIC" = "NO";
410
- "GCC_OPTIMIZATION_LEVEL" = "0";
411
- "GCC_PREPROCESSOR_DEFINITIONS" = (
412
- "DEBUG=1",
413
- "$(inherited)"
414
- );
415
- "GCC_SYMBOLS_PRIVATE_EXTERN" = "NO";
416
- "GCC_VERSION" = "com.apple.compilers.llvm.clang.1_0";
417
- "GCC_WARN_ABOUT_MISSING_PROTOTYPES" = "YES";
418
- "GCC_WARN_ABOUT_RETURN_TYPE" = "YES";
419
- "GCC_WARN_UNUSED_VARIABLE" = "YES";
420
- "IPHONEOS_DEPLOYMENT_TARGET" = "5.0";
421
- "SDKROOT" = "iphoneos";
422
- "TARGETED_DEVICE_FAMILY" = "1,2";
423
- };
424
- "isa" = "XCBuildConfiguration";
425
- "name" = "Debug";
426
- };
427
- "7165D47C146B4EA100DE2F0E" = {
428
- "buildSettings" = {
429
- "ALWAYS_SEARCH_USER_PATHS" = "NO";
430
- "ARCHS" = "$(ARCHS_STANDARD_32_BIT)";
431
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
432
- "COPY_PHASE_STRIP" = "YES";
433
- "GCC_C_LANGUAGE_STANDARD" = "gnu99";
434
- "GCC_VERSION" = "com.apple.compilers.llvm.clang.1_0";
435
- "GCC_WARN_ABOUT_MISSING_PROTOTYPES" = "YES";
436
- "GCC_WARN_ABOUT_RETURN_TYPE" = "YES";
437
- "GCC_WARN_UNUSED_VARIABLE" = "YES";
438
- "IPHONEOS_DEPLOYMENT_TARGET" = "5.0";
439
- "OTHER_CFLAGS" = "-DNS_BLOCK_ASSERTIONS=1";
440
- "SDKROOT" = "iphoneos";
441
- "TARGETED_DEVICE_FAMILY" = "1,2";
442
- "VALIDATE_PRODUCT" = "YES";
443
- };
444
- "isa" = "XCBuildConfiguration";
445
- "name" = "Release";
446
- };
447
- "7165D47D146B4EA100DE2F0E" = {
448
- "buildConfigurations" = (
449
- "7165D47E146B4EA100DE2F0E",
450
- "7165D47F146B4EA100DE2F0E"
451
- );
452
- "defaultConfigurationIsVisible" = "0";
453
- "defaultConfigurationName" = "Release";
454
- "isa" = "XCConfigurationList";
455
- };
456
- "7165D47E146B4EA100DE2F0E" = {
457
- "buildSettings" = {
458
- "GCC_PRECOMPILE_PREFIX_HEADER" = "YES";
459
- "GCC_PREFIX_HEADER" = "TestProject/TestProject-Prefix.pch";
460
- "INFOPLIST_FILE" = "TestProject/TestProject-Info.plist";
461
- "PRODUCT_NAME" = "$(TARGET_NAME)";
462
- "WRAPPER_EXTENSION" = "app";
463
- };
464
- "isa" = "XCBuildConfiguration";
465
- "name" = "Debug";
466
- };
467
- "7165D47F146B4EA100DE2F0E" = {
468
- "buildSettings" = {
469
- "GCC_PRECOMPILE_PREFIX_HEADER" = "YES";
470
- "GCC_PREFIX_HEADER" = "TestProject/TestProject-Prefix.pch";
471
- "INFOPLIST_FILE" = "TestProject/TestProject-Info.plist";
472
- "PRODUCT_NAME" = "$(TARGET_NAME)";
473
- "WRAPPER_EXTENSION" = "app";
474
- };
475
- "isa" = "XCBuildConfiguration";
476
- "name" = "Release";
477
- };
478
- "7165D480146B4EA100DE2F0E" = {
479
- "buildConfigurations" = (
480
- "7165D481146B4EA100DE2F0E",
481
- "7165D482146B4EA100DE2F0E"
482
- );
483
- "defaultConfigurationIsVisible" = "0";
484
- "defaultConfigurationName" = "Release";
485
- "isa" = "XCConfigurationList";
486
- };
487
- "7165D481146B4EA100DE2F0E" = {
488
- "buildSettings" = {
489
- "BUNDLE_LOADER" = "$(BUILT_PRODUCTS_DIR)/TestProject.app/TestProject";
490
- "FRAMEWORK_SEARCH_PATHS" = (
491
- "$(SDKROOT)/Developer/Library/Frameworks",
492
- "$(DEVELOPER_LIBRARY_DIR)/Frameworks"
493
- );
494
- "GCC_PRECOMPILE_PREFIX_HEADER" = "YES";
495
- "GCC_PREFIX_HEADER" = "TestProject/TestProject-Prefix.pch";
496
- "INFOPLIST_FILE" = "TestProjectTests/TestProjectTests-Info.plist";
497
- "PRODUCT_NAME" = "$(TARGET_NAME)";
498
- "TEST_HOST" = "$(BUNDLE_LOADER)";
499
- "WRAPPER_EXTENSION" = "octest";
500
- };
501
- "isa" = "XCBuildConfiguration";
502
- "name" = "Debug";
503
- };
504
- "7165D482146B4EA100DE2F0E" = {
505
- "buildSettings" = {
506
- "BUNDLE_LOADER" = "$(BUILT_PRODUCTS_DIR)/TestProject.app/TestProject";
507
- "FRAMEWORK_SEARCH_PATHS" = (
508
- "$(SDKROOT)/Developer/Library/Frameworks",
509
- "$(DEVELOPER_LIBRARY_DIR)/Frameworks"
510
- );
511
- "GCC_PRECOMPILE_PREFIX_HEADER" = "YES";
512
- "GCC_PREFIX_HEADER" = "TestProject/TestProject-Prefix.pch";
513
- "INFOPLIST_FILE" = "TestProjectTests/TestProjectTests-Info.plist";
514
- "PRODUCT_NAME" = "$(TARGET_NAME)";
515
- "TEST_HOST" = "$(BUNDLE_LOADER)";
516
- "WRAPPER_EXTENSION" = "octest";
517
- };
518
- "isa" = "XCBuildConfiguration";
519
- "name" = "Release";
520
- };
521
- "7171EB6B1486DFE000AF2FE3" = {
522
- "fileEncoding" = "4";
523
- "isa" = "PBXFileReference";
524
- "lastKnownFileType" = "sourcecode.c.h";
525
- "path" = "AnotherTest.h";
526
- "sourceTree" = "<group>";
527
- };
528
- "7171EB6C1486DFE000AF2FE3" = {
529
- "fileEncoding" = "4";
530
- "isa" = "PBXFileReference";
531
- "lastKnownFileType" = "sourcecode.c.objc";
532
- "path" = "AnotherTest.m";
533
- "sourceTree" = "<group>";
534
- };
535
- "7171EB6F1486E29E00AF2FE3" = {
536
- "fileRef" = "7171EB6C1486DFE000AF2FE3";
537
- "isa" = "PBXBuildFile";
538
- };
539
- "D111C141DDDD1009668E310E" = {
540
- "isa" = "PBXNativeTarget";
541
- "buildConfigurationList" = "C93D39FEB82CC9442CE94908";
542
- "buildPhases" = (
543
- "DDF08A769D3B5B518C166AC6",
544
- "57F7ADA229AE63B1ADB8DA79",
545
- "FEE9A62A759B1FFE1A905731"
546
- );
547
- "buildRules" = (
548
-
549
- );
550
- "dependencies" = (
551
-
552
- );
553
- "name" = "Specs";
554
- "productName" = "Specs";
555
- "productReference" = "";
556
- "productType" = "com.apple.product-type.application";
557
- };
558
- "C93D39FEB82CC9442CE94908" = {
559
- "isa" = "XCConfigurationList";
560
- "buildConfigurations" = (
561
- "9DD0F856744EE2F634D435BF",
562
- "F3367A702467F6782D255B43"
563
- );
564
- "defaultConfigurationIsVisible" = "0";
565
- "defaultConfigurationName" = "";
566
- };
567
- "630E8768C91375E025BDAB9D" = {
568
- "isa" = "PBXFileReference";
569
- "explicitFileType" = "wrapper.application";
570
- "includeInIndex" = 0;
571
- "path" = "Specs.app";
572
- "sourceTree" = "BUILT_PRODUCTS_DIR";
573
- };
574
- "39DE9119D059DDAF344528F7" = {
575
- "isa" = "PBXGroup";
576
- "name" = "Specs";
577
- "sourceTree" = "<group>";
578
- "children" = (
579
- "432A2F50EC036E94978893A8"
580
- );
581
- };
582
- "432A2F50EC036E94978893A8" = {
583
- "isa" = "PBXGroup";
584
- "name" = "Supporting Files";
585
- "sourceTree" = "<group>";
586
- "children" = (
587
- "9A37F09082AA2F5581292B87",
588
- "3665D8B8D6C1E1BABC2E47C7",
589
- "1E241EF6D65011772619D39A",
590
- "174491DC1D841F9ACD7EBE31"
591
- );
592
- };
593
- "9A37F09082AA2F5581292B87" = {
594
- "isa" = "PBXFileReference";
595
- "path" = "Specs/main.m";
596
- "sourceTree" = "<group>";
597
- "name" = "main.m";
598
- };
599
- "DDF08A769D3B5B518C166AC6" = {
600
- "isa" = "PBXSourcesBuildPhase";
601
- "buildActionMask" = "2147483647";
602
- "files" = (
603
- "5E29EA438DC1B76305639557"
604
- );
605
- "runOnlyForDeploymentPostprocessing" = "0";
606
- };
607
- "5E29EA438DC1B76305639557" = {
608
- "isa" = "PBXBuildFile";
609
- "fileRef" = "9A37F09082AA2F5581292B87";
610
- };
611
- "3665D8B8D6C1E1BABC2E47C7" = {
612
- "isa" = "PBXFileReference";
613
- "path" = "Specs/Specs-Info.plist";
614
- "sourceTree" = "<group>";
615
- "name" = "Specs-Info.plist";
616
- };
617
- "1E241EF6D65011772619D39A" = {
618
- "isa" = "PBXVariantGroup";
619
- "children" = (
620
- "D6D233A8CBDA7B3F0FB96015"
621
- );
622
- "name" = "InfoPlist.strings";
623
- "sourceTree" = "<group>";
624
- "path" = "Specs";
625
- };
626
- "D6D233A8CBDA7B3F0FB96015" = {
627
- "isa" = "PBXFileReference";
628
- "path" = "en.lproj/InfoPlist.strings";
629
- "sourceTree" = "<group>";
630
- "name" = "en";
631
- };
632
- "57F7ADA229AE63B1ADB8DA79" = {
633
- "isa" = "PBXResourcesBuildPhase";
634
- "buildActionMask" = "2147483647";
635
- "files" = (
636
- "94F2CEAB92BA1079E896EF2E"
637
- );
638
- "runOnlyForDeploymentPostprocessing" = "0";
639
- };
640
- "94F2CEAB92BA1079E896EF2E" = {
641
- "isa" = "PBXBuildFile";
642
- "fileRef" = "1E241EF6D65011772619D39A";
643
- };
644
- "174491DC1D841F9ACD7EBE31" = {
645
- "isa" = "PBXFileReference";
646
- "path" = "Specs/Specs-Prefix.pch";
647
- "sourceTree" = "<group>";
648
- "name" = "Specs-Prefix.pch";
649
- };
650
- "6C10ABBB52B3D1FA38AB47FF" = {
651
- "isa" = "PBXFileReference";
652
- "lastKnownFileType" = "wrapper.framework";
653
- "name" = "Cedar-iPhone.framework";
654
- "path" = "Vendor/Frameworks/Cedar-iPhone.framework";
655
- "sourceTree" = "<group>";
656
- };
657
- "FEE9A62A759B1FFE1A905731" = {
658
- "isa" = "PBXFrameworksBuildPhase";
659
- "buildActionMask" = "2147483647";
660
- "files" = (
661
- "6193083E0AAF7C886D587F0A",
662
- "2574D65B0D2FFDB5D0372B4A",
663
- "FD70EF95A64C6CF15FFAA614",
664
- "28C60920A77AB174A952864D"
665
- );
666
- "runOnlyForDeploymentPostprocessing" = "0";
667
- };
668
- "6193083E0AAF7C886D587F0A" = {
669
- "isa" = "PBXBuildFile";
670
- "fileRef" = "6C10ABBB52B3D1FA38AB47FF";
671
- };
672
- "2574D65B0D2FFDB5D0372B4A" = {
673
- "isa" = "PBXBuildFile";
674
- "fileRef" = "7165D454146B4EA100DE2F0E";
675
- };
676
- "FD70EF95A64C6CF15FFAA614" = {
677
- "isa" = "PBXBuildFile";
678
- "fileRef" = "7165D456146B4EA100DE2F0E";
679
- };
680
- "28C60920A77AB174A952864D" = {
681
- "isa" = "PBXBuildFile";
682
- "fileRef" = "7165D458146B4EA100DE2F0E";
683
- };
684
- "9DD0F856744EE2F634D435BF" = {
685
- "isa" = "XCBuildConfiguration";
686
- "buildSettings" = {
687
- "SDKROOT" = "iphoneos";
688
- "OTHER_CFLAGS" = "-DNS_BLOCK_ASSERTIONS=1";
689
- "TARGETED_DEVICE_FAMILY" = "1,2";
690
- "GCC_C_LANGUAGE_STANDARD" = "gnu99";
691
- "ALWAYS_SEARCH_USER_PATHS" = "NO";
692
- "GCC_VERSION" = "com.apple.compilers.llvm.clang.1_0";
693
- "ARCHS" = "$(ARCHS_STANDARD_32_BIT)";
694
- "GCC_WARN_ABOUT_MISSING_PROTOTYPES" = "YES";
695
- "GCC_WARN_ABOUT_RETURN_TYPE" = "YES";
696
- "CODE_SIGN_IDENTITY[sdk=>iphoneos*]" = "iPhone Developer";
697
- "GCC_PRECOMPILE_PREFIX_HEADER" = "YES";
698
- "VALIDATE_PRODUCT" = "YES";
699
- "IPHONEOS_DEPLOYMENT_TARGET" = "5.0";
700
- "COPY_PHASE_STRIP" = "YES";
701
- "GCC_PREFIX_HEADER" = "Specs/Specs-Prefix.pch";
702
- "INFOPLIST_FILE" = "Specs/Specs-Info.plist";
703
- "PRODUCT_NAME" = "$(TARGET_NAME)";
704
- "WRAPPER_EXTENSION" = "app";
705
- "OTHER_LDFLAGS" = "-ObjC -all_load -lstdc++";
706
- "FRAMEWORK_SEARCH_PATHS" = (
707
- "$(inherited)",
708
- "\"$(SRCROOT)/Vendor/Frameworks\""
709
- );
710
- };
711
- "name" = "Debug";
712
- };
713
- "F3367A702467F6782D255B43" = {
714
- "isa" = "XCBuildConfiguration";
715
- "buildSettings" = {
716
- "SDKROOT" = "iphoneos";
717
- "OTHER_CFLAGS" = "-DNS_BLOCK_ASSERTIONS=1";
718
- "TARGETED_DEVICE_FAMILY" = "1,2";
719
- "GCC_C_LANGUAGE_STANDARD" = "gnu99";
720
- "ALWAYS_SEARCH_USER_PATHS" = "NO";
721
- "GCC_VERSION" = "com.apple.compilers.llvm.clang.1_0";
722
- "ARCHS" = "$(ARCHS_STANDARD_32_BIT)";
723
- "GCC_WARN_ABOUT_MISSING_PROTOTYPES" = "YES";
724
- "GCC_WARN_ABOUT_RETURN_TYPE" = "YES";
725
- "CODE_SIGN_IDENTITY[sdk=>iphoneos*]" = "iPhone Developer";
726
- "GCC_PRECOMPILE_PREFIX_HEADER" = "YES";
727
- "VALIDATE_PRODUCT" = "YES";
728
- "IPHONEOS_DEPLOYMENT_TARGET" = "5.0";
729
- "COPY_PHASE_STRIP" = "YES";
730
- "GCC_PREFIX_HEADER" = "Specs/Specs-Prefix.pch";
731
- "INFOPLIST_FILE" = "Specs/Specs-Info.plist";
732
- "PRODUCT_NAME" = "$(TARGET_NAME)";
733
- "WRAPPER_EXTENSION" = "app";
734
- "OTHER_LDFLAGS" = "-ObjC -all_load -lstdc++";
735
- "FRAMEWORK_SEARCH_PATHS" = (
736
- "$(inherited)",
737
- "\"$(SRCROOT)/Vendor/Frameworks\""
738
- );
739
- };
740
- "name" = "Release";
741
- };
742
- "08CA042925B6A23E9B5FD749" = {
743
- "isa" = "PBXGroup";
744
- "name" = "Vendor";
745
- "sourceTree" = "<group>";
746
- "children" = (
747
- "E957185DA6E62BCB773E3215",
748
- "210C3E62109555E5E0EECC60"
749
- );
750
- };
751
- "E957185DA6E62BCB773E3215" = {
752
- "isa" = "PBXGroup";
753
- "name" = "EGORefreshTableHeaderView";
754
- "sourceTree" = "<group>";
755
- "children" = (
756
- "17CD25DE175DD3BEB5EEF9E0",
757
- "5528989C051C6A467D2F3062"
758
- );
759
- };
760
- "17CD25DE175DD3BEB5EEF9E0" = {
761
- "isa" = "PBXFileReference";
762
- "path" = "Vendor/EGORefreshTableHeaderView/EGORefreshTableHeaderView.m";
763
- "sourceTree" = "<group>";
764
- "name" = "EGORefreshTableHeaderView.m";
765
- };
766
- "5528989C051C6A467D2F3062" = {
767
- "isa" = "PBXFileReference";
768
- "path" = "Vendor/EGORefreshTableHeaderView/EGORefreshTableHeaderView.h";
769
- "sourceTree" = "<group>";
770
- "name" = "EGORefreshTableHeaderView.h";
771
- };
772
- "210C3E62109555E5E0EECC60" = {
773
- "isa" = "PBXGroup";
774
- "name" = "Reachability";
775
- "sourceTree" = "<group>";
776
- "children" = (
777
- "1FD478B67ECB2FE21FEDD6E2",
778
- "1353A9B12E6EAFF98E85F03D"
779
- );
780
- };
781
- "1FD478B67ECB2FE21FEDD6E2" = {
782
- "isa" = "PBXFileReference";
783
- "path" = "Vendor/Reachability/Reachability.m";
784
- "sourceTree" = "<group>";
785
- "name" = "Reachability.m";
786
- };
787
- "1353A9B12E6EAFF98E85F03D" = {
788
- "isa" = "PBXFileReference";
789
- "path" = "Vendor/Reachability/Reachability.h";
790
- "sourceTree" = "<group>";
791
- "name" = "Reachability.h";
792
- };
793
- "70F2C1C35C0D60D44412B5D5" = {
794
- "isa" = "PBXFileReference";
795
- "lastKnownFileType" = "wrapper.framework";
796
- "name" = "CFNetwork.framework";
797
- "path" = "System/Library/Frameworks/CFNetwork.framework";
798
- "sourceTree" = "SDKROOT";
799
- };
800
- };
801
- "rootObject" = "7165D447146B4EA100DE2F0E";
802
- }
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 46;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ 2574D65B0D2FFDB5D0372B4A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7165D454146B4EA100DE2F0E /* UIKit.framework */; };
11
+ 28C60920A77AB174A952864D /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7165D458146B4EA100DE2F0E /* CoreGraphics.framework */; };
12
+ 7165D455146B4EA100DE2F0E /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7165D454146B4EA100DE2F0E /* UIKit.framework */; };
13
+ 7165D457146B4EA100DE2F0E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7165D456146B4EA100DE2F0E /* Foundation.framework */; };
14
+ 7165D459146B4EA100DE2F0E /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7165D458146B4EA100DE2F0E /* CoreGraphics.framework */; };
15
+ 7165D45F146B4EA100DE2F0E /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 7165D45D146B4EA100DE2F0E /* InfoPlist.strings */; };
16
+ 7165D461146B4EA100DE2F0E /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 7165D460146B4EA100DE2F0E /* main.m */; };
17
+ 7165D465146B4EA100DE2F0E /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 7165D464146B4EA100DE2F0E /* AppDelegate.m */; };
18
+ 7165D46D146B4EA100DE2F0E /* SenTestingKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7165D46C146B4EA100DE2F0E /* SenTestingKit.framework */; };
19
+ 7165D46E146B4EA100DE2F0E /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7165D454146B4EA100DE2F0E /* UIKit.framework */; };
20
+ 7165D46F146B4EA100DE2F0E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7165D456146B4EA100DE2F0E /* Foundation.framework */; };
21
+ 7165D477146B4EA100DE2F0E /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 7165D475146B4EA100DE2F0E /* InfoPlist.strings */; };
22
+ 7165D47A146B4EA100DE2F0E /* TestProjectTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 7165D479146B4EA100DE2F0E /* TestProjectTests.m */; };
23
+ 7171EB6F1486E29E00AF2FE3 /* AnotherTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 7171EB6C1486DFE000AF2FE3 /* AnotherTest.m */; };
24
+ FD70EF95A64C6CF15FFAA614 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7165D456146B4EA100DE2F0E /* Foundation.framework */; };
25
+ /* End PBXBuildFile section */
26
+
27
+ /* Begin PBXContainerItemProxy section */
28
+ 7165D470146B4EA100DE2F0E /* PBXContainerItemProxy */ = {
29
+ isa = PBXContainerItemProxy;
30
+ containerPortal = 7165D447146B4EA100DE2F0E /* Project object */;
31
+ proxyType = 1;
32
+ remoteGlobalIDString = 7165D44F146B4EA100DE2F0E;
33
+ remoteInfo = TestProject;
34
+ };
35
+ /* End PBXContainerItemProxy section */
36
+
37
+ /* Begin PBXFileReference section */
38
+ 630E8768C91375E025BDAB9D /* Specs.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Specs.app; sourceTree = BUILT_PRODUCTS_DIR; };
39
+ 70F2C1C35C0D60D44412B5D5 /* CFNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = System/Library/Frameworks/CFNetwork.framework; sourceTree = SDKROOT; };
40
+ 7165D450146B4EA100DE2F0E /* TestProject.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = TestProject.app; sourceTree = BUILT_PRODUCTS_DIR; };
41
+ 7165D454146B4EA100DE2F0E /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
42
+ 7165D456146B4EA100DE2F0E /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
43
+ 7165D458146B4EA100DE2F0E /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
44
+ 7165D45C146B4EA100DE2F0E /* TestProject-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "TestProject-Info.plist"; sourceTree = "<group>"; };
45
+ 7165D45E146B4EA100DE2F0E /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
46
+ 7165D460146B4EA100DE2F0E /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
47
+ 7165D462146B4EA100DE2F0E /* TestProject-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "TestProject-Prefix.pch"; sourceTree = "<group>"; };
48
+ 7165D463146B4EA100DE2F0E /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
49
+ 7165D464146B4EA100DE2F0E /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
50
+ 7165D46B146B4EA100DE2F0E /* TestProjectTests.octest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = TestProjectTests.octest; sourceTree = BUILT_PRODUCTS_DIR; };
51
+ 7165D46C146B4EA100DE2F0E /* SenTestingKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SenTestingKit.framework; path = Library/Frameworks/SenTestingKit.framework; sourceTree = DEVELOPER_DIR; };
52
+ 7165D474146B4EA100DE2F0E /* TestProjectTests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "TestProjectTests-Info.plist"; sourceTree = "<group>"; };
53
+ 7165D476146B4EA100DE2F0E /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
54
+ 7165D478146B4EA100DE2F0E /* TestProjectTests.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TestProjectTests.h; sourceTree = "<group>"; };
55
+ 7165D479146B4EA100DE2F0E /* TestProjectTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TestProjectTests.m; sourceTree = "<group>"; };
56
+ 7171EB6B1486DFE000AF2FE3 /* AnotherTest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AnotherTest.h; sourceTree = "<group>"; };
57
+ 7171EB6C1486DFE000AF2FE3 /* AnotherTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AnotherTest.m; sourceTree = "<group>"; };
58
+ /* End PBXFileReference section */
59
+
60
+ /* Begin PBXFrameworksBuildPhase section */
61
+ 7165D44D146B4EA100DE2F0E /* Frameworks */ = {
62
+ isa = PBXFrameworksBuildPhase;
63
+ buildActionMask = 2147483647;
64
+ files = (
65
+ 7165D455146B4EA100DE2F0E /* UIKit.framework in Frameworks */,
66
+ 7165D457146B4EA100DE2F0E /* Foundation.framework in Frameworks */,
67
+ 7165D459146B4EA100DE2F0E /* CoreGraphics.framework in Frameworks */,
68
+ );
69
+ runOnlyForDeploymentPostprocessing = 0;
70
+ };
71
+ 7165D467146B4EA100DE2F0E /* Frameworks */ = {
72
+ isa = PBXFrameworksBuildPhase;
73
+ buildActionMask = 2147483647;
74
+ files = (
75
+ 7165D46D146B4EA100DE2F0E /* SenTestingKit.framework in Frameworks */,
76
+ 7165D46E146B4EA100DE2F0E /* UIKit.framework in Frameworks */,
77
+ 7165D46F146B4EA100DE2F0E /* Foundation.framework in Frameworks */,
78
+ );
79
+ runOnlyForDeploymentPostprocessing = 0;
80
+ };
81
+ FEE9A62A759B1FFE1A905731 /* Frameworks */ = {
82
+ isa = PBXFrameworksBuildPhase;
83
+ buildActionMask = 2147483647;
84
+ files = (
85
+ 2574D65B0D2FFDB5D0372B4A /* UIKit.framework in Frameworks */,
86
+ FD70EF95A64C6CF15FFAA614 /* Foundation.framework in Frameworks */,
87
+ 28C60920A77AB174A952864D /* CoreGraphics.framework in Frameworks */,
88
+ );
89
+ runOnlyForDeploymentPostprocessing = 0;
90
+ };
91
+ /* End PBXFrameworksBuildPhase section */
92
+
93
+ /* Begin PBXGroup section */
94
+ 7165D445146B4EA100DE2F0E = {
95
+ isa = PBXGroup;
96
+ children = (
97
+ 7165D45A146B4EA100DE2F0E /* TestProject */,
98
+ 7165D472146B4EA100DE2F0E /* TestProjectTests */,
99
+ 7165D453146B4EA100DE2F0E /* Frameworks */,
100
+ 7165D451146B4EA100DE2F0E /* Products */,
101
+ );
102
+ sourceTree = "<group>";
103
+ };
104
+ 7165D451146B4EA100DE2F0E /* Products */ = {
105
+ isa = PBXGroup;
106
+ children = (
107
+ 7165D450146B4EA100DE2F0E /* TestProject.app */,
108
+ 7165D46B146B4EA100DE2F0E /* TestProjectTests.octest */,
109
+ 630E8768C91375E025BDAB9D /* Specs.app */,
110
+ );
111
+ name = Products;
112
+ sourceTree = "<group>";
113
+ };
114
+ 7165D453146B4EA100DE2F0E /* Frameworks */ = {
115
+ isa = PBXGroup;
116
+ children = (
117
+ 7165D454146B4EA100DE2F0E /* UIKit.framework */,
118
+ 7165D456146B4EA100DE2F0E /* Foundation.framework */,
119
+ 7165D458146B4EA100DE2F0E /* CoreGraphics.framework */,
120
+ 7165D46C146B4EA100DE2F0E /* SenTestingKit.framework */,
121
+ 70F2C1C35C0D60D44412B5D5 /* CFNetwork.framework */,
122
+ );
123
+ name = Frameworks;
124
+ sourceTree = "<group>";
125
+ };
126
+ 7165D45A146B4EA100DE2F0E /* TestProject */ = {
127
+ isa = PBXGroup;
128
+ children = (
129
+ 7165D463146B4EA100DE2F0E /* AppDelegate.h */,
130
+ 7165D464146B4EA100DE2F0E /* AppDelegate.m */,
131
+ 7165D45B146B4EA100DE2F0E /* Supporting Files */,
132
+ );
133
+ path = TestProject;
134
+ sourceTree = "<group>";
135
+ };
136
+ 7165D45B146B4EA100DE2F0E /* Supporting Files */ = {
137
+ isa = PBXGroup;
138
+ children = (
139
+ 7165D45C146B4EA100DE2F0E /* TestProject-Info.plist */,
140
+ 7165D45D146B4EA100DE2F0E /* InfoPlist.strings */,
141
+ 7165D460146B4EA100DE2F0E /* main.m */,
142
+ 7165D462146B4EA100DE2F0E /* TestProject-Prefix.pch */,
143
+ );
144
+ name = "Supporting Files";
145
+ sourceTree = "<group>";
146
+ };
147
+ 7165D472146B4EA100DE2F0E /* TestProjectTests */ = {
148
+ isa = PBXGroup;
149
+ children = (
150
+ 7165D478146B4EA100DE2F0E /* TestProjectTests.h */,
151
+ 7165D479146B4EA100DE2F0E /* TestProjectTests.m */,
152
+ 7165D473146B4EA100DE2F0E /* Supporting Files */,
153
+ 7171EB6B1486DFE000AF2FE3 /* AnotherTest.h */,
154
+ 7171EB6C1486DFE000AF2FE3 /* AnotherTest.m */,
155
+ );
156
+ path = TestProjectTests;
157
+ sourceTree = "<group>";
158
+ };
159
+ 7165D473146B4EA100DE2F0E /* Supporting Files */ = {
160
+ isa = PBXGroup;
161
+ children = (
162
+ 7165D474146B4EA100DE2F0E /* TestProjectTests-Info.plist */,
163
+ 7165D475146B4EA100DE2F0E /* InfoPlist.strings */,
164
+ );
165
+ name = "Supporting Files";
166
+ sourceTree = "<group>";
167
+ };
168
+ /* End PBXGroup section */
169
+
170
+ /* Begin PBXNativeTarget section */
171
+ 7165D44F146B4EA100DE2F0E /* TestProject */ = {
172
+ isa = PBXNativeTarget;
173
+ buildConfigurationList = 7165D47D146B4EA100DE2F0E /* Build configuration list for PBXNativeTarget "TestProject" */;
174
+ buildPhases = (
175
+ 7165D44C146B4EA100DE2F0E /* Sources */,
176
+ 7165D44D146B4EA100DE2F0E /* Frameworks */,
177
+ 7165D44E146B4EA100DE2F0E /* Resources */,
178
+ );
179
+ buildRules = (
180
+ );
181
+ dependencies = (
182
+ );
183
+ name = TestProject;
184
+ productName = TestProject;
185
+ productReference = 7165D450146B4EA100DE2F0E /* TestProject.app */;
186
+ productType = "com.apple.product-type.application";
187
+ };
188
+ 7165D46A146B4EA100DE2F0E /* TestProjectTests */ = {
189
+ isa = PBXNativeTarget;
190
+ buildConfigurationList = 7165D480146B4EA100DE2F0E /* Build configuration list for PBXNativeTarget "TestProjectTests" */;
191
+ buildPhases = (
192
+ 7165D466146B4EA100DE2F0E /* Sources */,
193
+ 7165D467146B4EA100DE2F0E /* Frameworks */,
194
+ 7165D468146B4EA100DE2F0E /* Resources */,
195
+ 7165D469146B4EA100DE2F0E /* ShellScript */,
196
+ );
197
+ buildRules = (
198
+ );
199
+ dependencies = (
200
+ 7165D471146B4EA100DE2F0E /* PBXTargetDependency */,
201
+ );
202
+ name = TestProjectTests;
203
+ productName = TestProjectTests;
204
+ productReference = 7165D46B146B4EA100DE2F0E /* TestProjectTests.octest */;
205
+ productType = "com.apple.product-type.bundle";
206
+ };
207
+ D111C141DDDD1009668E310E /* Specs */ = {
208
+ isa = PBXNativeTarget;
209
+ buildConfigurationList = C93D39FEB82CC9442CE94908 /* Build configuration list for PBXNativeTarget "Specs" */;
210
+ buildPhases = (
211
+ DDF08A769D3B5B518C166AC6 /* Sources */,
212
+ 57F7ADA229AE63B1ADB8DA79 /* Resources */,
213
+ FEE9A62A759B1FFE1A905731 /* Frameworks */,
214
+ );
215
+ buildRules = (
216
+ );
217
+ dependencies = (
218
+ );
219
+ name = Specs;
220
+ productName = Specs;
221
+ productType = "com.apple.product-type.application";
222
+ };
223
+ /* End PBXNativeTarget section */
224
+
225
+ /* Begin PBXProject section */
226
+ 7165D447146B4EA100DE2F0E /* Project object */ = {
227
+ isa = PBXProject;
228
+ attributes = {
229
+ LastUpgradeCheck = 0420;
230
+ };
231
+ buildConfigurationList = 7165D44A146B4EA100DE2F0E /* Build configuration list for PBXProject "TestProject" */;
232
+ compatibilityVersion = "Xcode 3.2";
233
+ developmentRegion = English;
234
+ hasScannedForEncodings = 0;
235
+ knownRegions = (
236
+ en,
237
+ );
238
+ mainGroup = 7165D445146B4EA100DE2F0E;
239
+ productRefGroup = 7165D451146B4EA100DE2F0E /* Products */;
240
+ projectDirPath = "";
241
+ projectRoot = "";
242
+ targets = (
243
+ 7165D44F146B4EA100DE2F0E /* TestProject */,
244
+ 7165D46A146B4EA100DE2F0E /* TestProjectTests */,
245
+ D111C141DDDD1009668E310E /* Specs */,
246
+ );
247
+ };
248
+ /* End PBXProject section */
249
+
250
+ /* Begin PBXResourcesBuildPhase section */
251
+ 57F7ADA229AE63B1ADB8DA79 /* Resources */ = {
252
+ isa = PBXResourcesBuildPhase;
253
+ buildActionMask = 2147483647;
254
+ files = (
255
+ );
256
+ runOnlyForDeploymentPostprocessing = 0;
257
+ };
258
+ 7165D44E146B4EA100DE2F0E /* Resources */ = {
259
+ isa = PBXResourcesBuildPhase;
260
+ buildActionMask = 2147483647;
261
+ files = (
262
+ 7165D45F146B4EA100DE2F0E /* InfoPlist.strings in Resources */,
263
+ );
264
+ runOnlyForDeploymentPostprocessing = 0;
265
+ };
266
+ 7165D468146B4EA100DE2F0E /* Resources */ = {
267
+ isa = PBXResourcesBuildPhase;
268
+ buildActionMask = 2147483647;
269
+ files = (
270
+ 7165D477146B4EA100DE2F0E /* InfoPlist.strings in Resources */,
271
+ );
272
+ runOnlyForDeploymentPostprocessing = 0;
273
+ };
274
+ /* End PBXResourcesBuildPhase section */
275
+
276
+ /* Begin PBXShellScriptBuildPhase section */
277
+ 7165D469146B4EA100DE2F0E /* ShellScript */ = {
278
+ isa = PBXShellScriptBuildPhase;
279
+ buildActionMask = 2147483647;
280
+ files = (
281
+ );
282
+ inputPaths = (
283
+ );
284
+ outputPaths = (
285
+ );
286
+ runOnlyForDeploymentPostprocessing = 0;
287
+ shellPath = /bin/sh;
288
+ shellScript = "# Run the unit tests in this test bundle.\n\"${SYSTEM_DEVELOPER_DIR}/Tools/RunUnitTests\"\n";
289
+ };
290
+ /* End PBXShellScriptBuildPhase section */
291
+
292
+ /* Begin PBXSourcesBuildPhase section */
293
+ 7165D44C146B4EA100DE2F0E /* Sources */ = {
294
+ isa = PBXSourcesBuildPhase;
295
+ buildActionMask = 2147483647;
296
+ files = (
297
+ 7165D461146B4EA100DE2F0E /* main.m in Sources */,
298
+ 7165D465146B4EA100DE2F0E /* AppDelegate.m in Sources */,
299
+ );
300
+ runOnlyForDeploymentPostprocessing = 0;
301
+ };
302
+ 7165D466146B4EA100DE2F0E /* Sources */ = {
303
+ isa = PBXSourcesBuildPhase;
304
+ buildActionMask = 2147483647;
305
+ files = (
306
+ 7165D47A146B4EA100DE2F0E /* TestProjectTests.m in Sources */,
307
+ 7171EB6F1486E29E00AF2FE3 /* AnotherTest.m in Sources */,
308
+ );
309
+ runOnlyForDeploymentPostprocessing = 0;
310
+ };
311
+ DDF08A769D3B5B518C166AC6 /* Sources */ = {
312
+ isa = PBXSourcesBuildPhase;
313
+ buildActionMask = 2147483647;
314
+ files = (
315
+ );
316
+ runOnlyForDeploymentPostprocessing = 0;
317
+ };
318
+ /* End PBXSourcesBuildPhase section */
319
+
320
+ /* Begin PBXTargetDependency section */
321
+ 7165D471146B4EA100DE2F0E /* PBXTargetDependency */ = {
322
+ isa = PBXTargetDependency;
323
+ target = 7165D44F146B4EA100DE2F0E /* TestProject */;
324
+ targetProxy = 7165D470146B4EA100DE2F0E /* PBXContainerItemProxy */;
325
+ };
326
+ /* End PBXTargetDependency section */
327
+
328
+ /* Begin PBXVariantGroup section */
329
+ 7165D45D146B4EA100DE2F0E /* InfoPlist.strings */ = {
330
+ isa = PBXVariantGroup;
331
+ children = (
332
+ 7165D45E146B4EA100DE2F0E /* en */,
333
+ );
334
+ name = InfoPlist.strings;
335
+ sourceTree = "<group>";
336
+ };
337
+ 7165D475146B4EA100DE2F0E /* InfoPlist.strings */ = {
338
+ isa = PBXVariantGroup;
339
+ children = (
340
+ 7165D476146B4EA100DE2F0E /* en */,
341
+ );
342
+ name = InfoPlist.strings;
343
+ sourceTree = "<group>";
344
+ };
345
+ /* End PBXVariantGroup section */
346
+
347
+ /* Begin XCBuildConfiguration section */
348
+ 7165D47B146B4EA100DE2F0E /* Debug */ = {
349
+ isa = XCBuildConfiguration;
350
+ buildSettings = {
351
+ ALWAYS_SEARCH_USER_PATHS = NO;
352
+ ARCHS = "$(ARCHS_STANDARD_32_BIT)";
353
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
354
+ COPY_PHASE_STRIP = NO;
355
+ GCC_C_LANGUAGE_STANDARD = gnu99;
356
+ GCC_DYNAMIC_NO_PIC = NO;
357
+ GCC_OPTIMIZATION_LEVEL = 0;
358
+ GCC_PREPROCESSOR_DEFINITIONS = (
359
+ "DEBUG=1",
360
+ "$(inherited)",
361
+ );
362
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
363
+ GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
364
+ GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;
365
+ GCC_WARN_ABOUT_RETURN_TYPE = YES;
366
+ GCC_WARN_UNUSED_VARIABLE = YES;
367
+ IPHONEOS_DEPLOYMENT_TARGET = 5.0;
368
+ SDKROOT = iphoneos;
369
+ TARGETED_DEVICE_FAMILY = "1,2";
370
+ };
371
+ name = Debug;
372
+ };
373
+ 7165D47C146B4EA100DE2F0E /* Release */ = {
374
+ isa = XCBuildConfiguration;
375
+ buildSettings = {
376
+ ALWAYS_SEARCH_USER_PATHS = NO;
377
+ ARCHS = "$(ARCHS_STANDARD_32_BIT)";
378
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
379
+ COPY_PHASE_STRIP = YES;
380
+ GCC_C_LANGUAGE_STANDARD = gnu99;
381
+ GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
382
+ GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;
383
+ GCC_WARN_ABOUT_RETURN_TYPE = YES;
384
+ GCC_WARN_UNUSED_VARIABLE = YES;
385
+ IPHONEOS_DEPLOYMENT_TARGET = 5.0;
386
+ OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
387
+ SDKROOT = iphoneos;
388
+ TARGETED_DEVICE_FAMILY = "1,2";
389
+ VALIDATE_PRODUCT = YES;
390
+ };
391
+ name = Release;
392
+ };
393
+ 7165D47E146B4EA100DE2F0E /* Debug */ = {
394
+ isa = XCBuildConfiguration;
395
+ buildSettings = {
396
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
397
+ GCC_PREFIX_HEADER = "TestProject/TestProject-Prefix.pch";
398
+ INFOPLIST_FILE = "TestProject/TestProject-Info.plist";
399
+ PRODUCT_NAME = "$(TARGET_NAME)";
400
+ WRAPPER_EXTENSION = app;
401
+ };
402
+ name = Debug;
403
+ };
404
+ 7165D47F146B4EA100DE2F0E /* Release */ = {
405
+ isa = XCBuildConfiguration;
406
+ buildSettings = {
407
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
408
+ GCC_PREFIX_HEADER = "TestProject/TestProject-Prefix.pch";
409
+ INFOPLIST_FILE = "TestProject/TestProject-Info.plist";
410
+ PRODUCT_NAME = "$(TARGET_NAME)";
411
+ WRAPPER_EXTENSION = app;
412
+ };
413
+ name = Release;
414
+ };
415
+ 7165D481146B4EA100DE2F0E /* Debug */ = {
416
+ isa = XCBuildConfiguration;
417
+ buildSettings = {
418
+ BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/TestProject.app/TestProject";
419
+ FRAMEWORK_SEARCH_PATHS = (
420
+ "$(SDKROOT)/Developer/Library/Frameworks",
421
+ "$(DEVELOPER_LIBRARY_DIR)/Frameworks",
422
+ );
423
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
424
+ GCC_PREFIX_HEADER = "TestProject/TestProject-Prefix.pch";
425
+ INFOPLIST_FILE = "TestProjectTests/TestProjectTests-Info.plist";
426
+ PRODUCT_NAME = "$(TARGET_NAME)";
427
+ TEST_HOST = "$(BUNDLE_LOADER)";
428
+ WRAPPER_EXTENSION = octest;
429
+ };
430
+ name = Debug;
431
+ };
432
+ 7165D482146B4EA100DE2F0E /* Release */ = {
433
+ isa = XCBuildConfiguration;
434
+ buildSettings = {
435
+ BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/TestProject.app/TestProject";
436
+ FRAMEWORK_SEARCH_PATHS = (
437
+ "$(SDKROOT)/Developer/Library/Frameworks",
438
+ "$(DEVELOPER_LIBRARY_DIR)/Frameworks",
439
+ );
440
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
441
+ GCC_PREFIX_HEADER = "TestProject/TestProject-Prefix.pch";
442
+ INFOPLIST_FILE = "TestProjectTests/TestProjectTests-Info.plist";
443
+ PRODUCT_NAME = "$(TARGET_NAME)";
444
+ TEST_HOST = "$(BUNDLE_LOADER)";
445
+ WRAPPER_EXTENSION = octest;
446
+ };
447
+ name = Release;
448
+ };
449
+ 9DD0F856744EE2F634D435BF /* Debug */ = {
450
+ isa = XCBuildConfiguration;
451
+ buildSettings = {
452
+ ALWAYS_SEARCH_USER_PATHS = NO;
453
+ ARCHS = "$(ARCHS_STANDARD_32_BIT)";
454
+ "CODE_SIGN_IDENTITY[sdk=>iphoneos*]" = "iPhone Developer";
455
+ COPY_PHASE_STRIP = YES;
456
+ FRAMEWORK_SEARCH_PATHS = (
457
+ "$(inherited)",
458
+ "\"$(SRCROOT)/Vendor/Frameworks\"",
459
+ );
460
+ GCC_C_LANGUAGE_STANDARD = gnu99;
461
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
462
+ GCC_PREFIX_HEADER = "Specs/Specs-Prefix.pch";
463
+ GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
464
+ GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;
465
+ GCC_WARN_ABOUT_RETURN_TYPE = YES;
466
+ INFOPLIST_FILE = "Specs/Specs-Info.plist";
467
+ IPHONEOS_DEPLOYMENT_TARGET = 5.0;
468
+ OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
469
+ OTHER_LDFLAGS = (
470
+ "-ObjC",
471
+ "-all_load",
472
+ "-lstdc++",
473
+ );
474
+ PRODUCT_NAME = "$(TARGET_NAME)";
475
+ SDKROOT = iphoneos;
476
+ TARGETED_DEVICE_FAMILY = "1,2";
477
+ VALIDATE_PRODUCT = YES;
478
+ WRAPPER_EXTENSION = app;
479
+ };
480
+ name = Debug;
481
+ };
482
+ F3367A702467F6782D255B43 /* Release */ = {
483
+ isa = XCBuildConfiguration;
484
+ buildSettings = {
485
+ ALWAYS_SEARCH_USER_PATHS = NO;
486
+ ARCHS = "$(ARCHS_STANDARD_32_BIT)";
487
+ "CODE_SIGN_IDENTITY[sdk=>iphoneos*]" = "iPhone Developer";
488
+ COPY_PHASE_STRIP = YES;
489
+ FRAMEWORK_SEARCH_PATHS = (
490
+ "$(inherited)",
491
+ "\"$(SRCROOT)/Vendor/Frameworks\"",
492
+ );
493
+ GCC_C_LANGUAGE_STANDARD = gnu99;
494
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
495
+ GCC_PREFIX_HEADER = "Specs/Specs-Prefix.pch";
496
+ GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
497
+ GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;
498
+ GCC_WARN_ABOUT_RETURN_TYPE = YES;
499
+ INFOPLIST_FILE = "Specs/Specs-Info.plist";
500
+ IPHONEOS_DEPLOYMENT_TARGET = 5.0;
501
+ OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
502
+ OTHER_LDFLAGS = (
503
+ "-ObjC",
504
+ "-all_load",
505
+ "-lstdc++",
506
+ );
507
+ PRODUCT_NAME = "$(TARGET_NAME)";
508
+ SDKROOT = iphoneos;
509
+ TARGETED_DEVICE_FAMILY = "1,2";
510
+ VALIDATE_PRODUCT = YES;
511
+ WRAPPER_EXTENSION = app;
512
+ };
513
+ name = Release;
514
+ };
515
+ /* End XCBuildConfiguration section */
516
+
517
+ /* Begin XCConfigurationList section */
518
+ 7165D44A146B4EA100DE2F0E /* Build configuration list for PBXProject "TestProject" */ = {
519
+ isa = XCConfigurationList;
520
+ buildConfigurations = (
521
+ 7165D47B146B4EA100DE2F0E /* Debug */,
522
+ 7165D47C146B4EA100DE2F0E /* Release */,
523
+ );
524
+ defaultConfigurationIsVisible = 0;
525
+ defaultConfigurationName = Release;
526
+ };
527
+ 7165D47D146B4EA100DE2F0E /* Build configuration list for PBXNativeTarget "TestProject" */ = {
528
+ isa = XCConfigurationList;
529
+ buildConfigurations = (
530
+ 7165D47E146B4EA100DE2F0E /* Debug */,
531
+ 7165D47F146B4EA100DE2F0E /* Release */,
532
+ );
533
+ defaultConfigurationIsVisible = 0;
534
+ defaultConfigurationName = Release;
535
+ };
536
+ 7165D480146B4EA100DE2F0E /* Build configuration list for PBXNativeTarget "TestProjectTests" */ = {
537
+ isa = XCConfigurationList;
538
+ buildConfigurations = (
539
+ 7165D481146B4EA100DE2F0E /* Debug */,
540
+ 7165D482146B4EA100DE2F0E /* Release */,
541
+ );
542
+ defaultConfigurationIsVisible = 0;
543
+ defaultConfigurationName = Release;
544
+ };
545
+ C93D39FEB82CC9442CE94908 /* Build configuration list for PBXNativeTarget "Specs" */ = {
546
+ isa = XCConfigurationList;
547
+ buildConfigurations = (
548
+ 9DD0F856744EE2F634D435BF /* Debug */,
549
+ F3367A702467F6782D255B43 /* Release */,
550
+ );
551
+ defaultConfigurationIsVisible = 0;
552
+ defaultConfigurationName = "";
553
+ };
554
+ /* End XCConfigurationList section */
555
+ };
556
+ rootObject = 7165D447146B4EA100DE2F0E /* Project object */;
557
+ }