cocoapods-packager-clone-master 1.5.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (78) hide show
  1. checksums.yaml +7 -0
  2. data/.coveralls.yml +1 -0
  3. data/.gitignore +4 -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 +129 -0
  9. data/LICENSE +22 -0
  10. data/README.md +42 -0
  11. data/Rakefile +29 -0
  12. data/cocoapods-packager.gemspec +21 -0
  13. data/lib/cocoapods-packager/builder.rb +334 -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 +244 -0
  17. data/lib/cocoapods-packager/spec_builder.rb +63 -0
  18. data/lib/cocoapods-packager/symbols.rb +42 -0
  19. data/lib/cocoapods-packager/user_interface/build_failed_report.rb +15 -0
  20. data/lib/cocoapods_packager.rb +5 -0
  21. data/lib/cocoapods_plugin.rb +8 -0
  22. data/lib/pod/command/package.rb +177 -0
  23. data/scripts/lstconst.sh +9 -0
  24. data/scripts/lstsym.sh +8 -0
  25. data/spec/command/error_spec.rb +81 -0
  26. data/spec/command/package_spec.rb +420 -0
  27. data/spec/command/subspecs_spec.rb +30 -0
  28. data/spec/fixtures/Archs.podspec +13 -0
  29. data/spec/fixtures/Builder.podspec +25 -0
  30. data/spec/fixtures/CPDColors.podspec +19 -0
  31. data/spec/fixtures/FH.podspec +18 -0
  32. data/spec/fixtures/KFData.podspec +73 -0
  33. data/spec/fixtures/LibraryConsumerDemo/.gitignore +22 -0
  34. data/spec/fixtures/LibraryConsumerDemo/LibraryConsumer/AppDelegate.h +17 -0
  35. data/spec/fixtures/LibraryConsumerDemo/LibraryConsumer/AppDelegate.m +27 -0
  36. data/spec/fixtures/LibraryConsumerDemo/LibraryConsumer/Info.plist +40 -0
  37. data/spec/fixtures/LibraryConsumerDemo/LibraryConsumer/main.m +16 -0
  38. data/spec/fixtures/LibraryConsumerDemo/LibraryConsumer.xcodeproj/project.pbxproj +311 -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.xcworkspace/contents.xcworkspacedata +10 -0
  42. data/spec/fixtures/LibraryConsumerDemo/Podfile +5 -0
  43. data/spec/fixtures/LibraryDemo.podspec +14 -0
  44. data/spec/fixtures/LocalSources/LICENSE +0 -0
  45. data/spec/fixtures/LocalSources/LocalNikeKit.h +4 -0
  46. data/spec/fixtures/LocalSources/LocalNikeKit.m +9 -0
  47. data/spec/fixtures/LocalSources/LocalNikeKit.podspec +19 -0
  48. data/spec/fixtures/NikeKit.podspec +19 -0
  49. data/spec/fixtures/OpenSans.podspec +18 -0
  50. data/spec/fixtures/PackagerTest/.gitignore +21 -0
  51. data/spec/fixtures/PackagerTest/PackagerTest/CPDAppDelegate.h +15 -0
  52. data/spec/fixtures/PackagerTest/PackagerTest/CPDAppDelegate.m +49 -0
  53. data/spec/fixtures/PackagerTest/PackagerTest/Images.xcassets/AppIcon.appiconset/Contents.json +23 -0
  54. data/spec/fixtures/PackagerTest/PackagerTest/Images.xcassets/LaunchImage.launchimage/Contents.json +23 -0
  55. data/spec/fixtures/PackagerTest/PackagerTest/PackagerTest-Info.plist +38 -0
  56. data/spec/fixtures/PackagerTest/PackagerTest/PackagerTest-Prefix.pch +16 -0
  57. data/spec/fixtures/PackagerTest/PackagerTest/en.lproj/InfoPlist.strings +2 -0
  58. data/spec/fixtures/PackagerTest/PackagerTest/main.m +18 -0
  59. data/spec/fixtures/PackagerTest/PackagerTest.xcodeproj/project.pbxproj +507 -0
  60. data/spec/fixtures/PackagerTest/PackagerTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  61. data/spec/fixtures/PackagerTest/PackagerTest.xcodeproj/xcshareddata/xcschemes/PackagerTest.xcscheme +110 -0
  62. data/spec/fixtures/PackagerTest/PackagerTest.xcworkspace/contents.xcworkspacedata +1 -0
  63. data/spec/fixtures/PackagerTest/PackagerTestTests/PackagerTestTests-Info.plist +22 -0
  64. data/spec/fixtures/PackagerTest/PackagerTestTests/PackagerTestTests.m +34 -0
  65. data/spec/fixtures/PackagerTest/PackagerTestTests/en.lproj/InfoPlist.strings +2 -0
  66. data/spec/fixtures/PackagerTest/Podfile +10 -0
  67. data/spec/fixtures/PackagerTest/Podfile.lock +36 -0
  68. data/spec/fixtures/Weakly.podspec +13 -0
  69. data/spec/fixtures/a.podspec +19 -0
  70. data/spec/fixtures/foo-bar.podspec +19 -0
  71. data/spec/fixtures/layer-client-messaging-schema.podspec +13 -0
  72. data/spec/integration/project_spec.rb +70 -0
  73. data/spec/spec_helper.rb +79 -0
  74. data/spec/unit/pod/utils_spec.rb +58 -0
  75. data/spec/unit/specification/builder_spec.rb +62 -0
  76. data/spec/unit/specification/spec_builder_spec.rb +61 -0
  77. data/spec/unit/user_interface/build_failed_report_spec.rb +11 -0
  78. metadata +221 -0
@@ -0,0 +1,49 @@
1
+ //
2
+ // CPDAppDelegate.m
3
+ // PackagerTest
4
+ //
5
+ // Created by Boris Bügling on 24/08/14.
6
+ // Copyright (c) 2014 CocoaPods. All rights reserved.
7
+ //
8
+
9
+ #import "CPDAppDelegate.h"
10
+
11
+ @implementation CPDAppDelegate
12
+
13
+ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
14
+ {
15
+ self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
16
+ // Override point for customization after application launch.
17
+ self.window.backgroundColor = [UIColor whiteColor];
18
+ [self.window makeKeyAndVisible];
19
+ return YES;
20
+ }
21
+
22
+ - (void)applicationWillResignActive:(UIApplication *)application
23
+ {
24
+ // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
25
+ // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
26
+ }
27
+
28
+ - (void)applicationDidEnterBackground:(UIApplication *)application
29
+ {
30
+ // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
31
+ // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
32
+ }
33
+
34
+ - (void)applicationWillEnterForeground:(UIApplication *)application
35
+ {
36
+ // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
37
+ }
38
+
39
+ - (void)applicationDidBecomeActive:(UIApplication *)application
40
+ {
41
+ // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
42
+ }
43
+
44
+ - (void)applicationWillTerminate:(UIApplication *)application
45
+ {
46
+ // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
47
+ }
48
+
49
+ @end
@@ -0,0 +1,23 @@
1
+ {
2
+ "images" : [
3
+ {
4
+ "idiom" : "iphone",
5
+ "size" : "29x29",
6
+ "scale" : "2x"
7
+ },
8
+ {
9
+ "idiom" : "iphone",
10
+ "size" : "40x40",
11
+ "scale" : "2x"
12
+ },
13
+ {
14
+ "idiom" : "iphone",
15
+ "size" : "60x60",
16
+ "scale" : "2x"
17
+ }
18
+ ],
19
+ "info" : {
20
+ "version" : 1,
21
+ "author" : "xcode"
22
+ }
23
+ }
@@ -0,0 +1,23 @@
1
+ {
2
+ "images" : [
3
+ {
4
+ "orientation" : "portrait",
5
+ "idiom" : "iphone",
6
+ "extent" : "full-screen",
7
+ "minimum-system-version" : "7.0",
8
+ "scale" : "2x"
9
+ },
10
+ {
11
+ "orientation" : "portrait",
12
+ "idiom" : "iphone",
13
+ "subtype" : "retina4",
14
+ "extent" : "full-screen",
15
+ "minimum-system-version" : "7.0",
16
+ "scale" : "2x"
17
+ }
18
+ ],
19
+ "info" : {
20
+ "version" : 1,
21
+ "author" : "xcode"
22
+ }
23
+ }
@@ -0,0 +1,38 @@
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>CFBundleDisplayName</key>
8
+ <string>${PRODUCT_NAME}</string>
9
+ <key>CFBundleExecutable</key>
10
+ <string>${EXECUTABLE_NAME}</string>
11
+ <key>CFBundleIdentifier</key>
12
+ <string>org.cocoapods.${PRODUCT_NAME:rfc1034identifier}</string>
13
+ <key>CFBundleInfoDictionaryVersion</key>
14
+ <string>6.0</string>
15
+ <key>CFBundleName</key>
16
+ <string>${PRODUCT_NAME}</string>
17
+ <key>CFBundlePackageType</key>
18
+ <string>APPL</string>
19
+ <key>CFBundleShortVersionString</key>
20
+ <string>1.0</string>
21
+ <key>CFBundleSignature</key>
22
+ <string>????</string>
23
+ <key>CFBundleVersion</key>
24
+ <string>1.0</string>
25
+ <key>LSRequiresIPhoneOS</key>
26
+ <true/>
27
+ <key>UIRequiredDeviceCapabilities</key>
28
+ <array>
29
+ <string>armv7</string>
30
+ </array>
31
+ <key>UISupportedInterfaceOrientations</key>
32
+ <array>
33
+ <string>UIInterfaceOrientationPortrait</string>
34
+ <string>UIInterfaceOrientationLandscapeLeft</string>
35
+ <string>UIInterfaceOrientationLandscapeRight</string>
36
+ </array>
37
+ </dict>
38
+ </plist>
@@ -0,0 +1,16 @@
1
+ //
2
+ // Prefix header
3
+ //
4
+ // The contents of this file are implicitly included at the beginning of every source file.
5
+ //
6
+
7
+ #import <Availability.h>
8
+
9
+ #ifndef __IPHONE_3_0
10
+ #warning "This project uses features only available in iOS SDK 3.0 and later."
11
+ #endif
12
+
13
+ #ifdef __OBJC__
14
+ #import <UIKit/UIKit.h>
15
+ #import <Foundation/Foundation.h>
16
+ #endif
@@ -0,0 +1,2 @@
1
+ /* Localized versions of Info.plist keys */
2
+
@@ -0,0 +1,18 @@
1
+ //
2
+ // main.m
3
+ // PackagerTest
4
+ //
5
+ // Created by Boris Bügling on 24/08/14.
6
+ // Copyright (c) 2014 CocoaPods. All rights reserved.
7
+ //
8
+
9
+ #import <UIKit/UIKit.h>
10
+
11
+ #import "CPDAppDelegate.h"
12
+
13
+ int main(int argc, char * argv[])
14
+ {
15
+ @autoreleasepool {
16
+ return UIApplicationMain(argc, argv, nil, NSStringFromClass([CPDAppDelegate class]));
17
+ }
18
+ }
@@ -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
+ }