cocoapods-packager-qcloud 1.5.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (77) hide show
  1. checksums.yaml +7 -0
  2. data/.coveralls.yml +1 -0
  3. data/.gitignore +4 -0
  4. data/.idea/.rakeTasks +7 -0
  5. data/.idea/misc.xml +4 -0
  6. data/.idea/modules.xml +8 -0
  7. data/.idea/vcs.xml +6 -0
  8. data/.rubocop-cocoapods.yml +71 -0
  9. data/.rubocop.yml +38 -0
  10. data/.travis.yml +9 -0
  11. data/Gemfile +12 -0
  12. data/Gemfile.lock +121 -0
  13. data/LICENSE +22 -0
  14. data/README.md +42 -0
  15. data/Rakefile +12 -0
  16. data/cocoapods-packager.gemspec +23 -0
  17. data/lib/cocoapods-packager/builder.rb +298 -0
  18. data/lib/cocoapods-packager/framework.rb +66 -0
  19. data/lib/cocoapods-packager/mangle.rb +32 -0
  20. data/lib/cocoapods-packager/pod_utils.rb +265 -0
  21. data/lib/cocoapods-packager/spec_builder.rb +63 -0
  22. data/lib/cocoapods-packager/symbols.rb +35 -0
  23. data/lib/cocoapods-packager/user_interface/build_failed_report.rb +15 -0
  24. data/lib/cocoapods_packager.rb +5 -0
  25. data/lib/cocoapods_plugin.rb +8 -0
  26. data/lib/pod/command/package.rb +173 -0
  27. data/scripts/lstconst.sh +9 -0
  28. data/scripts/lstsym.sh +8 -0
  29. data/spec/command/error_spec.rb +74 -0
  30. data/spec/command/package_spec.rb +359 -0
  31. data/spec/command/rctl_spec.rb +13 -0
  32. data/spec/command/subspecs_spec.rb +30 -0
  33. data/spec/fixtures/Builder.podspec +25 -0
  34. data/spec/fixtures/CPDColors.podspec +19 -0
  35. data/spec/fixtures/FH.podspec +18 -0
  36. data/spec/fixtures/KFData.podspec +73 -0
  37. data/spec/fixtures/LibraryConsumerDemo/.gitignore +22 -0
  38. data/spec/fixtures/LibraryConsumerDemo/LibraryConsumer.xcodeproj/project.pbxproj +340 -0
  39. data/spec/fixtures/LibraryConsumerDemo/LibraryConsumer.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  40. data/spec/fixtures/LibraryConsumerDemo/LibraryConsumer.xcodeproj/xcshareddata/xcschemes/LibraryConsumer.xcscheme +100 -0
  41. data/spec/fixtures/LibraryConsumerDemo/LibraryConsumer/AppDelegate.h +17 -0
  42. data/spec/fixtures/LibraryConsumerDemo/LibraryConsumer/AppDelegate.m +27 -0
  43. data/spec/fixtures/LibraryConsumerDemo/LibraryConsumer/Info.plist +40 -0
  44. data/spec/fixtures/LibraryConsumerDemo/LibraryConsumer/main.m +16 -0
  45. data/spec/fixtures/LibraryConsumerDemo/Podfile +5 -0
  46. data/spec/fixtures/LibraryDemo.podspec +14 -0
  47. data/spec/fixtures/NikeKit.podspec +19 -0
  48. data/spec/fixtures/OpenSans.podspec +18 -0
  49. data/spec/fixtures/PackagerTest/.gitignore +21 -0
  50. data/spec/fixtures/PackagerTest/PackagerTest.xcodeproj/project.pbxproj +536 -0
  51. data/spec/fixtures/PackagerTest/PackagerTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  52. data/spec/fixtures/PackagerTest/PackagerTest.xcodeproj/xcshareddata/xcschemes/PackagerTest.xcscheme +110 -0
  53. data/spec/fixtures/PackagerTest/PackagerTest.xcworkspace/contents.xcworkspacedata +1 -0
  54. data/spec/fixtures/PackagerTest/PackagerTest/CPDAppDelegate.h +15 -0
  55. data/spec/fixtures/PackagerTest/PackagerTest/CPDAppDelegate.m +49 -0
  56. data/spec/fixtures/PackagerTest/PackagerTest/Images.xcassets/AppIcon.appiconset/Contents.json +23 -0
  57. data/spec/fixtures/PackagerTest/PackagerTest/Images.xcassets/LaunchImage.launchimage/Contents.json +23 -0
  58. data/spec/fixtures/PackagerTest/PackagerTest/PackagerTest-Info.plist +38 -0
  59. data/spec/fixtures/PackagerTest/PackagerTest/PackagerTest-Prefix.pch +16 -0
  60. data/spec/fixtures/PackagerTest/PackagerTest/en.lproj/InfoPlist.strings +2 -0
  61. data/spec/fixtures/PackagerTest/PackagerTest/main.m +18 -0
  62. data/spec/fixtures/PackagerTest/PackagerTestTests/PackagerTestTests-Info.plist +22 -0
  63. data/spec/fixtures/PackagerTest/PackagerTestTests/PackagerTestTests.m +34 -0
  64. data/spec/fixtures/PackagerTest/PackagerTestTests/en.lproj/InfoPlist.strings +2 -0
  65. data/spec/fixtures/PackagerTest/Podfile +10 -0
  66. data/spec/fixtures/PackagerTest/Podfile.lock +32 -0
  67. data/spec/fixtures/Weakly.podspec +13 -0
  68. data/spec/fixtures/a.podspec +19 -0
  69. data/spec/fixtures/foo-bar.podspec +19 -0
  70. data/spec/fixtures/layer-client-messaging-schema.podspec +13 -0
  71. data/spec/integration/project_spec.rb +70 -0
  72. data/spec/pod/utils_spec.rb +58 -0
  73. data/spec/spec_helper.rb +50 -0
  74. data/spec/specification/builder_spec.rb +40 -0
  75. data/spec/specification/spec_builder_spec.rb +61 -0
  76. data/spec/user_interface/build_failed_report_spec.rb +11 -0
  77. metadata +232 -0
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Workspace
3
+ version = "1.0">
4
+ <FileRef
5
+ location = "self:LibraryConsumer.xcodeproj">
6
+ </FileRef>
7
+ </Workspace>
@@ -0,0 +1,100 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Scheme
3
+ LastUpgradeVersion = "0600"
4
+ version = "1.3">
5
+ <BuildAction
6
+ parallelizeBuildables = "YES"
7
+ buildImplicitDependencies = "YES">
8
+ <BuildActionEntries>
9
+ <BuildActionEntry
10
+ buildForTesting = "YES"
11
+ buildForRunning = "YES"
12
+ buildForProfiling = "YES"
13
+ buildForArchiving = "YES"
14
+ buildForAnalyzing = "YES">
15
+ <BuildableReference
16
+ BuildableIdentifier = "primary"
17
+ BlueprintIdentifier = "9B89D2D919EFC04D00803D42"
18
+ BuildableName = "LibraryConsumer.app"
19
+ BlueprintName = "LibraryConsumer"
20
+ ReferencedContainer = "container:LibraryConsumer.xcodeproj">
21
+ </BuildableReference>
22
+ </BuildActionEntry>
23
+ <BuildActionEntry
24
+ buildForTesting = "YES"
25
+ buildForRunning = "YES"
26
+ buildForProfiling = "NO"
27
+ buildForArchiving = "NO"
28
+ buildForAnalyzing = "YES">
29
+ <BuildableReference
30
+ BuildableIdentifier = "primary"
31
+ BlueprintIdentifier = "9B89D2F219EFC04D00803D42"
32
+ BuildableName = "LibraryConsumerTests.xctest"
33
+ BlueprintName = "LibraryConsumerTests"
34
+ ReferencedContainer = "container:LibraryConsumer.xcodeproj">
35
+ </BuildableReference>
36
+ </BuildActionEntry>
37
+ </BuildActionEntries>
38
+ </BuildAction>
39
+ <TestAction
40
+ selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
41
+ selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
42
+ shouldUseLaunchSchemeArgsEnv = "YES"
43
+ buildConfiguration = "Debug">
44
+ <Testables>
45
+ </Testables>
46
+ <MacroExpansion>
47
+ <BuildableReference
48
+ BuildableIdentifier = "primary"
49
+ BlueprintIdentifier = "9B89D2D919EFC04D00803D42"
50
+ BuildableName = "LibraryConsumer.app"
51
+ BlueprintName = "LibraryConsumer"
52
+ ReferencedContainer = "container:LibraryConsumer.xcodeproj">
53
+ </BuildableReference>
54
+ </MacroExpansion>
55
+ </TestAction>
56
+ <LaunchAction
57
+ selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
58
+ selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
59
+ launchStyle = "0"
60
+ useCustomWorkingDirectory = "NO"
61
+ buildConfiguration = "Debug"
62
+ ignoresPersistentStateOnLaunch = "NO"
63
+ debugDocumentVersioning = "YES"
64
+ allowLocationSimulation = "YES">
65
+ <BuildableProductRunnable>
66
+ <BuildableReference
67
+ BuildableIdentifier = "primary"
68
+ BlueprintIdentifier = "9B89D2D919EFC04D00803D42"
69
+ BuildableName = "LibraryConsumer.app"
70
+ BlueprintName = "LibraryConsumer"
71
+ ReferencedContainer = "container:LibraryConsumer.xcodeproj">
72
+ </BuildableReference>
73
+ </BuildableProductRunnable>
74
+ <AdditionalOptions>
75
+ </AdditionalOptions>
76
+ </LaunchAction>
77
+ <ProfileAction
78
+ shouldUseLaunchSchemeArgsEnv = "YES"
79
+ savedToolIdentifier = ""
80
+ useCustomWorkingDirectory = "NO"
81
+ buildConfiguration = "Release"
82
+ debugDocumentVersioning = "YES">
83
+ <BuildableProductRunnable>
84
+ <BuildableReference
85
+ BuildableIdentifier = "primary"
86
+ BlueprintIdentifier = "9B89D2D919EFC04D00803D42"
87
+ BuildableName = "LibraryConsumer.app"
88
+ BlueprintName = "LibraryConsumer"
89
+ ReferencedContainer = "container:LibraryConsumer.xcodeproj">
90
+ </BuildableReference>
91
+ </BuildableProductRunnable>
92
+ </ProfileAction>
93
+ <AnalyzeAction
94
+ buildConfiguration = "Debug">
95
+ </AnalyzeAction>
96
+ <ArchiveAction
97
+ buildConfiguration = "Release"
98
+ revealArchiveInOrganizer = "YES">
99
+ </ArchiveAction>
100
+ </Scheme>
@@ -0,0 +1,17 @@
1
+ //
2
+ // AppDelegate.h
3
+ // LibraryConsumer
4
+ //
5
+ // Created by Ole Gammelgaard Poulsen on 16/10/14.
6
+ // Copyright (c) 2014 Shape A/S. All rights reserved.
7
+ //
8
+
9
+ #import <UIKit/UIKit.h>
10
+
11
+ @interface AppDelegate : UIResponder <UIApplicationDelegate>
12
+
13
+ @property (strong, nonatomic) UIWindow *window;
14
+
15
+
16
+ @end
17
+
@@ -0,0 +1,27 @@
1
+ //
2
+ // AppDelegate.m
3
+ // LibraryConsumer
4
+ //
5
+ // Created by Ole Gammelgaard Poulsen on 16/10/14.
6
+ // Copyright (c) 2014 Shape A/S. All rights reserved.
7
+ //
8
+
9
+ #import <LibraryDemo/MyDemoClass.h>
10
+
11
+ #import "AppDelegate.h"
12
+
13
+ @interface AppDelegate ()
14
+
15
+ @end
16
+
17
+ @implementation AppDelegate
18
+
19
+
20
+ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
21
+
22
+ NSLog(@"%@", [MyDemoClass welcomeMessage]);
23
+
24
+ return YES;
25
+ }
26
+
27
+ @end
@@ -0,0 +1,40 @@
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>CFBundleDevelopmentRegion</key>
6
+ <string>en</string>
7
+ <key>CFBundleExecutable</key>
8
+ <string>$(EXECUTABLE_NAME)</string>
9
+ <key>CFBundleIdentifier</key>
10
+ <string>dk.shape.$(PRODUCT_NAME:rfc1034identifier)</string>
11
+ <key>CFBundleInfoDictionaryVersion</key>
12
+ <string>6.0</string>
13
+ <key>CFBundleName</key>
14
+ <string>$(PRODUCT_NAME)</string>
15
+ <key>CFBundlePackageType</key>
16
+ <string>APPL</string>
17
+ <key>CFBundleShortVersionString</key>
18
+ <string>1.0</string>
19
+ <key>CFBundleSignature</key>
20
+ <string>????</string>
21
+ <key>CFBundleVersion</key>
22
+ <string>1</string>
23
+ <key>LSRequiresIPhoneOS</key>
24
+ <true/>
25
+ <key>UILaunchStoryboardName</key>
26
+ <string>LaunchScreen</string>
27
+ <key>UIMainStoryboardFile</key>
28
+ <string>Main</string>
29
+ <key>UIRequiredDeviceCapabilities</key>
30
+ <array>
31
+ <string>armv7</string>
32
+ </array>
33
+ <key>UISupportedInterfaceOrientations</key>
34
+ <array>
35
+ <string>UIInterfaceOrientationPortrait</string>
36
+ <string>UIInterfaceOrientationLandscapeLeft</string>
37
+ <string>UIInterfaceOrientationLandscapeRight</string>
38
+ </array>
39
+ </dict>
40
+ </plist>
@@ -0,0 +1,16 @@
1
+ //
2
+ // main.m
3
+ // LibraryConsumer
4
+ //
5
+ // Created by Ole Gammelgaard Poulsen on 16/10/14.
6
+ // Copyright (c) 2014 Shape A/S. All rights reserved.
7
+ //
8
+
9
+ #import <UIKit/UIKit.h>
10
+ #import "AppDelegate.h"
11
+
12
+ int main(int argc, char * argv[]) {
13
+ @autoreleasepool {
14
+ return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
15
+ }
16
+ }
@@ -0,0 +1,5 @@
1
+ target 'LibraryConsumer' do
2
+
3
+ pod 'LibraryDemo', :path => '../../../LibraryDemo-1.0.0'
4
+
5
+ end
@@ -0,0 +1,14 @@
1
+ Pod::Spec.new do |s|
2
+ s.name = 'LibraryDemo'
3
+ s.version = '1.0.0'
4
+ s.summary = 'Demo'
5
+ s.author = {'Ole Gammelgaard Poulsen' => 'ole@shape.dk' }
6
+ s.source = { :git => 'https://github.com/olegam/LibraryDemo.git', :tag => s.version.to_s }
7
+ s.source_files = 'sources/**/*.{h,m}'
8
+ s.requires_arc = true
9
+ s.ios.deployment_target = '6.0'
10
+ s.osx.deployment_target = '10.9'
11
+
12
+ s.license = 'GPL' # :trollface:
13
+ s.homepage = 'https://www.youtube.com/watch?v=32UGD0fV45g'
14
+ end
@@ -0,0 +1,19 @@
1
+ Pod::Spec.new do |s|
2
+ s.name = 'NikeKit'
3
+ s.version = '0.0.1'
4
+ s.summary = 'Objective-C implementation of the Nike+ API.'
5
+ s.homepage = 'https://github.com/neonichu/NikeKit'
6
+ s.license = {:type => 'MIT', :file => 'LICENSE'}
7
+ s.authors = { 'Boris Bügling' => 'http://buegling.com' }
8
+ s.source = { :git => 'https://github.com/neonichu/NikeKit.git', :tag => s.version.to_s }
9
+ s.platform = :ios, '8.0'
10
+
11
+ s.public_header_files = '*.h'
12
+ s.source_files = '*.{h,m}'
13
+ s.frameworks = 'Foundation'
14
+ s.requires_arc = true
15
+
16
+ s.dependency 'AFNetworking'
17
+ s.dependency 'ISO8601DateFormatter'
18
+ s.dependency 'KZPropertyMapper'
19
+ end
@@ -0,0 +1,18 @@
1
+ Pod::Spec.new do |spec|
2
+ spec.name = 'OpenSans'
3
+ spec.version = '1.0.3'
4
+ spec.summary = 'A podspec encapsulating OpenSans font for iOS'
5
+ spec.description = "Open Sans is a humanist sans serif typeface designed by Steve Matteson, Type Director of Ascender Corp. This version contains the complete 897 character set, which includes the standard ISO Latin 1, Latin CE, Greek and Cyrillic character sets. Open Sans was designed with an upright stress, open forms and a neutral, yet friendly appearance. It was optimized for print, web, and mobile interfaces, and has excellent legibility characteristics in its letterforms."
6
+ spec.license = { :type => 'Apache License, Version 2.0', :file => 'LICENSE.txt' }
7
+ spec.authors = { 'Kyle Fuller' => 'inbox@kylefuller.co.uk' }
8
+ spec.homepage = 'https://github.com/CocoaPods-Fonts/OpenSans'
9
+ spec.screenshot = 'http://f.cl.ly/items/2t2F032e3W0h2T1i0j1n/opensans-ios7-iphone5.png'
10
+ spec.social_media_url = 'https://twitter.com/kylefuller'
11
+ spec.platform = :ios
12
+ spec.source = { :git => 'https://github.com/CocoaPods-Fonts/OpenSans.git', :tag => spec.version.to_s }
13
+ spec.source_files = 'UIFont+OpenSans.{h,m}'
14
+ spec.resource_bundle = { 'OpenSans' => 'Fonts/*.ttf' }
15
+ spec.frameworks = 'UIKit', 'CoreText'
16
+ spec.requires_arc = true
17
+ end
18
+
@@ -0,0 +1,21 @@
1
+ ## CocoaPods
2
+
3
+ Pods
4
+
5
+ ## Node
6
+
7
+ node_modules
8
+
9
+ ## OS X
10
+
11
+ .DS_Store
12
+
13
+ ## Other
14
+
15
+ .pt
16
+ NikeKit.framework
17
+
18
+ ## Xcode
19
+
20
+ *.xccheckout
21
+ xcuserdata
@@ -0,0 +1,536 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 46;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ 06C49FBB8D44715480415078 /* libPods-PackagerTest.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9B50A03E1C68D6EA050ADDB4 /* libPods-PackagerTest.a */; };
11
+ A1DE56B919AA4A97000339C6 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A1DE56B819AA4A97000339C6 /* Foundation.framework */; };
12
+ A1DE56BB19AA4A97000339C6 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A1DE56BA19AA4A97000339C6 /* CoreGraphics.framework */; };
13
+ A1DE56BD19AA4A97000339C6 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A1DE56BC19AA4A97000339C6 /* UIKit.framework */; };
14
+ A1DE56C319AA4A97000339C6 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = A1DE56C119AA4A97000339C6 /* InfoPlist.strings */; };
15
+ A1DE56C519AA4A97000339C6 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = A1DE56C419AA4A97000339C6 /* main.m */; };
16
+ A1DE56C919AA4A97000339C6 /* CPDAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = A1DE56C819AA4A97000339C6 /* CPDAppDelegate.m */; };
17
+ A1DE56CB19AA4A97000339C6 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = A1DE56CA19AA4A97000339C6 /* Images.xcassets */; };
18
+ A1DE56D219AA4A97000339C6 /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A1DE56D119AA4A97000339C6 /* XCTest.framework */; };
19
+ A1DE56D319AA4A97000339C6 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A1DE56B819AA4A97000339C6 /* Foundation.framework */; };
20
+ A1DE56D419AA4A97000339C6 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A1DE56BC19AA4A97000339C6 /* UIKit.framework */; };
21
+ A1DE56DC19AA4A97000339C6 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = A1DE56DA19AA4A97000339C6 /* InfoPlist.strings */; };
22
+ A1DE56DE19AA4A97000339C6 /* PackagerTestTests.m in Sources */ = {isa = PBXBuildFile; fileRef = A1DE56DD19AA4A97000339C6 /* PackagerTestTests.m */; };
23
+ A1DE56E819AA4AC4000339C6 /* NikeKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A1DE56E719AA4AC4000339C6 /* NikeKit.framework */; };
24
+ /* End PBXBuildFile section */
25
+
26
+ /* Begin PBXContainerItemProxy section */
27
+ A1DE56D519AA4A97000339C6 /* PBXContainerItemProxy */ = {
28
+ isa = PBXContainerItemProxy;
29
+ containerPortal = A1DE56AD19AA4A97000339C6 /* Project object */;
30
+ proxyType = 1;
31
+ remoteGlobalIDString = A1DE56B419AA4A97000339C6;
32
+ remoteInfo = PackagerTest;
33
+ };
34
+ /* End PBXContainerItemProxy section */
35
+
36
+ /* Begin PBXFileReference section */
37
+ 551F7332E67FB33B4FD37276 /* Pods-PackagerTest.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-PackagerTest.release.xcconfig"; path = "Pods/Target Support Files/Pods-PackagerTest/Pods-PackagerTest.release.xcconfig"; sourceTree = "<group>"; };
38
+ 9B50A03E1C68D6EA050ADDB4 /* libPods-PackagerTest.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-PackagerTest.a"; sourceTree = BUILT_PRODUCTS_DIR; };
39
+ A0F1D7427B53DCDF0F9C99C4 /* Pods-PackagerTest.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-PackagerTest.debug.xcconfig"; path = "Pods/Target Support Files/Pods-PackagerTest/Pods-PackagerTest.debug.xcconfig"; sourceTree = "<group>"; };
40
+ A1DE56B519AA4A97000339C6 /* PackagerTest.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = PackagerTest.app; sourceTree = BUILT_PRODUCTS_DIR; };
41
+ A1DE56B819AA4A97000339C6 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
42
+ A1DE56BA19AA4A97000339C6 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
43
+ A1DE56BC19AA4A97000339C6 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
44
+ A1DE56C019AA4A97000339C6 /* PackagerTest-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "PackagerTest-Info.plist"; sourceTree = "<group>"; };
45
+ A1DE56C219AA4A97000339C6 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
46
+ A1DE56C419AA4A97000339C6 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
47
+ A1DE56C619AA4A97000339C6 /* PackagerTest-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "PackagerTest-Prefix.pch"; sourceTree = "<group>"; };
48
+ A1DE56C719AA4A97000339C6 /* CPDAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CPDAppDelegate.h; sourceTree = "<group>"; };
49
+ A1DE56C819AA4A97000339C6 /* CPDAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CPDAppDelegate.m; sourceTree = "<group>"; };
50
+ A1DE56CA19AA4A97000339C6 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
51
+ A1DE56D019AA4A97000339C6 /* PackagerTestTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = PackagerTestTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
52
+ A1DE56D119AA4A97000339C6 /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
53
+ A1DE56D919AA4A97000339C6 /* PackagerTestTests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "PackagerTestTests-Info.plist"; sourceTree = "<group>"; };
54
+ A1DE56DB19AA4A97000339C6 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
55
+ A1DE56DD19AA4A97000339C6 /* PackagerTestTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PackagerTestTests.m; sourceTree = "<group>"; };
56
+ A1DE56E719AA4AC4000339C6 /* NikeKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = NikeKit.framework; sourceTree = "<group>"; };
57
+ /* End PBXFileReference section */
58
+
59
+ /* Begin PBXFrameworksBuildPhase section */
60
+ A1DE56B219AA4A97000339C6 /* Frameworks */ = {
61
+ isa = PBXFrameworksBuildPhase;
62
+ buildActionMask = 2147483647;
63
+ files = (
64
+ A1DE56E819AA4AC4000339C6 /* NikeKit.framework in Frameworks */,
65
+ A1DE56BB19AA4A97000339C6 /* CoreGraphics.framework in Frameworks */,
66
+ A1DE56BD19AA4A97000339C6 /* UIKit.framework in Frameworks */,
67
+ A1DE56B919AA4A97000339C6 /* Foundation.framework in Frameworks */,
68
+ 06C49FBB8D44715480415078 /* libPods-PackagerTest.a in Frameworks */,
69
+ );
70
+ runOnlyForDeploymentPostprocessing = 0;
71
+ };
72
+ A1DE56CD19AA4A97000339C6 /* Frameworks */ = {
73
+ isa = PBXFrameworksBuildPhase;
74
+ buildActionMask = 2147483647;
75
+ files = (
76
+ A1DE56D219AA4A97000339C6 /* XCTest.framework in Frameworks */,
77
+ A1DE56D419AA4A97000339C6 /* UIKit.framework in Frameworks */,
78
+ A1DE56D319AA4A97000339C6 /* Foundation.framework in Frameworks */,
79
+ );
80
+ runOnlyForDeploymentPostprocessing = 0;
81
+ };
82
+ /* End PBXFrameworksBuildPhase section */
83
+
84
+ /* Begin PBXGroup section */
85
+ 71D95E6AA2488D1DB8BAC401 /* Pods */ = {
86
+ isa = PBXGroup;
87
+ children = (
88
+ A0F1D7427B53DCDF0F9C99C4 /* Pods-PackagerTest.debug.xcconfig */,
89
+ 551F7332E67FB33B4FD37276 /* Pods-PackagerTest.release.xcconfig */,
90
+ );
91
+ name = Pods;
92
+ sourceTree = "<group>";
93
+ };
94
+ A1DE56AC19AA4A97000339C6 = {
95
+ isa = PBXGroup;
96
+ children = (
97
+ A1DE56BE19AA4A97000339C6 /* PackagerTest */,
98
+ A1DE56D719AA4A97000339C6 /* PackagerTestTests */,
99
+ A1DE56B719AA4A97000339C6 /* Frameworks */,
100
+ A1DE56B619AA4A97000339C6 /* Products */,
101
+ 71D95E6AA2488D1DB8BAC401 /* Pods */,
102
+ );
103
+ sourceTree = "<group>";
104
+ };
105
+ A1DE56B619AA4A97000339C6 /* Products */ = {
106
+ isa = PBXGroup;
107
+ children = (
108
+ A1DE56B519AA4A97000339C6 /* PackagerTest.app */,
109
+ A1DE56D019AA4A97000339C6 /* PackagerTestTests.xctest */,
110
+ );
111
+ name = Products;
112
+ sourceTree = "<group>";
113
+ };
114
+ A1DE56B719AA4A97000339C6 /* Frameworks */ = {
115
+ isa = PBXGroup;
116
+ children = (
117
+ A1DE56B819AA4A97000339C6 /* Foundation.framework */,
118
+ A1DE56BA19AA4A97000339C6 /* CoreGraphics.framework */,
119
+ A1DE56E719AA4AC4000339C6 /* NikeKit.framework */,
120
+ A1DE56BC19AA4A97000339C6 /* UIKit.framework */,
121
+ A1DE56D119AA4A97000339C6 /* XCTest.framework */,
122
+ 9B50A03E1C68D6EA050ADDB4 /* libPods-PackagerTest.a */,
123
+ );
124
+ name = Frameworks;
125
+ sourceTree = "<group>";
126
+ };
127
+ A1DE56BE19AA4A97000339C6 /* PackagerTest */ = {
128
+ isa = PBXGroup;
129
+ children = (
130
+ A1DE56C719AA4A97000339C6 /* CPDAppDelegate.h */,
131
+ A1DE56C819AA4A97000339C6 /* CPDAppDelegate.m */,
132
+ A1DE56CA19AA4A97000339C6 /* Images.xcassets */,
133
+ A1DE56BF19AA4A97000339C6 /* Supporting Files */,
134
+ );
135
+ path = PackagerTest;
136
+ sourceTree = "<group>";
137
+ };
138
+ A1DE56BF19AA4A97000339C6 /* Supporting Files */ = {
139
+ isa = PBXGroup;
140
+ children = (
141
+ A1DE56C019AA4A97000339C6 /* PackagerTest-Info.plist */,
142
+ A1DE56C119AA4A97000339C6 /* InfoPlist.strings */,
143
+ A1DE56C419AA4A97000339C6 /* main.m */,
144
+ A1DE56C619AA4A97000339C6 /* PackagerTest-Prefix.pch */,
145
+ );
146
+ name = "Supporting Files";
147
+ sourceTree = "<group>";
148
+ };
149
+ A1DE56D719AA4A97000339C6 /* PackagerTestTests */ = {
150
+ isa = PBXGroup;
151
+ children = (
152
+ A1DE56DD19AA4A97000339C6 /* PackagerTestTests.m */,
153
+ A1DE56D819AA4A97000339C6 /* Supporting Files */,
154
+ );
155
+ path = PackagerTestTests;
156
+ sourceTree = "<group>";
157
+ };
158
+ A1DE56D819AA4A97000339C6 /* Supporting Files */ = {
159
+ isa = PBXGroup;
160
+ children = (
161
+ A1DE56D919AA4A97000339C6 /* PackagerTestTests-Info.plist */,
162
+ A1DE56DA19AA4A97000339C6 /* InfoPlist.strings */,
163
+ );
164
+ name = "Supporting Files";
165
+ sourceTree = "<group>";
166
+ };
167
+ /* End PBXGroup section */
168
+
169
+ /* Begin PBXNativeTarget section */
170
+ A1DE56B419AA4A97000339C6 /* PackagerTest */ = {
171
+ isa = PBXNativeTarget;
172
+ buildConfigurationList = A1DE56E119AA4A97000339C6 /* Build configuration list for PBXNativeTarget "PackagerTest" */;
173
+ buildPhases = (
174
+ 6639007332D318BA22B78898 /* [CP] Check Pods Manifest.lock */,
175
+ A1DE56B119AA4A97000339C6 /* Sources */,
176
+ A1DE56B219AA4A97000339C6 /* Frameworks */,
177
+ A1DE56B319AA4A97000339C6 /* Resources */,
178
+ E32FAE278D58BC5B3F788CE7 /* [CP] Embed Pods Frameworks */,
179
+ E4E1E4640AC6D4A3D67EC563 /* [CP] Copy Pods Resources */,
180
+ );
181
+ buildRules = (
182
+ );
183
+ dependencies = (
184
+ );
185
+ name = PackagerTest;
186
+ productName = PackagerTest;
187
+ productReference = A1DE56B519AA4A97000339C6 /* PackagerTest.app */;
188
+ productType = "com.apple.product-type.application";
189
+ };
190
+ A1DE56CF19AA4A97000339C6 /* PackagerTestTests */ = {
191
+ isa = PBXNativeTarget;
192
+ buildConfigurationList = A1DE56E419AA4A97000339C6 /* Build configuration list for PBXNativeTarget "PackagerTestTests" */;
193
+ buildPhases = (
194
+ A1DE56CC19AA4A97000339C6 /* Sources */,
195
+ A1DE56CD19AA4A97000339C6 /* Frameworks */,
196
+ A1DE56CE19AA4A97000339C6 /* Resources */,
197
+ );
198
+ buildRules = (
199
+ );
200
+ dependencies = (
201
+ A1DE56D619AA4A97000339C6 /* PBXTargetDependency */,
202
+ );
203
+ name = PackagerTestTests;
204
+ productName = PackagerTestTests;
205
+ productReference = A1DE56D019AA4A97000339C6 /* PackagerTestTests.xctest */;
206
+ productType = "com.apple.product-type.bundle.unit-test";
207
+ };
208
+ /* End PBXNativeTarget section */
209
+
210
+ /* Begin PBXProject section */
211
+ A1DE56AD19AA4A97000339C6 /* Project object */ = {
212
+ isa = PBXProject;
213
+ attributes = {
214
+ CLASSPREFIX = CPD;
215
+ LastUpgradeCheck = 0510;
216
+ ORGANIZATIONNAME = CocoaPods;
217
+ TargetAttributes = {
218
+ A1DE56CF19AA4A97000339C6 = {
219
+ TestTargetID = A1DE56B419AA4A97000339C6;
220
+ };
221
+ };
222
+ };
223
+ buildConfigurationList = A1DE56B019AA4A97000339C6 /* Build configuration list for PBXProject "PackagerTest" */;
224
+ compatibilityVersion = "Xcode 3.2";
225
+ developmentRegion = English;
226
+ hasScannedForEncodings = 0;
227
+ knownRegions = (
228
+ en,
229
+ );
230
+ mainGroup = A1DE56AC19AA4A97000339C6;
231
+ productRefGroup = A1DE56B619AA4A97000339C6 /* Products */;
232
+ projectDirPath = "";
233
+ projectRoot = "";
234
+ targets = (
235
+ A1DE56B419AA4A97000339C6 /* PackagerTest */,
236
+ A1DE56CF19AA4A97000339C6 /* PackagerTestTests */,
237
+ );
238
+ };
239
+ /* End PBXProject section */
240
+
241
+ /* Begin PBXResourcesBuildPhase section */
242
+ A1DE56B319AA4A97000339C6 /* Resources */ = {
243
+ isa = PBXResourcesBuildPhase;
244
+ buildActionMask = 2147483647;
245
+ files = (
246
+ A1DE56C319AA4A97000339C6 /* InfoPlist.strings in Resources */,
247
+ A1DE56CB19AA4A97000339C6 /* Images.xcassets in Resources */,
248
+ );
249
+ runOnlyForDeploymentPostprocessing = 0;
250
+ };
251
+ A1DE56CE19AA4A97000339C6 /* Resources */ = {
252
+ isa = PBXResourcesBuildPhase;
253
+ buildActionMask = 2147483647;
254
+ files = (
255
+ A1DE56DC19AA4A97000339C6 /* InfoPlist.strings in Resources */,
256
+ );
257
+ runOnlyForDeploymentPostprocessing = 0;
258
+ };
259
+ /* End PBXResourcesBuildPhase section */
260
+
261
+ /* Begin PBXShellScriptBuildPhase section */
262
+ 6639007332D318BA22B78898 /* [CP] Check Pods Manifest.lock */ = {
263
+ isa = PBXShellScriptBuildPhase;
264
+ buildActionMask = 2147483647;
265
+ files = (
266
+ );
267
+ inputPaths = (
268
+ );
269
+ name = "[CP] Check Pods Manifest.lock";
270
+ outputPaths = (
271
+ );
272
+ runOnlyForDeploymentPostprocessing = 0;
273
+ shellPath = /bin/sh;
274
+ shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n";
275
+ showEnvVarsInLog = 0;
276
+ };
277
+ E32FAE278D58BC5B3F788CE7 /* [CP] Embed Pods Frameworks */ = {
278
+ isa = PBXShellScriptBuildPhase;
279
+ buildActionMask = 2147483647;
280
+ files = (
281
+ );
282
+ inputPaths = (
283
+ );
284
+ name = "[CP] Embed Pods Frameworks";
285
+ outputPaths = (
286
+ );
287
+ runOnlyForDeploymentPostprocessing = 0;
288
+ shellPath = /bin/sh;
289
+ shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-PackagerTest/Pods-PackagerTest-frameworks.sh\"\n";
290
+ showEnvVarsInLog = 0;
291
+ };
292
+ E4E1E4640AC6D4A3D67EC563 /* [CP] Copy Pods Resources */ = {
293
+ isa = PBXShellScriptBuildPhase;
294
+ buildActionMask = 2147483647;
295
+ files = (
296
+ );
297
+ inputPaths = (
298
+ );
299
+ name = "[CP] Copy Pods Resources";
300
+ outputPaths = (
301
+ );
302
+ runOnlyForDeploymentPostprocessing = 0;
303
+ shellPath = /bin/sh;
304
+ shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-PackagerTest/Pods-PackagerTest-resources.sh\"\n";
305
+ showEnvVarsInLog = 0;
306
+ };
307
+ /* End PBXShellScriptBuildPhase section */
308
+
309
+ /* Begin PBXSourcesBuildPhase section */
310
+ A1DE56B119AA4A97000339C6 /* Sources */ = {
311
+ isa = PBXSourcesBuildPhase;
312
+ buildActionMask = 2147483647;
313
+ files = (
314
+ A1DE56C919AA4A97000339C6 /* CPDAppDelegate.m in Sources */,
315
+ A1DE56C519AA4A97000339C6 /* main.m in Sources */,
316
+ );
317
+ runOnlyForDeploymentPostprocessing = 0;
318
+ };
319
+ A1DE56CC19AA4A97000339C6 /* Sources */ = {
320
+ isa = PBXSourcesBuildPhase;
321
+ buildActionMask = 2147483647;
322
+ files = (
323
+ A1DE56DE19AA4A97000339C6 /* PackagerTestTests.m in Sources */,
324
+ );
325
+ runOnlyForDeploymentPostprocessing = 0;
326
+ };
327
+ /* End PBXSourcesBuildPhase section */
328
+
329
+ /* Begin PBXTargetDependency section */
330
+ A1DE56D619AA4A97000339C6 /* PBXTargetDependency */ = {
331
+ isa = PBXTargetDependency;
332
+ target = A1DE56B419AA4A97000339C6 /* PackagerTest */;
333
+ targetProxy = A1DE56D519AA4A97000339C6 /* PBXContainerItemProxy */;
334
+ };
335
+ /* End PBXTargetDependency section */
336
+
337
+ /* Begin PBXVariantGroup section */
338
+ A1DE56C119AA4A97000339C6 /* InfoPlist.strings */ = {
339
+ isa = PBXVariantGroup;
340
+ children = (
341
+ A1DE56C219AA4A97000339C6 /* en */,
342
+ );
343
+ name = InfoPlist.strings;
344
+ sourceTree = "<group>";
345
+ };
346
+ A1DE56DA19AA4A97000339C6 /* InfoPlist.strings */ = {
347
+ isa = PBXVariantGroup;
348
+ children = (
349
+ A1DE56DB19AA4A97000339C6 /* en */,
350
+ );
351
+ name = InfoPlist.strings;
352
+ sourceTree = "<group>";
353
+ };
354
+ /* End PBXVariantGroup section */
355
+
356
+ /* Begin XCBuildConfiguration section */
357
+ A1DE56DF19AA4A97000339C6 /* Debug */ = {
358
+ isa = XCBuildConfiguration;
359
+ buildSettings = {
360
+ ALWAYS_SEARCH_USER_PATHS = NO;
361
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
362
+ CLANG_CXX_LIBRARY = "libc++";
363
+ CLANG_ENABLE_MODULES = YES;
364
+ CLANG_ENABLE_OBJC_ARC = YES;
365
+ CLANG_WARN_BOOL_CONVERSION = YES;
366
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
367
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
368
+ CLANG_WARN_EMPTY_BODY = YES;
369
+ CLANG_WARN_ENUM_CONVERSION = YES;
370
+ CLANG_WARN_INT_CONVERSION = YES;
371
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
372
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
373
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
374
+ COPY_PHASE_STRIP = NO;
375
+ GCC_C_LANGUAGE_STANDARD = gnu99;
376
+ GCC_DYNAMIC_NO_PIC = NO;
377
+ GCC_OPTIMIZATION_LEVEL = 0;
378
+ GCC_PREPROCESSOR_DEFINITIONS = (
379
+ "DEBUG=1",
380
+ "$(inherited)",
381
+ );
382
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
383
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
384
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
385
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
386
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
387
+ GCC_WARN_UNUSED_FUNCTION = YES;
388
+ GCC_WARN_UNUSED_VARIABLE = YES;
389
+ IPHONEOS_DEPLOYMENT_TARGET = 8.0;
390
+ ONLY_ACTIVE_ARCH = YES;
391
+ SDKROOT = iphoneos;
392
+ };
393
+ name = Debug;
394
+ };
395
+ A1DE56E019AA4A97000339C6 /* Release */ = {
396
+ isa = XCBuildConfiguration;
397
+ buildSettings = {
398
+ ALWAYS_SEARCH_USER_PATHS = NO;
399
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
400
+ CLANG_CXX_LIBRARY = "libc++";
401
+ CLANG_ENABLE_MODULES = YES;
402
+ CLANG_ENABLE_OBJC_ARC = YES;
403
+ CLANG_WARN_BOOL_CONVERSION = YES;
404
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
405
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
406
+ CLANG_WARN_EMPTY_BODY = YES;
407
+ CLANG_WARN_ENUM_CONVERSION = YES;
408
+ CLANG_WARN_INT_CONVERSION = YES;
409
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
410
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
411
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
412
+ COPY_PHASE_STRIP = YES;
413
+ ENABLE_NS_ASSERTIONS = NO;
414
+ GCC_C_LANGUAGE_STANDARD = gnu99;
415
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
416
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
417
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
418
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
419
+ GCC_WARN_UNUSED_FUNCTION = YES;
420
+ GCC_WARN_UNUSED_VARIABLE = YES;
421
+ IPHONEOS_DEPLOYMENT_TARGET = 8.0;
422
+ SDKROOT = iphoneos;
423
+ VALIDATE_PRODUCT = YES;
424
+ };
425
+ name = Release;
426
+ };
427
+ A1DE56E219AA4A97000339C6 /* Debug */ = {
428
+ isa = XCBuildConfiguration;
429
+ baseConfigurationReference = A0F1D7427B53DCDF0F9C99C4 /* Pods-PackagerTest.debug.xcconfig */;
430
+ buildSettings = {
431
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
432
+ ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
433
+ FRAMEWORK_SEARCH_PATHS = (
434
+ "$(inherited)",
435
+ "$(PROJECT_DIR)",
436
+ );
437
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
438
+ GCC_PREFIX_HEADER = "PackagerTest/PackagerTest-Prefix.pch";
439
+ INFOPLIST_FILE = "PackagerTest/PackagerTest-Info.plist";
440
+ PRODUCT_NAME = "$(TARGET_NAME)";
441
+ WRAPPER_EXTENSION = app;
442
+ };
443
+ name = Debug;
444
+ };
445
+ A1DE56E319AA4A97000339C6 /* Release */ = {
446
+ isa = XCBuildConfiguration;
447
+ baseConfigurationReference = 551F7332E67FB33B4FD37276 /* Pods-PackagerTest.release.xcconfig */;
448
+ buildSettings = {
449
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
450
+ ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
451
+ FRAMEWORK_SEARCH_PATHS = (
452
+ "$(inherited)",
453
+ "$(PROJECT_DIR)",
454
+ );
455
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
456
+ GCC_PREFIX_HEADER = "PackagerTest/PackagerTest-Prefix.pch";
457
+ INFOPLIST_FILE = "PackagerTest/PackagerTest-Info.plist";
458
+ PRODUCT_NAME = "$(TARGET_NAME)";
459
+ WRAPPER_EXTENSION = app;
460
+ };
461
+ name = Release;
462
+ };
463
+ A1DE56E519AA4A97000339C6 /* Debug */ = {
464
+ isa = XCBuildConfiguration;
465
+ buildSettings = {
466
+ BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/PackagerTest.app/PackagerTest";
467
+ FRAMEWORK_SEARCH_PATHS = (
468
+ "$(SDKROOT)/Developer/Library/Frameworks",
469
+ "$(inherited)",
470
+ "$(DEVELOPER_FRAMEWORKS_DIR)",
471
+ );
472
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
473
+ GCC_PREFIX_HEADER = "PackagerTest/PackagerTest-Prefix.pch";
474
+ GCC_PREPROCESSOR_DEFINITIONS = (
475
+ "DEBUG=1",
476
+ "$(inherited)",
477
+ );
478
+ INFOPLIST_FILE = "PackagerTestTests/PackagerTestTests-Info.plist";
479
+ PRODUCT_NAME = "$(TARGET_NAME)";
480
+ TEST_HOST = "$(BUNDLE_LOADER)";
481
+ WRAPPER_EXTENSION = xctest;
482
+ };
483
+ name = Debug;
484
+ };
485
+ A1DE56E619AA4A97000339C6 /* Release */ = {
486
+ isa = XCBuildConfiguration;
487
+ buildSettings = {
488
+ BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/PackagerTest.app/PackagerTest";
489
+ FRAMEWORK_SEARCH_PATHS = (
490
+ "$(SDKROOT)/Developer/Library/Frameworks",
491
+ "$(inherited)",
492
+ "$(DEVELOPER_FRAMEWORKS_DIR)",
493
+ );
494
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
495
+ GCC_PREFIX_HEADER = "PackagerTest/PackagerTest-Prefix.pch";
496
+ INFOPLIST_FILE = "PackagerTestTests/PackagerTestTests-Info.plist";
497
+ PRODUCT_NAME = "$(TARGET_NAME)";
498
+ TEST_HOST = "$(BUNDLE_LOADER)";
499
+ WRAPPER_EXTENSION = xctest;
500
+ };
501
+ name = Release;
502
+ };
503
+ /* End XCBuildConfiguration section */
504
+
505
+ /* Begin XCConfigurationList section */
506
+ A1DE56B019AA4A97000339C6 /* Build configuration list for PBXProject "PackagerTest" */ = {
507
+ isa = XCConfigurationList;
508
+ buildConfigurations = (
509
+ A1DE56DF19AA4A97000339C6 /* Debug */,
510
+ A1DE56E019AA4A97000339C6 /* Release */,
511
+ );
512
+ defaultConfigurationIsVisible = 0;
513
+ defaultConfigurationName = Release;
514
+ };
515
+ A1DE56E119AA4A97000339C6 /* Build configuration list for PBXNativeTarget "PackagerTest" */ = {
516
+ isa = XCConfigurationList;
517
+ buildConfigurations = (
518
+ A1DE56E219AA4A97000339C6 /* Debug */,
519
+ A1DE56E319AA4A97000339C6 /* Release */,
520
+ );
521
+ defaultConfigurationIsVisible = 0;
522
+ defaultConfigurationName = Release;
523
+ };
524
+ A1DE56E419AA4A97000339C6 /* Build configuration list for PBXNativeTarget "PackagerTestTests" */ = {
525
+ isa = XCConfigurationList;
526
+ buildConfigurations = (
527
+ A1DE56E519AA4A97000339C6 /* Debug */,
528
+ A1DE56E619AA4A97000339C6 /* Release */,
529
+ );
530
+ defaultConfigurationIsVisible = 0;
531
+ defaultConfigurationName = Release;
532
+ };
533
+ /* End XCConfigurationList section */
534
+ };
535
+ rootObject = A1DE56AD19AA4A97000339C6 /* Project object */;
536
+ }