cocoapods-gd 0.0.1
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.
- checksums.yaml +7 -0
 - data/Gemfile +13 -0
 - data/Gemfile.lock +131 -0
 - data/LICENSE +22 -0
 - data/README.md +42 -0
 - data/Rakefile +29 -0
 - data/cocoapods-gd.gemspec +22 -0
 - data/lib/cocoapods-gd.rb +5 -0
 - data/lib/cocoapods-gd/builder.rb +393 -0
 - data/lib/cocoapods-gd/framework.rb +66 -0
 - data/lib/cocoapods-gd/install_frameworks.rb +77 -0
 - data/lib/cocoapods-gd/mangle.rb +32 -0
 - data/lib/cocoapods-gd/pod_utils.rb +246 -0
 - data/lib/cocoapods-gd/podfile_env.rb +26 -0
 - data/lib/cocoapods-gd/spec_builder.rb +72 -0
 - data/lib/cocoapods-gd/symbols.rb +42 -0
 - data/lib/cocoapods-gd/uploader.rb +70 -0
 - data/lib/cocoapods-gd/user_interface/build_failed_report.rb +15 -0
 - data/lib/cocoapods_plugin.rb +10 -0
 - data/lib/pod/command/gd.rb +185 -0
 - data/scripts/lstconst.sh +9 -0
 - data/scripts/lstsym.sh +8 -0
 - data/spec/command/error_spec.rb +81 -0
 - data/spec/command/gd_spec.rb +420 -0
 - data/spec/command/subspecs_spec.rb +30 -0
 - data/spec/fixtures/Archs.podspec +13 -0
 - data/spec/fixtures/Builder.podspec +25 -0
 - data/spec/fixtures/CPDColors.podspec +19 -0
 - data/spec/fixtures/FH.podspec +18 -0
 - data/spec/fixtures/KFData.podspec +73 -0
 - data/spec/fixtures/LibraryConsumerDemo/.gitignore +22 -0
 - data/spec/fixtures/LibraryConsumerDemo/LibraryConsumer.xcodeproj/project.pbxproj +311 -0
 - data/spec/fixtures/LibraryConsumerDemo/LibraryConsumer.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
 - data/spec/fixtures/LibraryConsumerDemo/LibraryConsumer.xcodeproj/xcshareddata/xcschemes/LibraryConsumer.xcscheme +100 -0
 - data/spec/fixtures/LibraryConsumerDemo/LibraryConsumer/AppDelegate.h +17 -0
 - data/spec/fixtures/LibraryConsumerDemo/LibraryConsumer/AppDelegate.m +27 -0
 - data/spec/fixtures/LibraryConsumerDemo/LibraryConsumer/Info.plist +40 -0
 - data/spec/fixtures/LibraryConsumerDemo/LibraryConsumer/main.m +16 -0
 - data/spec/fixtures/LibraryConsumerDemo/Podfile +5 -0
 - data/spec/fixtures/LibraryDemo.podspec +14 -0
 - data/spec/fixtures/LocalSources/LICENSE +0 -0
 - data/spec/fixtures/LocalSources/LocalNikeKit.h +4 -0
 - data/spec/fixtures/LocalSources/LocalNikeKit.m +9 -0
 - data/spec/fixtures/LocalSources/LocalNikeKit.podspec +19 -0
 - data/spec/fixtures/NikeKit.podspec +19 -0
 - data/spec/fixtures/OpenSans.podspec +18 -0
 - data/spec/fixtures/PackagerTest/.gitignore +21 -0
 - data/spec/fixtures/PackagerTest/PackagerTest.xcodeproj/project.pbxproj +507 -0
 - data/spec/fixtures/PackagerTest/PackagerTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
 - data/spec/fixtures/PackagerTest/PackagerTest.xcodeproj/xcshareddata/xcschemes/PackagerTest.xcscheme +110 -0
 - data/spec/fixtures/PackagerTest/PackagerTest.xcworkspace/contents.xcworkspacedata +1 -0
 - data/spec/fixtures/PackagerTest/PackagerTest/CPDAppDelegate.h +15 -0
 - data/spec/fixtures/PackagerTest/PackagerTest/CPDAppDelegate.m +49 -0
 - data/spec/fixtures/PackagerTest/PackagerTest/Images.xcassets/AppIcon.appiconset/Contents.json +23 -0
 - data/spec/fixtures/PackagerTest/PackagerTest/Images.xcassets/LaunchImage.launchimage/Contents.json +23 -0
 - data/spec/fixtures/PackagerTest/PackagerTest/PackagerTest-Info.plist +38 -0
 - data/spec/fixtures/PackagerTest/PackagerTest/PackagerTest-Prefix.pch +16 -0
 - data/spec/fixtures/PackagerTest/PackagerTest/en.lproj/InfoPlist.strings +2 -0
 - data/spec/fixtures/PackagerTest/PackagerTest/main.m +18 -0
 - data/spec/fixtures/PackagerTest/PackagerTestTests/PackagerTestTests-Info.plist +22 -0
 - data/spec/fixtures/PackagerTest/PackagerTestTests/PackagerTestTests.m +34 -0
 - data/spec/fixtures/PackagerTest/PackagerTestTests/en.lproj/InfoPlist.strings +2 -0
 - data/spec/fixtures/PackagerTest/Podfile +10 -0
 - data/spec/fixtures/PackagerTest/Podfile.lock +36 -0
 - data/spec/fixtures/Weakly.podspec +13 -0
 - data/spec/fixtures/a.podspec +19 -0
 - data/spec/fixtures/foo-bar.podspec +19 -0
 - data/spec/fixtures/layer-client-messaging-schema.podspec +13 -0
 - data/spec/integration/project_spec.rb +70 -0
 - data/spec/spec_helper.rb +79 -0
 - data/spec/unit/pod/utils_spec.rb +58 -0
 - data/spec/unit/specification/builder_spec.rb +62 -0
 - data/spec/unit/specification/spec_builder_spec.rb +61 -0
 - data/spec/unit/user_interface/build_failed_report_spec.rb +11 -0
 - metadata +217 -0
 
| 
         @@ -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-gd'
         
     | 
| 
      
 6 
     | 
    
         
            +
              s.license      = {:type => 'MIT'}
         
     | 
| 
      
 7 
     | 
    
         
            +
              s.authors      = { 'Boris Bügling' => 'http://buegling.com' }
         
     | 
| 
      
 8 
     | 
    
         
            +
              s.source       = { :git => 'https://github.com/CocoaPods/cocoapods-gd.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,311 @@ 
     | 
|
| 
      
 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 
     | 
    
         
            +
            			);
         
     | 
| 
      
 104 
     | 
    
         
            +
            			buildRules = (
         
     | 
| 
      
 105 
     | 
    
         
            +
            			);
         
     | 
| 
      
 106 
     | 
    
         
            +
            			dependencies = (
         
     | 
| 
      
 107 
     | 
    
         
            +
            			);
         
     | 
| 
      
 108 
     | 
    
         
            +
            			name = LibraryConsumer;
         
     | 
| 
      
 109 
     | 
    
         
            +
            			productName = LibraryConsumer;
         
     | 
| 
      
 110 
     | 
    
         
            +
            			productReference = 9B89D2DA19EFC04D00803D42 /* LibraryConsumer.app */;
         
     | 
| 
      
 111 
     | 
    
         
            +
            			productType = "com.apple.product-type.application";
         
     | 
| 
      
 112 
     | 
    
         
            +
            		};
         
     | 
| 
      
 113 
     | 
    
         
            +
            /* End PBXNativeTarget section */
         
     | 
| 
      
 114 
     | 
    
         
            +
             
     | 
| 
      
 115 
     | 
    
         
            +
            /* Begin PBXProject section */
         
     | 
| 
      
 116 
     | 
    
         
            +
            		9B89D2D219EFC04D00803D42 /* Project object */ = {
         
     | 
| 
      
 117 
     | 
    
         
            +
            			isa = PBXProject;
         
     | 
| 
      
 118 
     | 
    
         
            +
            			attributes = {
         
     | 
| 
      
 119 
     | 
    
         
            +
            				LastUpgradeCheck = 0600;
         
     | 
| 
      
 120 
     | 
    
         
            +
            				ORGANIZATIONNAME = "Shape A/S";
         
     | 
| 
      
 121 
     | 
    
         
            +
            				TargetAttributes = {
         
     | 
| 
      
 122 
     | 
    
         
            +
            					9B89D2D919EFC04D00803D42 = {
         
     | 
| 
      
 123 
     | 
    
         
            +
            						CreatedOnToolsVersion = 6.0.1;
         
     | 
| 
      
 124 
     | 
    
         
            +
            					};
         
     | 
| 
      
 125 
     | 
    
         
            +
            				};
         
     | 
| 
      
 126 
     | 
    
         
            +
            			};
         
     | 
| 
      
 127 
     | 
    
         
            +
            			buildConfigurationList = 9B89D2D519EFC04D00803D42 /* Build configuration list for PBXProject "LibraryConsumer" */;
         
     | 
| 
      
 128 
     | 
    
         
            +
            			compatibilityVersion = "Xcode 3.2";
         
     | 
| 
      
 129 
     | 
    
         
            +
            			developmentRegion = English;
         
     | 
| 
      
 130 
     | 
    
         
            +
            			hasScannedForEncodings = 0;
         
     | 
| 
      
 131 
     | 
    
         
            +
            			knownRegions = (
         
     | 
| 
      
 132 
     | 
    
         
            +
            				en,
         
     | 
| 
      
 133 
     | 
    
         
            +
            				Base,
         
     | 
| 
      
 134 
     | 
    
         
            +
            			);
         
     | 
| 
      
 135 
     | 
    
         
            +
            			mainGroup = 9B89D2D119EFC04D00803D42;
         
     | 
| 
      
 136 
     | 
    
         
            +
            			productRefGroup = 9B89D2DB19EFC04D00803D42 /* Products */;
         
     | 
| 
      
 137 
     | 
    
         
            +
            			projectDirPath = "";
         
     | 
| 
      
 138 
     | 
    
         
            +
            			projectRoot = "";
         
     | 
| 
      
 139 
     | 
    
         
            +
            			targets = (
         
     | 
| 
      
 140 
     | 
    
         
            +
            				9B89D2D919EFC04D00803D42 /* LibraryConsumer */,
         
     | 
| 
      
 141 
     | 
    
         
            +
            			);
         
     | 
| 
      
 142 
     | 
    
         
            +
            		};
         
     | 
| 
      
 143 
     | 
    
         
            +
            /* End PBXProject section */
         
     | 
| 
      
 144 
     | 
    
         
            +
             
     | 
| 
      
 145 
     | 
    
         
            +
            /* Begin PBXResourcesBuildPhase section */
         
     | 
| 
      
 146 
     | 
    
         
            +
            		9B89D2D819EFC04D00803D42 /* Resources */ = {
         
     | 
| 
      
 147 
     | 
    
         
            +
            			isa = PBXResourcesBuildPhase;
         
     | 
| 
      
 148 
     | 
    
         
            +
            			buildActionMask = 2147483647;
         
     | 
| 
      
 149 
     | 
    
         
            +
            			files = (
         
     | 
| 
      
 150 
     | 
    
         
            +
            			);
         
     | 
| 
      
 151 
     | 
    
         
            +
            			runOnlyForDeploymentPostprocessing = 0;
         
     | 
| 
      
 152 
     | 
    
         
            +
            		};
         
     | 
| 
      
 153 
     | 
    
         
            +
            /* End PBXResourcesBuildPhase section */
         
     | 
| 
      
 154 
     | 
    
         
            +
             
     | 
| 
      
 155 
     | 
    
         
            +
            /* Begin PBXShellScriptBuildPhase section */
         
     | 
| 
      
 156 
     | 
    
         
            +
            		170A030C4EB518D9349852B9 /* [CP] Check Pods Manifest.lock */ = {
         
     | 
| 
      
 157 
     | 
    
         
            +
            			isa = PBXShellScriptBuildPhase;
         
     | 
| 
      
 158 
     | 
    
         
            +
            			buildActionMask = 2147483647;
         
     | 
| 
      
 159 
     | 
    
         
            +
            			files = (
         
     | 
| 
      
 160 
     | 
    
         
            +
            			);
         
     | 
| 
      
 161 
     | 
    
         
            +
            			inputPaths = (
         
     | 
| 
      
 162 
     | 
    
         
            +
            				"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
         
     | 
| 
      
 163 
     | 
    
         
            +
            				"${PODS_ROOT}/Manifest.lock",
         
     | 
| 
      
 164 
     | 
    
         
            +
            			);
         
     | 
| 
      
 165 
     | 
    
         
            +
            			name = "[CP] Check Pods Manifest.lock";
         
     | 
| 
      
 166 
     | 
    
         
            +
            			outputPaths = (
         
     | 
| 
      
 167 
     | 
    
         
            +
            				"$(DERIVED_FILE_DIR)/Pods-LibraryConsumer-checkManifestLockResult.txt",
         
     | 
| 
      
 168 
     | 
    
         
            +
            			);
         
     | 
| 
      
 169 
     | 
    
         
            +
            			runOnlyForDeploymentPostprocessing = 0;
         
     | 
| 
      
 170 
     | 
    
         
            +
            			shellPath = /bin/sh;
         
     | 
| 
      
 171 
     | 
    
         
            +
            			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";
         
     | 
| 
      
 172 
     | 
    
         
            +
            			showEnvVarsInLog = 0;
         
     | 
| 
      
 173 
     | 
    
         
            +
            		};
         
     | 
| 
      
 174 
     | 
    
         
            +
            /* End PBXShellScriptBuildPhase section */
         
     | 
| 
      
 175 
     | 
    
         
            +
             
     | 
| 
      
 176 
     | 
    
         
            +
            /* Begin PBXSourcesBuildPhase section */
         
     | 
| 
      
 177 
     | 
    
         
            +
            		9B89D2D619EFC04D00803D42 /* Sources */ = {
         
     | 
| 
      
 178 
     | 
    
         
            +
            			isa = PBXSourcesBuildPhase;
         
     | 
| 
      
 179 
     | 
    
         
            +
            			buildActionMask = 2147483647;
         
     | 
| 
      
 180 
     | 
    
         
            +
            			files = (
         
     | 
| 
      
 181 
     | 
    
         
            +
            				9B89D2E319EFC04D00803D42 /* AppDelegate.m in Sources */,
         
     | 
| 
      
 182 
     | 
    
         
            +
            				9B89D2E019EFC04D00803D42 /* main.m in Sources */,
         
     | 
| 
      
 183 
     | 
    
         
            +
            			);
         
     | 
| 
      
 184 
     | 
    
         
            +
            			runOnlyForDeploymentPostprocessing = 0;
         
     | 
| 
      
 185 
     | 
    
         
            +
            		};
         
     | 
| 
      
 186 
     | 
    
         
            +
            /* End PBXSourcesBuildPhase section */
         
     | 
| 
      
 187 
     | 
    
         
            +
             
     | 
| 
      
 188 
     | 
    
         
            +
            /* Begin XCBuildConfiguration section */
         
     | 
| 
      
 189 
     | 
    
         
            +
            		9B89D2FB19EFC04D00803D42 /* Debug */ = {
         
     | 
| 
      
 190 
     | 
    
         
            +
            			isa = XCBuildConfiguration;
         
     | 
| 
      
 191 
     | 
    
         
            +
            			buildSettings = {
         
     | 
| 
      
 192 
     | 
    
         
            +
            				ALWAYS_SEARCH_USER_PATHS = NO;
         
     | 
| 
      
 193 
     | 
    
         
            +
            				CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
         
     | 
| 
      
 194 
     | 
    
         
            +
            				CLANG_CXX_LIBRARY = "libc++";
         
     | 
| 
      
 195 
     | 
    
         
            +
            				CLANG_ENABLE_MODULES = YES;
         
     | 
| 
      
 196 
     | 
    
         
            +
            				CLANG_ENABLE_OBJC_ARC = YES;
         
     | 
| 
      
 197 
     | 
    
         
            +
            				CLANG_WARN_BOOL_CONVERSION = YES;
         
     | 
| 
      
 198 
     | 
    
         
            +
            				CLANG_WARN_CONSTANT_CONVERSION = YES;
         
     | 
| 
      
 199 
     | 
    
         
            +
            				CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
         
     | 
| 
      
 200 
     | 
    
         
            +
            				CLANG_WARN_EMPTY_BODY = YES;
         
     | 
| 
      
 201 
     | 
    
         
            +
            				CLANG_WARN_ENUM_CONVERSION = YES;
         
     | 
| 
      
 202 
     | 
    
         
            +
            				CLANG_WARN_INT_CONVERSION = YES;
         
     | 
| 
      
 203 
     | 
    
         
            +
            				CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
         
     | 
| 
      
 204 
     | 
    
         
            +
            				CLANG_WARN_UNREACHABLE_CODE = YES;
         
     | 
| 
      
 205 
     | 
    
         
            +
            				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
         
     | 
| 
      
 206 
     | 
    
         
            +
            				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
         
     | 
| 
      
 207 
     | 
    
         
            +
            				COPY_PHASE_STRIP = NO;
         
     | 
| 
      
 208 
     | 
    
         
            +
            				ENABLE_STRICT_OBJC_MSGSEND = YES;
         
     | 
| 
      
 209 
     | 
    
         
            +
            				GCC_C_LANGUAGE_STANDARD = gnu99;
         
     | 
| 
      
 210 
     | 
    
         
            +
            				GCC_DYNAMIC_NO_PIC = NO;
         
     | 
| 
      
 211 
     | 
    
         
            +
            				GCC_OPTIMIZATION_LEVEL = 0;
         
     | 
| 
      
 212 
     | 
    
         
            +
            				GCC_PREPROCESSOR_DEFINITIONS = (
         
     | 
| 
      
 213 
     | 
    
         
            +
            					"DEBUG=1",
         
     | 
| 
      
 214 
     | 
    
         
            +
            					"$(inherited)",
         
     | 
| 
      
 215 
     | 
    
         
            +
            				);
         
     | 
| 
      
 216 
     | 
    
         
            +
            				GCC_SYMBOLS_PRIVATE_EXTERN = NO;
         
     | 
| 
      
 217 
     | 
    
         
            +
            				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
         
     | 
| 
      
 218 
     | 
    
         
            +
            				GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
         
     | 
| 
      
 219 
     | 
    
         
            +
            				GCC_WARN_UNDECLARED_SELECTOR = YES;
         
     | 
| 
      
 220 
     | 
    
         
            +
            				GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
         
     | 
| 
      
 221 
     | 
    
         
            +
            				GCC_WARN_UNUSED_FUNCTION = YES;
         
     | 
| 
      
 222 
     | 
    
         
            +
            				GCC_WARN_UNUSED_VARIABLE = YES;
         
     | 
| 
      
 223 
     | 
    
         
            +
            				IPHONEOS_DEPLOYMENT_TARGET = 8.0;
         
     | 
| 
      
 224 
     | 
    
         
            +
            				MTL_ENABLE_DEBUG_INFO = YES;
         
     | 
| 
      
 225 
     | 
    
         
            +
            				ONLY_ACTIVE_ARCH = YES;
         
     | 
| 
      
 226 
     | 
    
         
            +
            				SDKROOT = iphoneos;
         
     | 
| 
      
 227 
     | 
    
         
            +
            			};
         
     | 
| 
      
 228 
     | 
    
         
            +
            			name = Debug;
         
     | 
| 
      
 229 
     | 
    
         
            +
            		};
         
     | 
| 
      
 230 
     | 
    
         
            +
            		9B89D2FC19EFC04D00803D42 /* Release */ = {
         
     | 
| 
      
 231 
     | 
    
         
            +
            			isa = XCBuildConfiguration;
         
     | 
| 
      
 232 
     | 
    
         
            +
            			buildSettings = {
         
     | 
| 
      
 233 
     | 
    
         
            +
            				ALWAYS_SEARCH_USER_PATHS = NO;
         
     | 
| 
      
 234 
     | 
    
         
            +
            				CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
         
     | 
| 
      
 235 
     | 
    
         
            +
            				CLANG_CXX_LIBRARY = "libc++";
         
     | 
| 
      
 236 
     | 
    
         
            +
            				CLANG_ENABLE_MODULES = YES;
         
     | 
| 
      
 237 
     | 
    
         
            +
            				CLANG_ENABLE_OBJC_ARC = YES;
         
     | 
| 
      
 238 
     | 
    
         
            +
            				CLANG_WARN_BOOL_CONVERSION = YES;
         
     | 
| 
      
 239 
     | 
    
         
            +
            				CLANG_WARN_CONSTANT_CONVERSION = YES;
         
     | 
| 
      
 240 
     | 
    
         
            +
            				CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
         
     | 
| 
      
 241 
     | 
    
         
            +
            				CLANG_WARN_EMPTY_BODY = YES;
         
     | 
| 
      
 242 
     | 
    
         
            +
            				CLANG_WARN_ENUM_CONVERSION = YES;
         
     | 
| 
      
 243 
     | 
    
         
            +
            				CLANG_WARN_INT_CONVERSION = YES;
         
     | 
| 
      
 244 
     | 
    
         
            +
            				CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
         
     | 
| 
      
 245 
     | 
    
         
            +
            				CLANG_WARN_UNREACHABLE_CODE = YES;
         
     | 
| 
      
 246 
     | 
    
         
            +
            				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
         
     | 
| 
      
 247 
     | 
    
         
            +
            				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
         
     | 
| 
      
 248 
     | 
    
         
            +
            				COPY_PHASE_STRIP = YES;
         
     | 
| 
      
 249 
     | 
    
         
            +
            				ENABLE_NS_ASSERTIONS = NO;
         
     | 
| 
      
 250 
     | 
    
         
            +
            				ENABLE_STRICT_OBJC_MSGSEND = YES;
         
     | 
| 
      
 251 
     | 
    
         
            +
            				GCC_C_LANGUAGE_STANDARD = gnu99;
         
     | 
| 
      
 252 
     | 
    
         
            +
            				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
         
     | 
| 
      
 253 
     | 
    
         
            +
            				GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
         
     | 
| 
      
 254 
     | 
    
         
            +
            				GCC_WARN_UNDECLARED_SELECTOR = YES;
         
     | 
| 
      
 255 
     | 
    
         
            +
            				GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
         
     | 
| 
      
 256 
     | 
    
         
            +
            				GCC_WARN_UNUSED_FUNCTION = YES;
         
     | 
| 
      
 257 
     | 
    
         
            +
            				GCC_WARN_UNUSED_VARIABLE = YES;
         
     | 
| 
      
 258 
     | 
    
         
            +
            				IPHONEOS_DEPLOYMENT_TARGET = 8.0;
         
     | 
| 
      
 259 
     | 
    
         
            +
            				MTL_ENABLE_DEBUG_INFO = NO;
         
     | 
| 
      
 260 
     | 
    
         
            +
            				SDKROOT = iphoneos;
         
     | 
| 
      
 261 
     | 
    
         
            +
            				VALIDATE_PRODUCT = YES;
         
     | 
| 
      
 262 
     | 
    
         
            +
            			};
         
     | 
| 
      
 263 
     | 
    
         
            +
            			name = Release;
         
     | 
| 
      
 264 
     | 
    
         
            +
            		};
         
     | 
| 
      
 265 
     | 
    
         
            +
            		9B89D2FE19EFC04D00803D42 /* Debug */ = {
         
     | 
| 
      
 266 
     | 
    
         
            +
            			isa = XCBuildConfiguration;
         
     | 
| 
      
 267 
     | 
    
         
            +
            			baseConfigurationReference = 4A66E303CCF429F9D7C502D1 /* Pods-LibraryConsumer.debug.xcconfig */;
         
     | 
| 
      
 268 
     | 
    
         
            +
            			buildSettings = {
         
     | 
| 
      
 269 
     | 
    
         
            +
            				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
         
     | 
| 
      
 270 
     | 
    
         
            +
            				INFOPLIST_FILE = LibraryConsumer/Info.plist;
         
     | 
| 
      
 271 
     | 
    
         
            +
            				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
         
     | 
| 
      
 272 
     | 
    
         
            +
            				PRODUCT_NAME = "$(TARGET_NAME)";
         
     | 
| 
      
 273 
     | 
    
         
            +
            			};
         
     | 
| 
      
 274 
     | 
    
         
            +
            			name = Debug;
         
     | 
| 
      
 275 
     | 
    
         
            +
            		};
         
     | 
| 
      
 276 
     | 
    
         
            +
            		9B89D2FF19EFC04D00803D42 /* Release */ = {
         
     | 
| 
      
 277 
     | 
    
         
            +
            			isa = XCBuildConfiguration;
         
     | 
| 
      
 278 
     | 
    
         
            +
            			baseConfigurationReference = 0AA277EF1097393AE42174B8 /* Pods-LibraryConsumer.release.xcconfig */;
         
     | 
| 
      
 279 
     | 
    
         
            +
            			buildSettings = {
         
     | 
| 
      
 280 
     | 
    
         
            +
            				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
         
     | 
| 
      
 281 
     | 
    
         
            +
            				INFOPLIST_FILE = LibraryConsumer/Info.plist;
         
     | 
| 
      
 282 
     | 
    
         
            +
            				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
         
     | 
| 
      
 283 
     | 
    
         
            +
            				PRODUCT_NAME = "$(TARGET_NAME)";
         
     | 
| 
      
 284 
     | 
    
         
            +
            			};
         
     | 
| 
      
 285 
     | 
    
         
            +
            			name = Release;
         
     | 
| 
      
 286 
     | 
    
         
            +
            		};
         
     | 
| 
      
 287 
     | 
    
         
            +
            /* End XCBuildConfiguration section */
         
     | 
| 
      
 288 
     | 
    
         
            +
             
     | 
| 
      
 289 
     | 
    
         
            +
            /* Begin XCConfigurationList section */
         
     | 
| 
      
 290 
     | 
    
         
            +
            		9B89D2D519EFC04D00803D42 /* Build configuration list for PBXProject "LibraryConsumer" */ = {
         
     | 
| 
      
 291 
     | 
    
         
            +
            			isa = XCConfigurationList;
         
     | 
| 
      
 292 
     | 
    
         
            +
            			buildConfigurations = (
         
     | 
| 
      
 293 
     | 
    
         
            +
            				9B89D2FB19EFC04D00803D42 /* Debug */,
         
     | 
| 
      
 294 
     | 
    
         
            +
            				9B89D2FC19EFC04D00803D42 /* Release */,
         
     | 
| 
      
 295 
     | 
    
         
            +
            			);
         
     | 
| 
      
 296 
     | 
    
         
            +
            			defaultConfigurationIsVisible = 0;
         
     | 
| 
      
 297 
     | 
    
         
            +
            			defaultConfigurationName = Release;
         
     | 
| 
      
 298 
     | 
    
         
            +
            		};
         
     | 
| 
      
 299 
     | 
    
         
            +
            		9B89D2FD19EFC04D00803D42 /* Build configuration list for PBXNativeTarget "LibraryConsumer" */ = {
         
     | 
| 
      
 300 
     | 
    
         
            +
            			isa = XCConfigurationList;
         
     | 
| 
      
 301 
     | 
    
         
            +
            			buildConfigurations = (
         
     | 
| 
      
 302 
     | 
    
         
            +
            				9B89D2FE19EFC04D00803D42 /* Debug */,
         
     | 
| 
      
 303 
     | 
    
         
            +
            				9B89D2FF19EFC04D00803D42 /* Release */,
         
     | 
| 
      
 304 
     | 
    
         
            +
            			);
         
     | 
| 
      
 305 
     | 
    
         
            +
            			defaultConfigurationIsVisible = 0;
         
     | 
| 
      
 306 
     | 
    
         
            +
            			defaultConfigurationName = Release;
         
     | 
| 
      
 307 
     | 
    
         
            +
            		};
         
     | 
| 
      
 308 
     | 
    
         
            +
            /* End XCConfigurationList section */
         
     | 
| 
      
 309 
     | 
    
         
            +
            	};
         
     | 
| 
      
 310 
     | 
    
         
            +
            	rootObject = 9B89D2D219EFC04D00803D42 /* Project object */;
         
     | 
| 
      
 311 
     | 
    
         
            +
            }
         
     |