cocoapods-packager-tal 1.5.0.19

Sign up to get free protection for your applications and to get access to all the features.
Files changed (79) hide show
  1. checksums.yaml +7 -0
  2. data/.coveralls.yml +1 -0
  3. data/.gitignore +5 -0
  4. data/.rubocop-cocoapods.yml +71 -0
  5. data/.rubocop.yml +38 -0
  6. data/.travis.yml +17 -0
  7. data/Gemfile +12 -0
  8. data/Gemfile.lock +131 -0
  9. data/LICENSE +22 -0
  10. data/README.md +42 -0
  11. data/Rakefile +29 -0
  12. data/cocoapods-packager.gemspec +22 -0
  13. data/lib/cocoapods-packager/builder.rb +409 -0
  14. data/lib/cocoapods-packager/framework.rb +66 -0
  15. data/lib/cocoapods-packager/mangle.rb +32 -0
  16. data/lib/cocoapods-packager/pod_utils.rb +324 -0
  17. data/lib/cocoapods-packager/spec_builder.rb +171 -0
  18. data/lib/cocoapods-packager/symbols.rb +42 -0
  19. data/lib/cocoapods-packager/tal_installer.rb +33 -0
  20. data/lib/cocoapods-packager/tal_target_validator.rb +62 -0
  21. data/lib/cocoapods-packager/user_interface/build_failed_report.rb +15 -0
  22. data/lib/cocoapods_packager.rb +5 -0
  23. data/lib/cocoapods_plugin.rb +16 -0
  24. data/lib/pod/command/package.rb +240 -0
  25. data/scripts/lstconst.sh +9 -0
  26. data/scripts/lstsym.sh +8 -0
  27. data/spec/command/error_spec.rb +81 -0
  28. data/spec/command/package_spec.rb +420 -0
  29. data/spec/command/subspecs_spec.rb +30 -0
  30. data/spec/fixtures/Archs.podspec +13 -0
  31. data/spec/fixtures/Builder.podspec +25 -0
  32. data/spec/fixtures/CPDColors.podspec +19 -0
  33. data/spec/fixtures/FH.podspec +18 -0
  34. data/spec/fixtures/KFData.podspec +73 -0
  35. data/spec/fixtures/LibraryConsumerDemo/.gitignore +22 -0
  36. data/spec/fixtures/LibraryConsumerDemo/LibraryConsumer.xcodeproj/project.pbxproj +311 -0
  37. data/spec/fixtures/LibraryConsumerDemo/LibraryConsumer.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  38. data/spec/fixtures/LibraryConsumerDemo/LibraryConsumer.xcodeproj/xcshareddata/xcschemes/LibraryConsumer.xcscheme +100 -0
  39. data/spec/fixtures/LibraryConsumerDemo/LibraryConsumer/AppDelegate.h +17 -0
  40. data/spec/fixtures/LibraryConsumerDemo/LibraryConsumer/AppDelegate.m +27 -0
  41. data/spec/fixtures/LibraryConsumerDemo/LibraryConsumer/Info.plist +40 -0
  42. data/spec/fixtures/LibraryConsumerDemo/LibraryConsumer/main.m +16 -0
  43. data/spec/fixtures/LibraryConsumerDemo/Podfile +5 -0
  44. data/spec/fixtures/LibraryDemo.podspec +14 -0
  45. data/spec/fixtures/LocalSources/LICENSE +0 -0
  46. data/spec/fixtures/LocalSources/LocalNikeKit.h +4 -0
  47. data/spec/fixtures/LocalSources/LocalNikeKit.m +9 -0
  48. data/spec/fixtures/LocalSources/LocalNikeKit.podspec +19 -0
  49. data/spec/fixtures/NikeKit.podspec +19 -0
  50. data/spec/fixtures/OpenSans.podspec +18 -0
  51. data/spec/fixtures/PackagerTest/.gitignore +21 -0
  52. data/spec/fixtures/PackagerTest/PackagerTest.xcodeproj/project.pbxproj +507 -0
  53. data/spec/fixtures/PackagerTest/PackagerTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  54. data/spec/fixtures/PackagerTest/PackagerTest.xcodeproj/xcshareddata/xcschemes/PackagerTest.xcscheme +110 -0
  55. data/spec/fixtures/PackagerTest/PackagerTest.xcworkspace/contents.xcworkspacedata +1 -0
  56. data/spec/fixtures/PackagerTest/PackagerTest/CPDAppDelegate.h +15 -0
  57. data/spec/fixtures/PackagerTest/PackagerTest/CPDAppDelegate.m +49 -0
  58. data/spec/fixtures/PackagerTest/PackagerTest/Images.xcassets/AppIcon.appiconset/Contents.json +23 -0
  59. data/spec/fixtures/PackagerTest/PackagerTest/Images.xcassets/LaunchImage.launchimage/Contents.json +23 -0
  60. data/spec/fixtures/PackagerTest/PackagerTest/PackagerTest-Info.plist +38 -0
  61. data/spec/fixtures/PackagerTest/PackagerTest/PackagerTest-Prefix.pch +16 -0
  62. data/spec/fixtures/PackagerTest/PackagerTest/en.lproj/InfoPlist.strings +2 -0
  63. data/spec/fixtures/PackagerTest/PackagerTest/main.m +18 -0
  64. data/spec/fixtures/PackagerTest/PackagerTestTests/PackagerTestTests-Info.plist +22 -0
  65. data/spec/fixtures/PackagerTest/PackagerTestTests/PackagerTestTests.m +34 -0
  66. data/spec/fixtures/PackagerTest/PackagerTestTests/en.lproj/InfoPlist.strings +2 -0
  67. data/spec/fixtures/PackagerTest/Podfile +10 -0
  68. data/spec/fixtures/PackagerTest/Podfile.lock +36 -0
  69. data/spec/fixtures/Weakly.podspec +13 -0
  70. data/spec/fixtures/a.podspec +19 -0
  71. data/spec/fixtures/foo-bar.podspec +19 -0
  72. data/spec/fixtures/layer-client-messaging-schema.podspec +13 -0
  73. data/spec/integration/project_spec.rb +70 -0
  74. data/spec/spec_helper.rb +79 -0
  75. data/spec/unit/pod/utils_spec.rb +58 -0
  76. data/spec/unit/specification/builder_spec.rb +62 -0
  77. data/spec/unit/specification/spec_builder_spec.rb +61 -0
  78. data/spec/unit/user_interface/build_failed_report_spec.rb +11 -0
  79. metadata +223 -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
File without changes
@@ -0,0 +1,4 @@
1
+ #import <Foundation/Foundation.h>
2
+
3
+ @interface LocalNikeKit : NSObject
4
+ @end
@@ -0,0 +1,9 @@
1
+ #import "LocalNikeKit.h"
2
+
3
+ @implementation LocalNikeKit
4
+
5
+ - (void)localMethod {
6
+
7
+ }
8
+
9
+ @end
@@ -0,0 +1,19 @@
1
+ Pod::Spec.new do |s|
2
+ s.name = 'LocalNikeKit'
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,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,507 @@
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
+ );
179
+ buildRules = (
180
+ );
181
+ dependencies = (
182
+ );
183
+ name = PackagerTest;
184
+ productName = PackagerTest;
185
+ productReference = A1DE56B519AA4A97000339C6 /* PackagerTest.app */;
186
+ productType = "com.apple.product-type.application";
187
+ };
188
+ A1DE56CF19AA4A97000339C6 /* PackagerTestTests */ = {
189
+ isa = PBXNativeTarget;
190
+ buildConfigurationList = A1DE56E419AA4A97000339C6 /* Build configuration list for PBXNativeTarget "PackagerTestTests" */;
191
+ buildPhases = (
192
+ A1DE56CC19AA4A97000339C6 /* Sources */,
193
+ A1DE56CD19AA4A97000339C6 /* Frameworks */,
194
+ A1DE56CE19AA4A97000339C6 /* Resources */,
195
+ );
196
+ buildRules = (
197
+ );
198
+ dependencies = (
199
+ A1DE56D619AA4A97000339C6 /* PBXTargetDependency */,
200
+ );
201
+ name = PackagerTestTests;
202
+ productName = PackagerTestTests;
203
+ productReference = A1DE56D019AA4A97000339C6 /* PackagerTestTests.xctest */;
204
+ productType = "com.apple.product-type.bundle.unit-test";
205
+ };
206
+ /* End PBXNativeTarget section */
207
+
208
+ /* Begin PBXProject section */
209
+ A1DE56AD19AA4A97000339C6 /* Project object */ = {
210
+ isa = PBXProject;
211
+ attributes = {
212
+ CLASSPREFIX = CPD;
213
+ LastUpgradeCheck = 0510;
214
+ ORGANIZATIONNAME = CocoaPods;
215
+ TargetAttributes = {
216
+ A1DE56CF19AA4A97000339C6 = {
217
+ TestTargetID = A1DE56B419AA4A97000339C6;
218
+ };
219
+ };
220
+ };
221
+ buildConfigurationList = A1DE56B019AA4A97000339C6 /* Build configuration list for PBXProject "PackagerTest" */;
222
+ compatibilityVersion = "Xcode 3.2";
223
+ developmentRegion = English;
224
+ hasScannedForEncodings = 0;
225
+ knownRegions = (
226
+ en,
227
+ );
228
+ mainGroup = A1DE56AC19AA4A97000339C6;
229
+ productRefGroup = A1DE56B619AA4A97000339C6 /* Products */;
230
+ projectDirPath = "";
231
+ projectRoot = "";
232
+ targets = (
233
+ A1DE56B419AA4A97000339C6 /* PackagerTest */,
234
+ A1DE56CF19AA4A97000339C6 /* PackagerTestTests */,
235
+ );
236
+ };
237
+ /* End PBXProject section */
238
+
239
+ /* Begin PBXResourcesBuildPhase section */
240
+ A1DE56B319AA4A97000339C6 /* Resources */ = {
241
+ isa = PBXResourcesBuildPhase;
242
+ buildActionMask = 2147483647;
243
+ files = (
244
+ A1DE56C319AA4A97000339C6 /* InfoPlist.strings in Resources */,
245
+ A1DE56CB19AA4A97000339C6 /* Images.xcassets in Resources */,
246
+ );
247
+ runOnlyForDeploymentPostprocessing = 0;
248
+ };
249
+ A1DE56CE19AA4A97000339C6 /* Resources */ = {
250
+ isa = PBXResourcesBuildPhase;
251
+ buildActionMask = 2147483647;
252
+ files = (
253
+ A1DE56DC19AA4A97000339C6 /* InfoPlist.strings in Resources */,
254
+ );
255
+ runOnlyForDeploymentPostprocessing = 0;
256
+ };
257
+ /* End PBXResourcesBuildPhase section */
258
+
259
+ /* Begin PBXShellScriptBuildPhase section */
260
+ 6639007332D318BA22B78898 /* [CP] Check Pods Manifest.lock */ = {
261
+ isa = PBXShellScriptBuildPhase;
262
+ buildActionMask = 2147483647;
263
+ files = (
264
+ );
265
+ inputPaths = (
266
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
267
+ "${PODS_ROOT}/Manifest.lock",
268
+ );
269
+ name = "[CP] Check Pods Manifest.lock";
270
+ outputPaths = (
271
+ "$(DERIVED_FILE_DIR)/Pods-PackagerTest-checkManifestLockResult.txt",
272
+ );
273
+ runOnlyForDeploymentPostprocessing = 0;
274
+ shellPath = /bin/sh;
275
+ shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/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# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
276
+ showEnvVarsInLog = 0;
277
+ };
278
+ /* End PBXShellScriptBuildPhase section */
279
+
280
+ /* Begin PBXSourcesBuildPhase section */
281
+ A1DE56B119AA4A97000339C6 /* Sources */ = {
282
+ isa = PBXSourcesBuildPhase;
283
+ buildActionMask = 2147483647;
284
+ files = (
285
+ A1DE56C919AA4A97000339C6 /* CPDAppDelegate.m in Sources */,
286
+ A1DE56C519AA4A97000339C6 /* main.m in Sources */,
287
+ );
288
+ runOnlyForDeploymentPostprocessing = 0;
289
+ };
290
+ A1DE56CC19AA4A97000339C6 /* Sources */ = {
291
+ isa = PBXSourcesBuildPhase;
292
+ buildActionMask = 2147483647;
293
+ files = (
294
+ A1DE56DE19AA4A97000339C6 /* PackagerTestTests.m in Sources */,
295
+ );
296
+ runOnlyForDeploymentPostprocessing = 0;
297
+ };
298
+ /* End PBXSourcesBuildPhase section */
299
+
300
+ /* Begin PBXTargetDependency section */
301
+ A1DE56D619AA4A97000339C6 /* PBXTargetDependency */ = {
302
+ isa = PBXTargetDependency;
303
+ target = A1DE56B419AA4A97000339C6 /* PackagerTest */;
304
+ targetProxy = A1DE56D519AA4A97000339C6 /* PBXContainerItemProxy */;
305
+ };
306
+ /* End PBXTargetDependency section */
307
+
308
+ /* Begin PBXVariantGroup section */
309
+ A1DE56C119AA4A97000339C6 /* InfoPlist.strings */ = {
310
+ isa = PBXVariantGroup;
311
+ children = (
312
+ A1DE56C219AA4A97000339C6 /* en */,
313
+ );
314
+ name = InfoPlist.strings;
315
+ sourceTree = "<group>";
316
+ };
317
+ A1DE56DA19AA4A97000339C6 /* InfoPlist.strings */ = {
318
+ isa = PBXVariantGroup;
319
+ children = (
320
+ A1DE56DB19AA4A97000339C6 /* en */,
321
+ );
322
+ name = InfoPlist.strings;
323
+ sourceTree = "<group>";
324
+ };
325
+ /* End PBXVariantGroup section */
326
+
327
+ /* Begin XCBuildConfiguration section */
328
+ A1DE56DF19AA4A97000339C6 /* Debug */ = {
329
+ isa = XCBuildConfiguration;
330
+ buildSettings = {
331
+ ALWAYS_SEARCH_USER_PATHS = NO;
332
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
333
+ CLANG_CXX_LIBRARY = "libc++";
334
+ CLANG_ENABLE_MODULES = YES;
335
+ CLANG_ENABLE_OBJC_ARC = YES;
336
+ CLANG_WARN_BOOL_CONVERSION = YES;
337
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
338
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
339
+ CLANG_WARN_EMPTY_BODY = YES;
340
+ CLANG_WARN_ENUM_CONVERSION = YES;
341
+ CLANG_WARN_INT_CONVERSION = YES;
342
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
343
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
344
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
345
+ COPY_PHASE_STRIP = NO;
346
+ GCC_C_LANGUAGE_STANDARD = gnu99;
347
+ GCC_DYNAMIC_NO_PIC = NO;
348
+ GCC_OPTIMIZATION_LEVEL = 0;
349
+ GCC_PREPROCESSOR_DEFINITIONS = (
350
+ "DEBUG=1",
351
+ "$(inherited)",
352
+ );
353
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
354
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
355
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
356
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
357
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
358
+ GCC_WARN_UNUSED_FUNCTION = YES;
359
+ GCC_WARN_UNUSED_VARIABLE = YES;
360
+ IPHONEOS_DEPLOYMENT_TARGET = 8.0;
361
+ ONLY_ACTIVE_ARCH = YES;
362
+ SDKROOT = iphoneos;
363
+ };
364
+ name = Debug;
365
+ };
366
+ A1DE56E019AA4A97000339C6 /* Release */ = {
367
+ isa = XCBuildConfiguration;
368
+ buildSettings = {
369
+ ALWAYS_SEARCH_USER_PATHS = NO;
370
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
371
+ CLANG_CXX_LIBRARY = "libc++";
372
+ CLANG_ENABLE_MODULES = YES;
373
+ CLANG_ENABLE_OBJC_ARC = YES;
374
+ CLANG_WARN_BOOL_CONVERSION = YES;
375
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
376
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
377
+ CLANG_WARN_EMPTY_BODY = YES;
378
+ CLANG_WARN_ENUM_CONVERSION = YES;
379
+ CLANG_WARN_INT_CONVERSION = YES;
380
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
381
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
382
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
383
+ COPY_PHASE_STRIP = YES;
384
+ ENABLE_NS_ASSERTIONS = NO;
385
+ GCC_C_LANGUAGE_STANDARD = gnu99;
386
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
387
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
388
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
389
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
390
+ GCC_WARN_UNUSED_FUNCTION = YES;
391
+ GCC_WARN_UNUSED_VARIABLE = YES;
392
+ IPHONEOS_DEPLOYMENT_TARGET = 8.0;
393
+ SDKROOT = iphoneos;
394
+ VALIDATE_PRODUCT = YES;
395
+ };
396
+ name = Release;
397
+ };
398
+ A1DE56E219AA4A97000339C6 /* Debug */ = {
399
+ isa = XCBuildConfiguration;
400
+ baseConfigurationReference = A0F1D7427B53DCDF0F9C99C4 /* Pods-PackagerTest.debug.xcconfig */;
401
+ buildSettings = {
402
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
403
+ ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
404
+ FRAMEWORK_SEARCH_PATHS = (
405
+ "$(inherited)",
406
+ "$(PROJECT_DIR)",
407
+ );
408
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
409
+ GCC_PREFIX_HEADER = "PackagerTest/PackagerTest-Prefix.pch";
410
+ INFOPLIST_FILE = "PackagerTest/PackagerTest-Info.plist";
411
+ PRODUCT_NAME = "$(TARGET_NAME)";
412
+ WRAPPER_EXTENSION = app;
413
+ };
414
+ name = Debug;
415
+ };
416
+ A1DE56E319AA4A97000339C6 /* Release */ = {
417
+ isa = XCBuildConfiguration;
418
+ baseConfigurationReference = 551F7332E67FB33B4FD37276 /* Pods-PackagerTest.release.xcconfig */;
419
+ buildSettings = {
420
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
421
+ ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
422
+ FRAMEWORK_SEARCH_PATHS = (
423
+ "$(inherited)",
424
+ "$(PROJECT_DIR)",
425
+ );
426
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
427
+ GCC_PREFIX_HEADER = "PackagerTest/PackagerTest-Prefix.pch";
428
+ INFOPLIST_FILE = "PackagerTest/PackagerTest-Info.plist";
429
+ PRODUCT_NAME = "$(TARGET_NAME)";
430
+ WRAPPER_EXTENSION = app;
431
+ };
432
+ name = Release;
433
+ };
434
+ A1DE56E519AA4A97000339C6 /* Debug */ = {
435
+ isa = XCBuildConfiguration;
436
+ buildSettings = {
437
+ BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/PackagerTest.app/PackagerTest";
438
+ FRAMEWORK_SEARCH_PATHS = (
439
+ "$(SDKROOT)/Developer/Library/Frameworks",
440
+ "$(inherited)",
441
+ "$(DEVELOPER_FRAMEWORKS_DIR)",
442
+ );
443
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
444
+ GCC_PREFIX_HEADER = "PackagerTest/PackagerTest-Prefix.pch";
445
+ GCC_PREPROCESSOR_DEFINITIONS = (
446
+ "DEBUG=1",
447
+ "$(inherited)",
448
+ );
449
+ INFOPLIST_FILE = "PackagerTestTests/PackagerTestTests-Info.plist";
450
+ PRODUCT_NAME = "$(TARGET_NAME)";
451
+ TEST_HOST = "$(BUNDLE_LOADER)";
452
+ WRAPPER_EXTENSION = xctest;
453
+ };
454
+ name = Debug;
455
+ };
456
+ A1DE56E619AA4A97000339C6 /* Release */ = {
457
+ isa = XCBuildConfiguration;
458
+ buildSettings = {
459
+ BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/PackagerTest.app/PackagerTest";
460
+ FRAMEWORK_SEARCH_PATHS = (
461
+ "$(SDKROOT)/Developer/Library/Frameworks",
462
+ "$(inherited)",
463
+ "$(DEVELOPER_FRAMEWORKS_DIR)",
464
+ );
465
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
466
+ GCC_PREFIX_HEADER = "PackagerTest/PackagerTest-Prefix.pch";
467
+ INFOPLIST_FILE = "PackagerTestTests/PackagerTestTests-Info.plist";
468
+ PRODUCT_NAME = "$(TARGET_NAME)";
469
+ TEST_HOST = "$(BUNDLE_LOADER)";
470
+ WRAPPER_EXTENSION = xctest;
471
+ };
472
+ name = Release;
473
+ };
474
+ /* End XCBuildConfiguration section */
475
+
476
+ /* Begin XCConfigurationList section */
477
+ A1DE56B019AA4A97000339C6 /* Build configuration list for PBXProject "PackagerTest" */ = {
478
+ isa = XCConfigurationList;
479
+ buildConfigurations = (
480
+ A1DE56DF19AA4A97000339C6 /* Debug */,
481
+ A1DE56E019AA4A97000339C6 /* Release */,
482
+ );
483
+ defaultConfigurationIsVisible = 0;
484
+ defaultConfigurationName = Release;
485
+ };
486
+ A1DE56E119AA4A97000339C6 /* Build configuration list for PBXNativeTarget "PackagerTest" */ = {
487
+ isa = XCConfigurationList;
488
+ buildConfigurations = (
489
+ A1DE56E219AA4A97000339C6 /* Debug */,
490
+ A1DE56E319AA4A97000339C6 /* Release */,
491
+ );
492
+ defaultConfigurationIsVisible = 0;
493
+ defaultConfigurationName = Release;
494
+ };
495
+ A1DE56E419AA4A97000339C6 /* Build configuration list for PBXNativeTarget "PackagerTestTests" */ = {
496
+ isa = XCConfigurationList;
497
+ buildConfigurations = (
498
+ A1DE56E519AA4A97000339C6 /* Debug */,
499
+ A1DE56E619AA4A97000339C6 /* Release */,
500
+ );
501
+ defaultConfigurationIsVisible = 0;
502
+ defaultConfigurationName = Release;
503
+ };
504
+ /* End XCConfigurationList section */
505
+ };
506
+ rootObject = A1DE56AD19AA4A97000339C6 /* Project object */;
507
+ }