cocoapods-packager-boco 1.5.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (78) hide show
  1. checksums.yaml +7 -0
  2. data/.coveralls.yml +1 -0
  3. data/.gitignore +3 -0
  4. data/.rubocop-cocoapods.yml +71 -0
  5. data/.rubocop.yml +38 -0
  6. data/.travis.yml +9 -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 +12 -0
  12. data/cocoapods-packager-boco.gemspec +22 -0
  13. data/lib/cocoapods-packager/builder.rb +333 -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 +253 -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 +179 -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 +410 -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 +343 -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 +539 -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 +32 -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/pod/utils_spec.rb +58 -0
  74. data/spec/spec_helper.rb +50 -0
  75. data/spec/specification/builder_spec.rb +43 -0
  76. data/spec/specification/spec_builder_spec.rb +61 -0
  77. data/spec/user_interface/build_failed_report_spec.rb +11 -0
  78. metadata +222 -0
@@ -0,0 +1,30 @@
1
+ require File.expand_path('../../spec_helper', __FILE__)
2
+
3
+ module Pod
4
+ describe Command::Spec::Package do
5
+ describe 'Subspecs' do
6
+ after do
7
+ Dir.glob("KFData-*").each { |dir| Pathname.new(dir).rmtree }
8
+ end
9
+
10
+ it 'can package a single subspec' do
11
+ Pod::Config.instance.sources_manager.stubs(:search).returns(nil)
12
+
13
+ command = Command.parse(%w{ package spec/fixtures/KFData.podspec --subspecs=Core})
14
+ command.run
15
+
16
+ true.should == true # To make the test pass without any shoulds
17
+ end
18
+
19
+ it 'can package a list of subspecs' do
20
+ Pod::Config.instance.sources_manager.stubs(:search).returns(nil)
21
+
22
+ command = Command.parse(%w{ package spec/fixtures/KFData.podspec --subspecs=Core,Compatibility})
23
+ command.run
24
+
25
+ true.should == true # To make the test pass without any shoulds
26
+ end
27
+ end
28
+ end
29
+ end
30
+
@@ -0,0 +1,13 @@
1
+ Pod::Spec.new do |s|
2
+ s.name = "Archs"
3
+ s.version = "0.1.0"
4
+ s.summary = "Yo"
5
+ s.homepage = "http://google.com"
6
+ s.license = "MIT"
7
+ s.author = { "Boris Bügling" => "boris@icculus.org" }
8
+ s.platform = :ios, '8.0'
9
+ s.source = { :git => "https://github.com/neonichu/CPDColors.git", :tag => s.version }
10
+ s.source_files = 'Code'
11
+
12
+ s.dependency 'ABTestingVessel', '~> 1.3'
13
+ end
@@ -0,0 +1,25 @@
1
+ Pod::Spec.new do |s|
2
+ s.name = 'Builder'
3
+ s.version = '0.0.1'
4
+ s.summary = 'Yo'
5
+ s.homepage = 'https://github.com/CocoaPods/cocoapods-packager'
6
+ s.license = {:type => 'MIT'}
7
+ s.authors = { 'Boris Bügling' => 'http://buegling.com' }
8
+ s.source = { :git => 'https://github.com/CocoaPods/cocoapods-packager.git',
9
+ :tag => s.version.to_s }
10
+
11
+ s.libraries = 'xml2'
12
+ s.requires_arc = true
13
+ s.xcconfig = { 'OTHER_LDFLAGS' => '-lObjC' }
14
+ s.compiler_flag = "-DBASE_FLAG"
15
+
16
+ s.ios.frameworks = 'Foundation'
17
+ s.ios.deployment_target = '8.0'
18
+ s.ios.compiler_flag = "-DIOS_FLAG"
19
+
20
+ s.osx.frameworks = 'AppKit'
21
+ s.osx.deployment_target = "10.8"
22
+ s.osx.requires_arc = false
23
+ s.osx.xcconfig = { 'CFLAGS' => '-I.' }
24
+ s.osx.compiler_flag = "-DOSX_FLAG"
25
+ end
@@ -0,0 +1,19 @@
1
+ Pod::Spec.new do |s|
2
+ s.name = "CPDColors"
3
+ s.version = "0.1.0"
4
+ s.summary = "Stay true to the brand with these orta-sanctioned colors."
5
+ s.homepage = "https://github.com/neonichu/CPDColors"
6
+ s.screenshots = "https://raw.githubusercontent.com/neonichu/CPDColors/master/screenshot.png"
7
+ s.license = 'MIT'
8
+ s.author = { "Boris Bügling" => "boris@icculus.org" }
9
+ s.source = { :git => "https://github.com/neonichu/CPDColors.git", :tag => s.version.to_s }
10
+ s.social_media_url = 'https://twitter.com/NeoNacho'
11
+
12
+ s.platform = :ios, '8.0'
13
+
14
+ s.requires_arc = true
15
+ s.source_files = 'Code'
16
+ s.public_header_files = 'Code/**/*.h'
17
+
18
+ s.dependency 'FirebaseAnalytics'
19
+ end
@@ -0,0 +1,18 @@
1
+ Pod::Spec.new do |s|
2
+ s.name = 'FH'
3
+ s.version = '2.2.8'
4
+ s.summary = 'FeedHenry iOS Software Development Kit'
5
+ s.homepage = 'https://www.feedhenry.com'
6
+ s.social_media_url = 'https://twitter.com/feedhenry'
7
+ s.license = 'FeedHenry'
8
+ s.author = 'Red Hat, Inc.'
9
+ s.source = { :git => 'https://github.com/cvasilak/fh-ios-sdk.git', :branch => 'module_map' }
10
+ s.platform = :ios, 7.0
11
+ s.source_files = 'fh-ios-sdk/**/*.{h,m}'
12
+ s.public_header_files = 'fh-ios-sdk/FeedHenry.h', 'fh-ios-sdk/FH.h', 'fh-ios-sdk/FHAct.h', 'fh-ios-sdk/FHActRequest.h', 'fh-ios-sdk/FHAuthRequest.h', 'fh-ios-sdk/FHCloudProps.h', 'fh-ios-sdk/FHCloudRequest.h', 'fh-ios-sdk/FHConfig.h', 'fh-ios-sdk/FHResponse.h', 'fh-ios-sdk/FHResponseDelegate.h', 'fh-ios-sdk/Sync/FHSyncClient.h', 'fh-ios-sdk/Sync/FHSyncConfig.h', 'fh-ios-sdk/Sync/FHSyncNotificationMessage.h', 'fh-ios-sdk/Sync/FHSyncDelegate.h', 'fh-ios-sdk/Categories/JSON/FHJSON.h', 'fh-ios-sdk/FHDataManager.h'
13
+ s.module_map = 'fh-ios-sdk/module.modulemap'
14
+ s.requires_arc = true
15
+ s.libraries = 'xml2', 'z'
16
+ s.dependency 'ASIHTTPRequest/Core', '1.8.2'
17
+ s.dependency 'Reachability', '3.2'
18
+ end
@@ -0,0 +1,73 @@
1
+ Pod::Spec.new do |s|
2
+ s.name = 'KFData'
3
+ s.version = '1.0.5'
4
+ s.license = 'BSD'
5
+ s.summary = 'Lightweight Core Data wrapper.'
6
+ s.homepage = 'https://github.com/kylef/KFData'
7
+ s.authors = { 'Kyle Fuller' => 'inbox@kylefuller.co.uk' }
8
+ s.social_media_url = 'https://twitter.com/kylefuller'
9
+ s.source = { :git => 'https://github.com/neonichu/KFData.git', :commit => '68ee9d94fbfa4e12db9401dd0dea205c18ad1c01' }
10
+
11
+ s.requires_arc = true
12
+
13
+ s.osx.deployment_target = '10.7'
14
+ s.ios.deployment_target = '6.0'
15
+
16
+ s.default_subspec = 'Essentials'
17
+ s.header_dir = 'KFData'
18
+
19
+ s.subspec 'Attribute' do |attribute_spec|
20
+ attribute_spec.dependency 'QueryKit', '~> 0.8.3'
21
+ attribute_spec.ios.source_files = 'KFData/Attribute/*.{h,m}'
22
+ attribute_spec.osx.source_files = 'KFData/Attribute/*.{h,m}'
23
+ end
24
+
25
+ s.subspec 'Manager' do |manager_spec|
26
+ manager_spec.dependency 'QueryKit', '~> 0.8.3'
27
+ manager_spec.ios.source_files = 'KFData/Manager/*.{h,m}'
28
+ manager_spec.osx.source_files = 'KFData/Manager/*.{h,m}'
29
+ end
30
+
31
+ s.subspec 'Core' do |corespec|
32
+ corespec.ios.frameworks = 'CoreData'
33
+ corespec.ios.source_files = 'KFData/KFData.h', 'KFData/Core/*.{h,m}'
34
+
35
+ corespec.osx.frameworks = 'CoreData'
36
+ corespec.osx.source_files = 'KFData/Core/*.{h,m}'
37
+ end
38
+
39
+ s.subspec 'Store' do |storespec|
40
+ storespec.ios.frameworks = 'CoreData'
41
+ storespec.ios.source_files = 'KFData/Store/*.{h,m}'
42
+ storespec.ios.public_header_files = 'KFData/Store/KFDataStore.h'
43
+ storespec.ios.private_header_files = 'KFData/Store/KFDataStoreInternal.h'
44
+
45
+ storespec.osx.frameworks = 'CoreData'
46
+ storespec.osx.source_files = 'KFData/Store/*.{h,m}'
47
+ storespec.osx.public_header_files = 'KFData/Store/KFDataStore.h'
48
+ storespec.osx.private_header_files = 'KFData/Store/KFDataStoreInternal.h'
49
+ end
50
+
51
+ s.subspec 'UI' do |uispec|
52
+ uispec.dependency 'KFData/Manager'
53
+ uispec.platform = :ios
54
+ uispec.ios.frameworks = 'UIKit'
55
+ uispec.ios.source_files = 'KFData/UI/*.{h,m}'
56
+ end
57
+
58
+ s.subspec 'Essentials' do |essentialsspec|
59
+ essentialsspec.dependency 'KFData/Core'
60
+ essentialsspec.dependency 'KFData/Store'
61
+ essentialsspec.dependency 'KFData/Attribute'
62
+ essentialsspec.dependency 'KFData/Manager'
63
+ essentialsspec.ios.dependency 'KFData/UI'
64
+ end
65
+
66
+ s.subspec 'Compatibility' do |cspec|
67
+ cspec.dependency 'KFData/Core'
68
+ cspec.dependency 'KFData/Manager'
69
+ cspec.header_dir = 'KFData/Compatibility'
70
+ cspec.source_files = 'KFData/Compatibility/*.{h,m}'
71
+ end
72
+ end
73
+
@@ -0,0 +1,22 @@
1
+ ## CocoaPods
2
+
3
+ Pods
4
+ Podfile.lock
5
+ LibraryConsumer.xcworkspace
6
+
7
+ ## Node
8
+
9
+ node_modules
10
+
11
+ ## OS X
12
+
13
+ .DS_Store
14
+
15
+ ## Other
16
+
17
+ .pt
18
+
19
+ ## Xcode
20
+
21
+ *.xccheckout
22
+ xcuserdata
@@ -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,343 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 46;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ 7CE4CCEF5BF27FD4FBB972EB /* libPods-LibraryConsumer.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 34AD1A407B865D05B65A5301 /* libPods-LibraryConsumer.a */; };
11
+ 9B89D2E019EFC04D00803D42 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B89D2DF19EFC04D00803D42 /* main.m */; };
12
+ 9B89D2E319EFC04D00803D42 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B89D2E219EFC04D00803D42 /* AppDelegate.m */; };
13
+ /* End PBXBuildFile section */
14
+
15
+ /* Begin PBXFileReference section */
16
+ 0AA277EF1097393AE42174B8 /* Pods-LibraryConsumer.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-LibraryConsumer.release.xcconfig"; path = "Pods/Target Support Files/Pods-LibraryConsumer/Pods-LibraryConsumer.release.xcconfig"; sourceTree = "<group>"; };
17
+ 34AD1A407B865D05B65A5301 /* libPods-LibraryConsumer.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-LibraryConsumer.a"; sourceTree = BUILT_PRODUCTS_DIR; };
18
+ 4A66E303CCF429F9D7C502D1 /* Pods-LibraryConsumer.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-LibraryConsumer.debug.xcconfig"; path = "Pods/Target Support Files/Pods-LibraryConsumer/Pods-LibraryConsumer.debug.xcconfig"; sourceTree = "<group>"; };
19
+ 9B89D2DA19EFC04D00803D42 /* LibraryConsumer.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = LibraryConsumer.app; sourceTree = BUILT_PRODUCTS_DIR; };
20
+ 9B89D2DE19EFC04D00803D42 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
21
+ 9B89D2DF19EFC04D00803D42 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
22
+ 9B89D2E119EFC04D00803D42 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
23
+ 9B89D2E219EFC04D00803D42 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
24
+ /* End PBXFileReference section */
25
+
26
+ /* Begin PBXFrameworksBuildPhase section */
27
+ 9B89D2D719EFC04D00803D42 /* Frameworks */ = {
28
+ isa = PBXFrameworksBuildPhase;
29
+ buildActionMask = 2147483647;
30
+ files = (
31
+ 7CE4CCEF5BF27FD4FBB972EB /* libPods-LibraryConsumer.a in Frameworks */,
32
+ );
33
+ runOnlyForDeploymentPostprocessing = 0;
34
+ };
35
+ /* End PBXFrameworksBuildPhase section */
36
+
37
+ /* Begin PBXGroup section */
38
+ 1CFA5E012476526B947AF945 /* Frameworks */ = {
39
+ isa = PBXGroup;
40
+ children = (
41
+ 34AD1A407B865D05B65A5301 /* libPods-LibraryConsumer.a */,
42
+ );
43
+ name = Frameworks;
44
+ sourceTree = "<group>";
45
+ };
46
+ 6DC8E89A3E645F7841B27894 /* Pods */ = {
47
+ isa = PBXGroup;
48
+ children = (
49
+ 4A66E303CCF429F9D7C502D1 /* Pods-LibraryConsumer.debug.xcconfig */,
50
+ 0AA277EF1097393AE42174B8 /* Pods-LibraryConsumer.release.xcconfig */,
51
+ );
52
+ name = Pods;
53
+ sourceTree = "<group>";
54
+ };
55
+ 9B89D2D119EFC04D00803D42 = {
56
+ isa = PBXGroup;
57
+ children = (
58
+ 9B89D2DC19EFC04D00803D42 /* LibraryConsumer */,
59
+ 9B89D2DB19EFC04D00803D42 /* Products */,
60
+ 6DC8E89A3E645F7841B27894 /* Pods */,
61
+ 1CFA5E012476526B947AF945 /* Frameworks */,
62
+ );
63
+ sourceTree = "<group>";
64
+ };
65
+ 9B89D2DB19EFC04D00803D42 /* Products */ = {
66
+ isa = PBXGroup;
67
+ children = (
68
+ 9B89D2DA19EFC04D00803D42 /* LibraryConsumer.app */,
69
+ );
70
+ name = Products;
71
+ sourceTree = "<group>";
72
+ };
73
+ 9B89D2DC19EFC04D00803D42 /* LibraryConsumer */ = {
74
+ isa = PBXGroup;
75
+ children = (
76
+ 9B89D2E119EFC04D00803D42 /* AppDelegate.h */,
77
+ 9B89D2E219EFC04D00803D42 /* AppDelegate.m */,
78
+ 9B89D2DD19EFC04D00803D42 /* Supporting Files */,
79
+ );
80
+ path = LibraryConsumer;
81
+ sourceTree = "<group>";
82
+ };
83
+ 9B89D2DD19EFC04D00803D42 /* Supporting Files */ = {
84
+ isa = PBXGroup;
85
+ children = (
86
+ 9B89D2DE19EFC04D00803D42 /* Info.plist */,
87
+ 9B89D2DF19EFC04D00803D42 /* main.m */,
88
+ );
89
+ name = "Supporting Files";
90
+ sourceTree = "<group>";
91
+ };
92
+ /* End PBXGroup section */
93
+
94
+ /* Begin PBXNativeTarget section */
95
+ 9B89D2D919EFC04D00803D42 /* LibraryConsumer */ = {
96
+ isa = PBXNativeTarget;
97
+ buildConfigurationList = 9B89D2FD19EFC04D00803D42 /* Build configuration list for PBXNativeTarget "LibraryConsumer" */;
98
+ buildPhases = (
99
+ 170A030C4EB518D9349852B9 /* [CP] Check Pods Manifest.lock */,
100
+ 9B89D2D619EFC04D00803D42 /* Sources */,
101
+ 9B89D2D719EFC04D00803D42 /* Frameworks */,
102
+ 9B89D2D819EFC04D00803D42 /* Resources */,
103
+ 66E97541EE256003BD711EDA /* [CP] Embed Pods Frameworks */,
104
+ DFB55D7B0E04E9E06397977F /* [CP] Copy Pods Resources */,
105
+ );
106
+ buildRules = (
107
+ );
108
+ dependencies = (
109
+ );
110
+ name = LibraryConsumer;
111
+ productName = LibraryConsumer;
112
+ productReference = 9B89D2DA19EFC04D00803D42 /* LibraryConsumer.app */;
113
+ productType = "com.apple.product-type.application";
114
+ };
115
+ /* End PBXNativeTarget section */
116
+
117
+ /* Begin PBXProject section */
118
+ 9B89D2D219EFC04D00803D42 /* Project object */ = {
119
+ isa = PBXProject;
120
+ attributes = {
121
+ LastUpgradeCheck = 0600;
122
+ ORGANIZATIONNAME = "Shape A/S";
123
+ TargetAttributes = {
124
+ 9B89D2D919EFC04D00803D42 = {
125
+ CreatedOnToolsVersion = 6.0.1;
126
+ };
127
+ };
128
+ };
129
+ buildConfigurationList = 9B89D2D519EFC04D00803D42 /* Build configuration list for PBXProject "LibraryConsumer" */;
130
+ compatibilityVersion = "Xcode 3.2";
131
+ developmentRegion = English;
132
+ hasScannedForEncodings = 0;
133
+ knownRegions = (
134
+ en,
135
+ Base,
136
+ );
137
+ mainGroup = 9B89D2D119EFC04D00803D42;
138
+ productRefGroup = 9B89D2DB19EFC04D00803D42 /* Products */;
139
+ projectDirPath = "";
140
+ projectRoot = "";
141
+ targets = (
142
+ 9B89D2D919EFC04D00803D42 /* LibraryConsumer */,
143
+ );
144
+ };
145
+ /* End PBXProject section */
146
+
147
+ /* Begin PBXResourcesBuildPhase section */
148
+ 9B89D2D819EFC04D00803D42 /* Resources */ = {
149
+ isa = PBXResourcesBuildPhase;
150
+ buildActionMask = 2147483647;
151
+ files = (
152
+ );
153
+ runOnlyForDeploymentPostprocessing = 0;
154
+ };
155
+ /* End PBXResourcesBuildPhase section */
156
+
157
+ /* Begin PBXShellScriptBuildPhase section */
158
+ 170A030C4EB518D9349852B9 /* [CP] Check Pods Manifest.lock */ = {
159
+ isa = PBXShellScriptBuildPhase;
160
+ buildActionMask = 2147483647;
161
+ files = (
162
+ );
163
+ inputPaths = (
164
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
165
+ "${PODS_ROOT}/Manifest.lock",
166
+ );
167
+ name = "[CP] Check Pods Manifest.lock";
168
+ outputPaths = (
169
+ "$(DERIVED_FILE_DIR)/Pods-LibraryConsumer-checkManifestLockResult.txt",
170
+ );
171
+ runOnlyForDeploymentPostprocessing = 0;
172
+ shellPath = /bin/sh;
173
+ 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";
174
+ showEnvVarsInLog = 0;
175
+ };
176
+ 66E97541EE256003BD711EDA /* [CP] Embed Pods Frameworks */ = {
177
+ isa = PBXShellScriptBuildPhase;
178
+ buildActionMask = 2147483647;
179
+ files = (
180
+ );
181
+ inputPaths = (
182
+ );
183
+ name = "[CP] Embed Pods Frameworks";
184
+ outputPaths = (
185
+ );
186
+ runOnlyForDeploymentPostprocessing = 0;
187
+ shellPath = /bin/sh;
188
+ shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-LibraryConsumer/Pods-LibraryConsumer-frameworks.sh\"\n";
189
+ showEnvVarsInLog = 0;
190
+ };
191
+ DFB55D7B0E04E9E06397977F /* [CP] Copy Pods Resources */ = {
192
+ isa = PBXShellScriptBuildPhase;
193
+ buildActionMask = 2147483647;
194
+ files = (
195
+ );
196
+ inputPaths = (
197
+ );
198
+ name = "[CP] Copy Pods Resources";
199
+ outputPaths = (
200
+ );
201
+ runOnlyForDeploymentPostprocessing = 0;
202
+ shellPath = /bin/sh;
203
+ shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-LibraryConsumer/Pods-LibraryConsumer-resources.sh\"\n";
204
+ showEnvVarsInLog = 0;
205
+ };
206
+ /* End PBXShellScriptBuildPhase section */
207
+
208
+ /* Begin PBXSourcesBuildPhase section */
209
+ 9B89D2D619EFC04D00803D42 /* Sources */ = {
210
+ isa = PBXSourcesBuildPhase;
211
+ buildActionMask = 2147483647;
212
+ files = (
213
+ 9B89D2E319EFC04D00803D42 /* AppDelegate.m in Sources */,
214
+ 9B89D2E019EFC04D00803D42 /* main.m in Sources */,
215
+ );
216
+ runOnlyForDeploymentPostprocessing = 0;
217
+ };
218
+ /* End PBXSourcesBuildPhase section */
219
+
220
+ /* Begin XCBuildConfiguration section */
221
+ 9B89D2FB19EFC04D00803D42 /* Debug */ = {
222
+ isa = XCBuildConfiguration;
223
+ buildSettings = {
224
+ ALWAYS_SEARCH_USER_PATHS = NO;
225
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
226
+ CLANG_CXX_LIBRARY = "libc++";
227
+ CLANG_ENABLE_MODULES = YES;
228
+ CLANG_ENABLE_OBJC_ARC = YES;
229
+ CLANG_WARN_BOOL_CONVERSION = YES;
230
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
231
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
232
+ CLANG_WARN_EMPTY_BODY = YES;
233
+ CLANG_WARN_ENUM_CONVERSION = YES;
234
+ CLANG_WARN_INT_CONVERSION = YES;
235
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
236
+ CLANG_WARN_UNREACHABLE_CODE = YES;
237
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
238
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
239
+ COPY_PHASE_STRIP = NO;
240
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
241
+ GCC_C_LANGUAGE_STANDARD = gnu99;
242
+ GCC_DYNAMIC_NO_PIC = NO;
243
+ GCC_OPTIMIZATION_LEVEL = 0;
244
+ GCC_PREPROCESSOR_DEFINITIONS = (
245
+ "DEBUG=1",
246
+ "$(inherited)",
247
+ );
248
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
249
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
250
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
251
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
252
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
253
+ GCC_WARN_UNUSED_FUNCTION = YES;
254
+ GCC_WARN_UNUSED_VARIABLE = YES;
255
+ IPHONEOS_DEPLOYMENT_TARGET = 8.0;
256
+ MTL_ENABLE_DEBUG_INFO = YES;
257
+ ONLY_ACTIVE_ARCH = YES;
258
+ SDKROOT = iphoneos;
259
+ };
260
+ name = Debug;
261
+ };
262
+ 9B89D2FC19EFC04D00803D42 /* Release */ = {
263
+ isa = XCBuildConfiguration;
264
+ buildSettings = {
265
+ ALWAYS_SEARCH_USER_PATHS = NO;
266
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
267
+ CLANG_CXX_LIBRARY = "libc++";
268
+ CLANG_ENABLE_MODULES = YES;
269
+ CLANG_ENABLE_OBJC_ARC = YES;
270
+ CLANG_WARN_BOOL_CONVERSION = YES;
271
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
272
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
273
+ CLANG_WARN_EMPTY_BODY = YES;
274
+ CLANG_WARN_ENUM_CONVERSION = YES;
275
+ CLANG_WARN_INT_CONVERSION = YES;
276
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
277
+ CLANG_WARN_UNREACHABLE_CODE = YES;
278
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
279
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
280
+ COPY_PHASE_STRIP = YES;
281
+ ENABLE_NS_ASSERTIONS = NO;
282
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
283
+ GCC_C_LANGUAGE_STANDARD = gnu99;
284
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
285
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
286
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
287
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
288
+ GCC_WARN_UNUSED_FUNCTION = YES;
289
+ GCC_WARN_UNUSED_VARIABLE = YES;
290
+ IPHONEOS_DEPLOYMENT_TARGET = 8.0;
291
+ MTL_ENABLE_DEBUG_INFO = NO;
292
+ SDKROOT = iphoneos;
293
+ VALIDATE_PRODUCT = YES;
294
+ };
295
+ name = Release;
296
+ };
297
+ 9B89D2FE19EFC04D00803D42 /* Debug */ = {
298
+ isa = XCBuildConfiguration;
299
+ baseConfigurationReference = 4A66E303CCF429F9D7C502D1 /* Pods-LibraryConsumer.debug.xcconfig */;
300
+ buildSettings = {
301
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
302
+ INFOPLIST_FILE = LibraryConsumer/Info.plist;
303
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
304
+ PRODUCT_NAME = "$(TARGET_NAME)";
305
+ };
306
+ name = Debug;
307
+ };
308
+ 9B89D2FF19EFC04D00803D42 /* Release */ = {
309
+ isa = XCBuildConfiguration;
310
+ baseConfigurationReference = 0AA277EF1097393AE42174B8 /* Pods-LibraryConsumer.release.xcconfig */;
311
+ buildSettings = {
312
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
313
+ INFOPLIST_FILE = LibraryConsumer/Info.plist;
314
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
315
+ PRODUCT_NAME = "$(TARGET_NAME)";
316
+ };
317
+ name = Release;
318
+ };
319
+ /* End XCBuildConfiguration section */
320
+
321
+ /* Begin XCConfigurationList section */
322
+ 9B89D2D519EFC04D00803D42 /* Build configuration list for PBXProject "LibraryConsumer" */ = {
323
+ isa = XCConfigurationList;
324
+ buildConfigurations = (
325
+ 9B89D2FB19EFC04D00803D42 /* Debug */,
326
+ 9B89D2FC19EFC04D00803D42 /* Release */,
327
+ );
328
+ defaultConfigurationIsVisible = 0;
329
+ defaultConfigurationName = Release;
330
+ };
331
+ 9B89D2FD19EFC04D00803D42 /* Build configuration list for PBXNativeTarget "LibraryConsumer" */ = {
332
+ isa = XCConfigurationList;
333
+ buildConfigurations = (
334
+ 9B89D2FE19EFC04D00803D42 /* Debug */,
335
+ 9B89D2FF19EFC04D00803D42 /* Release */,
336
+ );
337
+ defaultConfigurationIsVisible = 0;
338
+ defaultConfigurationName = Release;
339
+ };
340
+ /* End XCConfigurationList section */
341
+ };
342
+ rootObject = 9B89D2D219EFC04D00803D42 /* Project object */;
343
+ }