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,100 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0" encoding="UTF-8"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <Scheme
         
     | 
| 
      
 3 
     | 
    
         
            +
               LastUpgradeVersion = "0600"
         
     | 
| 
      
 4 
     | 
    
         
            +
               version = "1.3">
         
     | 
| 
      
 5 
     | 
    
         
            +
               <BuildAction
         
     | 
| 
      
 6 
     | 
    
         
            +
                  parallelizeBuildables = "YES"
         
     | 
| 
      
 7 
     | 
    
         
            +
                  buildImplicitDependencies = "YES">
         
     | 
| 
      
 8 
     | 
    
         
            +
                  <BuildActionEntries>
         
     | 
| 
      
 9 
     | 
    
         
            +
                     <BuildActionEntry
         
     | 
| 
      
 10 
     | 
    
         
            +
                        buildForTesting = "YES"
         
     | 
| 
      
 11 
     | 
    
         
            +
                        buildForRunning = "YES"
         
     | 
| 
      
 12 
     | 
    
         
            +
                        buildForProfiling = "YES"
         
     | 
| 
      
 13 
     | 
    
         
            +
                        buildForArchiving = "YES"
         
     | 
| 
      
 14 
     | 
    
         
            +
                        buildForAnalyzing = "YES">
         
     | 
| 
      
 15 
     | 
    
         
            +
                        <BuildableReference
         
     | 
| 
      
 16 
     | 
    
         
            +
                           BuildableIdentifier = "primary"
         
     | 
| 
      
 17 
     | 
    
         
            +
                           BlueprintIdentifier = "9B89D2D919EFC04D00803D42"
         
     | 
| 
      
 18 
     | 
    
         
            +
                           BuildableName = "LibraryConsumer.app"
         
     | 
| 
      
 19 
     | 
    
         
            +
                           BlueprintName = "LibraryConsumer"
         
     | 
| 
      
 20 
     | 
    
         
            +
                           ReferencedContainer = "container:LibraryConsumer.xcodeproj">
         
     | 
| 
      
 21 
     | 
    
         
            +
                        </BuildableReference>
         
     | 
| 
      
 22 
     | 
    
         
            +
                     </BuildActionEntry>
         
     | 
| 
      
 23 
     | 
    
         
            +
                     <BuildActionEntry
         
     | 
| 
      
 24 
     | 
    
         
            +
                        buildForTesting = "YES"
         
     | 
| 
      
 25 
     | 
    
         
            +
                        buildForRunning = "YES"
         
     | 
| 
      
 26 
     | 
    
         
            +
                        buildForProfiling = "NO"
         
     | 
| 
      
 27 
     | 
    
         
            +
                        buildForArchiving = "NO"
         
     | 
| 
      
 28 
     | 
    
         
            +
                        buildForAnalyzing = "YES">
         
     | 
| 
      
 29 
     | 
    
         
            +
                        <BuildableReference
         
     | 
| 
      
 30 
     | 
    
         
            +
                           BuildableIdentifier = "primary"
         
     | 
| 
      
 31 
     | 
    
         
            +
                           BlueprintIdentifier = "9B89D2F219EFC04D00803D42"
         
     | 
| 
      
 32 
     | 
    
         
            +
                           BuildableName = "LibraryConsumerTests.xctest"
         
     | 
| 
      
 33 
     | 
    
         
            +
                           BlueprintName = "LibraryConsumerTests"
         
     | 
| 
      
 34 
     | 
    
         
            +
                           ReferencedContainer = "container:LibraryConsumer.xcodeproj">
         
     | 
| 
      
 35 
     | 
    
         
            +
                        </BuildableReference>
         
     | 
| 
      
 36 
     | 
    
         
            +
                     </BuildActionEntry>
         
     | 
| 
      
 37 
     | 
    
         
            +
                  </BuildActionEntries>
         
     | 
| 
      
 38 
     | 
    
         
            +
               </BuildAction>
         
     | 
| 
      
 39 
     | 
    
         
            +
               <TestAction
         
     | 
| 
      
 40 
     | 
    
         
            +
                  selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
         
     | 
| 
      
 41 
     | 
    
         
            +
                  selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
         
     | 
| 
      
 42 
     | 
    
         
            +
                  shouldUseLaunchSchemeArgsEnv = "YES"
         
     | 
| 
      
 43 
     | 
    
         
            +
                  buildConfiguration = "Debug">
         
     | 
| 
      
 44 
     | 
    
         
            +
                  <Testables>
         
     | 
| 
      
 45 
     | 
    
         
            +
                  </Testables>
         
     | 
| 
      
 46 
     | 
    
         
            +
                  <MacroExpansion>
         
     | 
| 
      
 47 
     | 
    
         
            +
                     <BuildableReference
         
     | 
| 
      
 48 
     | 
    
         
            +
                        BuildableIdentifier = "primary"
         
     | 
| 
      
 49 
     | 
    
         
            +
                        BlueprintIdentifier = "9B89D2D919EFC04D00803D42"
         
     | 
| 
      
 50 
     | 
    
         
            +
                        BuildableName = "LibraryConsumer.app"
         
     | 
| 
      
 51 
     | 
    
         
            +
                        BlueprintName = "LibraryConsumer"
         
     | 
| 
      
 52 
     | 
    
         
            +
                        ReferencedContainer = "container:LibraryConsumer.xcodeproj">
         
     | 
| 
      
 53 
     | 
    
         
            +
                     </BuildableReference>
         
     | 
| 
      
 54 
     | 
    
         
            +
                  </MacroExpansion>
         
     | 
| 
      
 55 
     | 
    
         
            +
               </TestAction>
         
     | 
| 
      
 56 
     | 
    
         
            +
               <LaunchAction
         
     | 
| 
      
 57 
     | 
    
         
            +
                  selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
         
     | 
| 
      
 58 
     | 
    
         
            +
                  selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
         
     | 
| 
      
 59 
     | 
    
         
            +
                  launchStyle = "0"
         
     | 
| 
      
 60 
     | 
    
         
            +
                  useCustomWorkingDirectory = "NO"
         
     | 
| 
      
 61 
     | 
    
         
            +
                  buildConfiguration = "Debug"
         
     | 
| 
      
 62 
     | 
    
         
            +
                  ignoresPersistentStateOnLaunch = "NO"
         
     | 
| 
      
 63 
     | 
    
         
            +
                  debugDocumentVersioning = "YES"
         
     | 
| 
      
 64 
     | 
    
         
            +
                  allowLocationSimulation = "YES">
         
     | 
| 
      
 65 
     | 
    
         
            +
                  <BuildableProductRunnable>
         
     | 
| 
      
 66 
     | 
    
         
            +
                     <BuildableReference
         
     | 
| 
      
 67 
     | 
    
         
            +
                        BuildableIdentifier = "primary"
         
     | 
| 
      
 68 
     | 
    
         
            +
                        BlueprintIdentifier = "9B89D2D919EFC04D00803D42"
         
     | 
| 
      
 69 
     | 
    
         
            +
                        BuildableName = "LibraryConsumer.app"
         
     | 
| 
      
 70 
     | 
    
         
            +
                        BlueprintName = "LibraryConsumer"
         
     | 
| 
      
 71 
     | 
    
         
            +
                        ReferencedContainer = "container:LibraryConsumer.xcodeproj">
         
     | 
| 
      
 72 
     | 
    
         
            +
                     </BuildableReference>
         
     | 
| 
      
 73 
     | 
    
         
            +
                  </BuildableProductRunnable>
         
     | 
| 
      
 74 
     | 
    
         
            +
                  <AdditionalOptions>
         
     | 
| 
      
 75 
     | 
    
         
            +
                  </AdditionalOptions>
         
     | 
| 
      
 76 
     | 
    
         
            +
               </LaunchAction>
         
     | 
| 
      
 77 
     | 
    
         
            +
               <ProfileAction
         
     | 
| 
      
 78 
     | 
    
         
            +
                  shouldUseLaunchSchemeArgsEnv = "YES"
         
     | 
| 
      
 79 
     | 
    
         
            +
                  savedToolIdentifier = ""
         
     | 
| 
      
 80 
     | 
    
         
            +
                  useCustomWorkingDirectory = "NO"
         
     | 
| 
      
 81 
     | 
    
         
            +
                  buildConfiguration = "Release"
         
     | 
| 
      
 82 
     | 
    
         
            +
                  debugDocumentVersioning = "YES">
         
     | 
| 
      
 83 
     | 
    
         
            +
                  <BuildableProductRunnable>
         
     | 
| 
      
 84 
     | 
    
         
            +
                     <BuildableReference
         
     | 
| 
      
 85 
     | 
    
         
            +
                        BuildableIdentifier = "primary"
         
     | 
| 
      
 86 
     | 
    
         
            +
                        BlueprintIdentifier = "9B89D2D919EFC04D00803D42"
         
     | 
| 
      
 87 
     | 
    
         
            +
                        BuildableName = "LibraryConsumer.app"
         
     | 
| 
      
 88 
     | 
    
         
            +
                        BlueprintName = "LibraryConsumer"
         
     | 
| 
      
 89 
     | 
    
         
            +
                        ReferencedContainer = "container:LibraryConsumer.xcodeproj">
         
     | 
| 
      
 90 
     | 
    
         
            +
                     </BuildableReference>
         
     | 
| 
      
 91 
     | 
    
         
            +
                  </BuildableProductRunnable>
         
     | 
| 
      
 92 
     | 
    
         
            +
               </ProfileAction>
         
     | 
| 
      
 93 
     | 
    
         
            +
               <AnalyzeAction
         
     | 
| 
      
 94 
     | 
    
         
            +
                  buildConfiguration = "Debug">
         
     | 
| 
      
 95 
     | 
    
         
            +
               </AnalyzeAction>
         
     | 
| 
      
 96 
     | 
    
         
            +
               <ArchiveAction
         
     | 
| 
      
 97 
     | 
    
         
            +
                  buildConfiguration = "Release"
         
     | 
| 
      
 98 
     | 
    
         
            +
                  revealArchiveInOrganizer = "YES">
         
     | 
| 
      
 99 
     | 
    
         
            +
               </ArchiveAction>
         
     | 
| 
      
 100 
     | 
    
         
            +
            </Scheme>
         
     | 
| 
         @@ -0,0 +1,17 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            //
         
     | 
| 
      
 2 
     | 
    
         
            +
            //  AppDelegate.h
         
     | 
| 
      
 3 
     | 
    
         
            +
            //  LibraryConsumer
         
     | 
| 
      
 4 
     | 
    
         
            +
            //
         
     | 
| 
      
 5 
     | 
    
         
            +
            //  Created by Ole Gammelgaard Poulsen on 16/10/14.
         
     | 
| 
      
 6 
     | 
    
         
            +
            //  Copyright (c) 2014 Shape A/S. All rights reserved.
         
     | 
| 
      
 7 
     | 
    
         
            +
            //
         
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
            #import <UIKit/UIKit.h>
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
            @interface AppDelegate : UIResponder <UIApplicationDelegate>
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
            @property (strong, nonatomic) UIWindow *window;
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
             
     | 
| 
      
 16 
     | 
    
         
            +
            @end
         
     | 
| 
      
 17 
     | 
    
         
            +
             
     | 
| 
         @@ -0,0 +1,27 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            //
         
     | 
| 
      
 2 
     | 
    
         
            +
            //  AppDelegate.m
         
     | 
| 
      
 3 
     | 
    
         
            +
            //  LibraryConsumer
         
     | 
| 
      
 4 
     | 
    
         
            +
            //
         
     | 
| 
      
 5 
     | 
    
         
            +
            //  Created by Ole Gammelgaard Poulsen on 16/10/14.
         
     | 
| 
      
 6 
     | 
    
         
            +
            //  Copyright (c) 2014 Shape A/S. All rights reserved.
         
     | 
| 
      
 7 
     | 
    
         
            +
            //
         
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
            #import <LibraryDemo/MyDemoClass.h>
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
            #import "AppDelegate.h"
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
            @interface AppDelegate ()
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
            @end
         
     | 
| 
      
 16 
     | 
    
         
            +
             
     | 
| 
      
 17 
     | 
    
         
            +
            @implementation AppDelegate
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
             
     | 
| 
      
 20 
     | 
    
         
            +
            - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
         
     | 
| 
      
 21 
     | 
    
         
            +
             
     | 
| 
      
 22 
     | 
    
         
            +
            	NSLog(@"%@", [MyDemoClass welcomeMessage]);
         
     | 
| 
      
 23 
     | 
    
         
            +
             
     | 
| 
      
 24 
     | 
    
         
            +
            	return YES;
         
     | 
| 
      
 25 
     | 
    
         
            +
            }
         
     | 
| 
      
 26 
     | 
    
         
            +
             
     | 
| 
      
 27 
     | 
    
         
            +
            @end
         
     | 
| 
         @@ -0,0 +1,40 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <?xml version="1.0" encoding="UTF-8"?>
         
     | 
| 
      
 2 
     | 
    
         
            +
            <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
         
     | 
| 
      
 3 
     | 
    
         
            +
            <plist version="1.0">
         
     | 
| 
      
 4 
     | 
    
         
            +
            <dict>
         
     | 
| 
      
 5 
     | 
    
         
            +
            	<key>CFBundleDevelopmentRegion</key>
         
     | 
| 
      
 6 
     | 
    
         
            +
            	<string>en</string>
         
     | 
| 
      
 7 
     | 
    
         
            +
            	<key>CFBundleExecutable</key>
         
     | 
| 
      
 8 
     | 
    
         
            +
            	<string>$(EXECUTABLE_NAME)</string>
         
     | 
| 
      
 9 
     | 
    
         
            +
            	<key>CFBundleIdentifier</key>
         
     | 
| 
      
 10 
     | 
    
         
            +
            	<string>dk.shape.$(PRODUCT_NAME:rfc1034identifier)</string>
         
     | 
| 
      
 11 
     | 
    
         
            +
            	<key>CFBundleInfoDictionaryVersion</key>
         
     | 
| 
      
 12 
     | 
    
         
            +
            	<string>6.0</string>
         
     | 
| 
      
 13 
     | 
    
         
            +
            	<key>CFBundleName</key>
         
     | 
| 
      
 14 
     | 
    
         
            +
            	<string>$(PRODUCT_NAME)</string>
         
     | 
| 
      
 15 
     | 
    
         
            +
            	<key>CFBundleGdType</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,14 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            Pod::Spec.new do |s|
         
     | 
| 
      
 2 
     | 
    
         
            +
              s.name                = 'LibraryDemo'
         
     | 
| 
      
 3 
     | 
    
         
            +
              s.version             = '1.0.0'
         
     | 
| 
      
 4 
     | 
    
         
            +
              s.summary             = 'Demo'
         
     | 
| 
      
 5 
     | 
    
         
            +
              s.author              = {'Ole Gammelgaard Poulsen' => 'ole@shape.dk' }
         
     | 
| 
      
 6 
     | 
    
         
            +
              s.source              = { :git => 'https://github.com/olegam/LibraryDemo.git', :tag => s.version.to_s }
         
     | 
| 
      
 7 
     | 
    
         
            +
              s.source_files        = 'sources/**/*.{h,m}'
         
     | 
| 
      
 8 
     | 
    
         
            +
              s.requires_arc        = true
         
     | 
| 
      
 9 
     | 
    
         
            +
              s.ios.deployment_target = '6.0'
         
     | 
| 
      
 10 
     | 
    
         
            +
              s.osx.deployment_target = '10.9'
         
     | 
| 
      
 11 
     | 
    
         
            +
             
     | 
| 
      
 12 
     | 
    
         
            +
              s.license = 'GPL' # :trollface:
         
     | 
| 
      
 13 
     | 
    
         
            +
              s.homepage = 'https://www.youtube.com/watch?v=32UGD0fV45g'
         
     | 
| 
      
 14 
     | 
    
         
            +
            end
         
     | 
| 
         
            File without changes
         
     | 
| 
         @@ -0,0 +1,19 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            Pod::Spec.new do |s|
         
     | 
| 
      
 2 
     | 
    
         
            +
              s.name         = 'LocalNikeKit'
         
     | 
| 
      
 3 
     | 
    
         
            +
              s.version      = '0.0.1'
         
     | 
| 
      
 4 
     | 
    
         
            +
              s.summary      = 'Objective-C implementation of the Nike+ API.'
         
     | 
| 
      
 5 
     | 
    
         
            +
              s.homepage     = 'https://github.com/neonichu/NikeKit'
         
     | 
| 
      
 6 
     | 
    
         
            +
              s.license      = {:type => 'MIT', :file => 'LICENSE'}
         
     | 
| 
      
 7 
     | 
    
         
            +
              s.authors      = { 'Boris Bügling' => 'http://buegling.com' }
         
     | 
| 
      
 8 
     | 
    
         
            +
              s.source       = { :git => 'https://github.com/neonichu/NikeKit.git', :tag => s.version.to_s }
         
     | 
| 
      
 9 
     | 
    
         
            +
              s.platform     = :ios, '8.0'
         
     | 
| 
      
 10 
     | 
    
         
            +
              
         
     | 
| 
      
 11 
     | 
    
         
            +
              s.public_header_files = '*.h'
         
     | 
| 
      
 12 
     | 
    
         
            +
              s.source_files = '*.{h,m}'
         
     | 
| 
      
 13 
     | 
    
         
            +
              s.frameworks = 'Foundation'
         
     | 
| 
      
 14 
     | 
    
         
            +
              s.requires_arc = true
         
     | 
| 
      
 15 
     | 
    
         
            +
             
     | 
| 
      
 16 
     | 
    
         
            +
              s.dependency 'AFNetworking'
         
     | 
| 
      
 17 
     | 
    
         
            +
              s.dependency 'ISO8601DateFormatter'
         
     | 
| 
      
 18 
     | 
    
         
            +
              s.dependency 'KZPropertyMapper'
         
     | 
| 
      
 19 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,19 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            Pod::Spec.new do |s|
         
     | 
| 
      
 2 
     | 
    
         
            +
              s.name         = 'NikeKit'
         
     | 
| 
      
 3 
     | 
    
         
            +
              s.version      = '0.0.1'
         
     | 
| 
      
 4 
     | 
    
         
            +
              s.summary      = 'Objective-C implementation of the Nike+ API.'
         
     | 
| 
      
 5 
     | 
    
         
            +
              s.homepage     = 'https://github.com/neonichu/NikeKit'
         
     | 
| 
      
 6 
     | 
    
         
            +
              s.license      = {:type => 'MIT', :file => 'LICENSE'}
         
     | 
| 
      
 7 
     | 
    
         
            +
              s.authors      = { 'Boris Bügling' => 'http://buegling.com' }
         
     | 
| 
      
 8 
     | 
    
         
            +
              s.source       = { :git => 'https://github.com/neonichu/NikeKit.git', :tag => s.version.to_s }
         
     | 
| 
      
 9 
     | 
    
         
            +
              s.platform     = :ios, '8.0'
         
     | 
| 
      
 10 
     | 
    
         
            +
              
         
     | 
| 
      
 11 
     | 
    
         
            +
              s.public_header_files = '*.h'
         
     | 
| 
      
 12 
     | 
    
         
            +
              s.source_files = '*.{h,m}'
         
     | 
| 
      
 13 
     | 
    
         
            +
              s.frameworks = 'Foundation'
         
     | 
| 
      
 14 
     | 
    
         
            +
              s.requires_arc = true
         
     | 
| 
      
 15 
     | 
    
         
            +
             
     | 
| 
      
 16 
     | 
    
         
            +
              s.dependency 'AFNetworking'
         
     | 
| 
      
 17 
     | 
    
         
            +
              s.dependency 'ISO8601DateFormatter'
         
     | 
| 
      
 18 
     | 
    
         
            +
              s.dependency 'KZPropertyMapper'
         
     | 
| 
      
 19 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,18 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            Pod::Spec.new do |spec|
         
     | 
| 
      
 2 
     | 
    
         
            +
              spec.name = 'OpenSans'
         
     | 
| 
      
 3 
     | 
    
         
            +
              spec.version = '1.0.3'
         
     | 
| 
      
 4 
     | 
    
         
            +
              spec.summary = 'A podspec encapsulating OpenSans font for iOS'
         
     | 
| 
      
 5 
     | 
    
         
            +
              spec.description = "Open Sans is a humanist sans serif typeface designed by Steve Matteson, Type Director of Ascender Corp. This version contains the complete 897 character set, which includes the standard ISO Latin 1, Latin CE, Greek and Cyrillic character sets. Open Sans was designed with an upright stress, open forms and a neutral, yet friendly appearance. It was optimized for print, web, and mobile interfaces, and has excellent legibility characteristics in its letterforms."
         
     | 
| 
      
 6 
     | 
    
         
            +
              spec.license = { :type => 'Apache License, Version 2.0', :file => 'LICENSE.txt' }
         
     | 
| 
      
 7 
     | 
    
         
            +
              spec.authors = { 'Kyle Fuller' => 'inbox@kylefuller.co.uk' }
         
     | 
| 
      
 8 
     | 
    
         
            +
              spec.homepage = 'https://github.com/CocoaPods-Fonts/OpenSans'
         
     | 
| 
      
 9 
     | 
    
         
            +
              spec.screenshot = 'http://f.cl.ly/items/2t2F032e3W0h2T1i0j1n/opensans-ios7-iphone5.png'
         
     | 
| 
      
 10 
     | 
    
         
            +
              spec.social_media_url = 'https://twitter.com/kylefuller'
         
     | 
| 
      
 11 
     | 
    
         
            +
              spec.platform = :ios
         
     | 
| 
      
 12 
     | 
    
         
            +
              spec.source = { :git => 'https://github.com/CocoaPods-Fonts/OpenSans.git', :tag => spec.version.to_s }
         
     | 
| 
      
 13 
     | 
    
         
            +
              spec.source_files = 'UIFont+OpenSans.{h,m}'
         
     | 
| 
      
 14 
     | 
    
         
            +
              spec.resource_bundle = { 'OpenSans' => 'Fonts/*.ttf' }
         
     | 
| 
      
 15 
     | 
    
         
            +
              spec.frameworks = 'UIKit', 'CoreText'
         
     | 
| 
      
 16 
     | 
    
         
            +
              spec.requires_arc = true
         
     | 
| 
      
 17 
     | 
    
         
            +
            end
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
         @@ -0,0 +1,507 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            // !$*UTF8*$!
         
     | 
| 
      
 2 
     | 
    
         
            +
            {
         
     | 
| 
      
 3 
     | 
    
         
            +
            	archiveVersion = 1;
         
     | 
| 
      
 4 
     | 
    
         
            +
            	classes = {
         
     | 
| 
      
 5 
     | 
    
         
            +
            	};
         
     | 
| 
      
 6 
     | 
    
         
            +
            	objectVersion = 46;
         
     | 
| 
      
 7 
     | 
    
         
            +
            	objects = {
         
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
            /* Begin PBXBuildFile section */
         
     | 
| 
      
 10 
     | 
    
         
            +
            		06C49FBB8D44715480415078 /* libPods-GdTest.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9B50A03E1C68D6EA050ADDB4 /* libPods-GdTest.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 /* GdTestTests.m in Sources */ = {isa = PBXBuildFile; fileRef = A1DE56DD19AA4A97000339C6 /* GdTestTests.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 = GdTest;
         
     | 
| 
      
 33 
     | 
    
         
            +
            		};
         
     | 
| 
      
 34 
     | 
    
         
            +
            /* End PBXContainerItemProxy section */
         
     | 
| 
      
 35 
     | 
    
         
            +
             
     | 
| 
      
 36 
     | 
    
         
            +
            /* Begin PBXFileReference section */
         
     | 
| 
      
 37 
     | 
    
         
            +
            		551F7332E67FB33B4FD37276 /* Pods-GdTest.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-GdTest.release.xcconfig"; path = "Pods/Target Support Files/Pods-GdTest/Pods-GdTest.release.xcconfig"; sourceTree = "<group>"; };
         
     | 
| 
      
 38 
     | 
    
         
            +
            		9B50A03E1C68D6EA050ADDB4 /* libPods-GdTest.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-GdTest.a"; sourceTree = BUILT_PRODUCTS_DIR; };
         
     | 
| 
      
 39 
     | 
    
         
            +
            		A0F1D7427B53DCDF0F9C99C4 /* Pods-GdTest.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-GdTest.debug.xcconfig"; path = "Pods/Target Support Files/Pods-GdTest/Pods-GdTest.debug.xcconfig"; sourceTree = "<group>"; };
         
     | 
| 
      
 40 
     | 
    
         
            +
            		A1DE56B519AA4A97000339C6 /* GdTest.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = GdTest.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 /* GdTest-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "GdTest-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 /* GdTest-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "GdTest-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 /* GdTestTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = GdTestTests.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 /* GdTestTests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "GdTestTests-Info.plist"; sourceTree = "<group>"; };
         
     | 
| 
      
 54 
     | 
    
         
            +
            		A1DE56DB19AA4A97000339C6 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
         
     | 
| 
      
 55 
     | 
    
         
            +
            		A1DE56DD19AA4A97000339C6 /* GdTestTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = GdTestTests.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-GdTest.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-GdTest.debug.xcconfig */,
         
     | 
| 
      
 89 
     | 
    
         
            +
            				551F7332E67FB33B4FD37276 /* Pods-GdTest.release.xcconfig */,
         
     | 
| 
      
 90 
     | 
    
         
            +
            			);
         
     | 
| 
      
 91 
     | 
    
         
            +
            			name = Pods;
         
     | 
| 
      
 92 
     | 
    
         
            +
            			sourceTree = "<group>";
         
     | 
| 
      
 93 
     | 
    
         
            +
            		};
         
     | 
| 
      
 94 
     | 
    
         
            +
            		A1DE56AC19AA4A97000339C6 = {
         
     | 
| 
      
 95 
     | 
    
         
            +
            			isa = PBXGroup;
         
     | 
| 
      
 96 
     | 
    
         
            +
            			children = (
         
     | 
| 
      
 97 
     | 
    
         
            +
            				A1DE56BE19AA4A97000339C6 /* GdTest */,
         
     | 
| 
      
 98 
     | 
    
         
            +
            				A1DE56D719AA4A97000339C6 /* GdTestTests */,
         
     | 
| 
      
 99 
     | 
    
         
            +
            				A1DE56B719AA4A97000339C6 /* Frameworks */,
         
     | 
| 
      
 100 
     | 
    
         
            +
            				A1DE56B619AA4A97000339C6 /* Products */,
         
     | 
| 
      
 101 
     | 
    
         
            +
            				71D95E6AA2488D1DB8BAC401 /* Pods */,
         
     | 
| 
      
 102 
     | 
    
         
            +
            			);
         
     | 
| 
      
 103 
     | 
    
         
            +
            			sourceTree = "<group>";
         
     | 
| 
      
 104 
     | 
    
         
            +
            		};
         
     | 
| 
      
 105 
     | 
    
         
            +
            		A1DE56B619AA4A97000339C6 /* Products */ = {
         
     | 
| 
      
 106 
     | 
    
         
            +
            			isa = PBXGroup;
         
     | 
| 
      
 107 
     | 
    
         
            +
            			children = (
         
     | 
| 
      
 108 
     | 
    
         
            +
            				A1DE56B519AA4A97000339C6 /* GdTest.app */,
         
     | 
| 
      
 109 
     | 
    
         
            +
            				A1DE56D019AA4A97000339C6 /* GdTestTests.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-GdTest.a */,
         
     | 
| 
      
 123 
     | 
    
         
            +
            			);
         
     | 
| 
      
 124 
     | 
    
         
            +
            			name = Frameworks;
         
     | 
| 
      
 125 
     | 
    
         
            +
            			sourceTree = "<group>";
         
     | 
| 
      
 126 
     | 
    
         
            +
            		};
         
     | 
| 
      
 127 
     | 
    
         
            +
            		A1DE56BE19AA4A97000339C6 /* GdTest */ = {
         
     | 
| 
      
 128 
     | 
    
         
            +
            			isa = PBXGroup;
         
     | 
| 
      
 129 
     | 
    
         
            +
            			children = (
         
     | 
| 
      
 130 
     | 
    
         
            +
            				A1DE56C719AA4A97000339C6 /* CPDAppDelegate.h */,
         
     | 
| 
      
 131 
     | 
    
         
            +
            				A1DE56C819AA4A97000339C6 /* CPDAppDelegate.m */,
         
     | 
| 
      
 132 
     | 
    
         
            +
            				A1DE56CA19AA4A97000339C6 /* Images.xcassets */,
         
     | 
| 
      
 133 
     | 
    
         
            +
            				A1DE56BF19AA4A97000339C6 /* Supporting Files */,
         
     | 
| 
      
 134 
     | 
    
         
            +
            			);
         
     | 
| 
      
 135 
     | 
    
         
            +
            			path = GdTest;
         
     | 
| 
      
 136 
     | 
    
         
            +
            			sourceTree = "<group>";
         
     | 
| 
      
 137 
     | 
    
         
            +
            		};
         
     | 
| 
      
 138 
     | 
    
         
            +
            		A1DE56BF19AA4A97000339C6 /* Supporting Files */ = {
         
     | 
| 
      
 139 
     | 
    
         
            +
            			isa = PBXGroup;
         
     | 
| 
      
 140 
     | 
    
         
            +
            			children = (
         
     | 
| 
      
 141 
     | 
    
         
            +
            				A1DE56C019AA4A97000339C6 /* GdTest-Info.plist */,
         
     | 
| 
      
 142 
     | 
    
         
            +
            				A1DE56C119AA4A97000339C6 /* InfoPlist.strings */,
         
     | 
| 
      
 143 
     | 
    
         
            +
            				A1DE56C419AA4A97000339C6 /* main.m */,
         
     | 
| 
      
 144 
     | 
    
         
            +
            				A1DE56C619AA4A97000339C6 /* GdTest-Prefix.pch */,
         
     | 
| 
      
 145 
     | 
    
         
            +
            			);
         
     | 
| 
      
 146 
     | 
    
         
            +
            			name = "Supporting Files";
         
     | 
| 
      
 147 
     | 
    
         
            +
            			sourceTree = "<group>";
         
     | 
| 
      
 148 
     | 
    
         
            +
            		};
         
     | 
| 
      
 149 
     | 
    
         
            +
            		A1DE56D719AA4A97000339C6 /* GdTestTests */ = {
         
     | 
| 
      
 150 
     | 
    
         
            +
            			isa = PBXGroup;
         
     | 
| 
      
 151 
     | 
    
         
            +
            			children = (
         
     | 
| 
      
 152 
     | 
    
         
            +
            				A1DE56DD19AA4A97000339C6 /* GdTestTests.m */,
         
     | 
| 
      
 153 
     | 
    
         
            +
            				A1DE56D819AA4A97000339C6 /* Supporting Files */,
         
     | 
| 
      
 154 
     | 
    
         
            +
            			);
         
     | 
| 
      
 155 
     | 
    
         
            +
            			path = GdTestTests;
         
     | 
| 
      
 156 
     | 
    
         
            +
            			sourceTree = "<group>";
         
     | 
| 
      
 157 
     | 
    
         
            +
            		};
         
     | 
| 
      
 158 
     | 
    
         
            +
            		A1DE56D819AA4A97000339C6 /* Supporting Files */ = {
         
     | 
| 
      
 159 
     | 
    
         
            +
            			isa = PBXGroup;
         
     | 
| 
      
 160 
     | 
    
         
            +
            			children = (
         
     | 
| 
      
 161 
     | 
    
         
            +
            				A1DE56D919AA4A97000339C6 /* GdTestTests-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 /* GdTest */ = {
         
     | 
| 
      
 171 
     | 
    
         
            +
            			isa = PBXNativeTarget;
         
     | 
| 
      
 172 
     | 
    
         
            +
            			buildConfigurationList = A1DE56E119AA4A97000339C6 /* Build configuration list for PBXNativeTarget "GdTest" */;
         
     | 
| 
      
 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 = GdTest;
         
     | 
| 
      
 184 
     | 
    
         
            +
            			productName = GdTest;
         
     | 
| 
      
 185 
     | 
    
         
            +
            			productReference = A1DE56B519AA4A97000339C6 /* GdTest.app */;
         
     | 
| 
      
 186 
     | 
    
         
            +
            			productType = "com.apple.product-type.application";
         
     | 
| 
      
 187 
     | 
    
         
            +
            		};
         
     | 
| 
      
 188 
     | 
    
         
            +
            		A1DE56CF19AA4A97000339C6 /* GdTestTests */ = {
         
     | 
| 
      
 189 
     | 
    
         
            +
            			isa = PBXNativeTarget;
         
     | 
| 
      
 190 
     | 
    
         
            +
            			buildConfigurationList = A1DE56E419AA4A97000339C6 /* Build configuration list for PBXNativeTarget "GdTestTests" */;
         
     | 
| 
      
 191 
     | 
    
         
            +
            			buildPhases = (
         
     | 
| 
      
 192 
     | 
    
         
            +
            				A1DE56CC19AA4A97000339C6 /* Sources */,
         
     | 
| 
      
 193 
     | 
    
         
            +
            				A1DE56CD19AA4A97000339C6 /* Frameworks */,
         
     | 
| 
      
 194 
     | 
    
         
            +
            				A1DE56CE19AA4A97000339C6 /* Resources */,
         
     | 
| 
      
 195 
     | 
    
         
            +
            			);
         
     | 
| 
      
 196 
     | 
    
         
            +
            			buildRules = (
         
     | 
| 
      
 197 
     | 
    
         
            +
            			);
         
     | 
| 
      
 198 
     | 
    
         
            +
            			dependencies = (
         
     | 
| 
      
 199 
     | 
    
         
            +
            				A1DE56D619AA4A97000339C6 /* PBXTargetDependency */,
         
     | 
| 
      
 200 
     | 
    
         
            +
            			);
         
     | 
| 
      
 201 
     | 
    
         
            +
            			name = GdTestTests;
         
     | 
| 
      
 202 
     | 
    
         
            +
            			productName = GdTestTests;
         
     | 
| 
      
 203 
     | 
    
         
            +
            			productReference = A1DE56D019AA4A97000339C6 /* GdTestTests.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 "GdTest" */;
         
     | 
| 
      
 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 /* GdTest */,
         
     | 
| 
      
 234 
     | 
    
         
            +
            				A1DE56CF19AA4A97000339C6 /* GdTestTests */,
         
     | 
| 
      
 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-GdTest-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 /* GdTestTests.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 /* GdTest */;
         
     | 
| 
      
 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-GdTest.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 = "GdTest/GdTest-Prefix.pch";
         
     | 
| 
      
 410 
     | 
    
         
            +
            				INFOPLIST_FILE = "GdTest/GdTest-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-GdTest.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 = "GdTest/GdTest-Prefix.pch";
         
     | 
| 
      
 428 
     | 
    
         
            +
            				INFOPLIST_FILE = "GdTest/GdTest-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)/GdTest.app/GdTest";
         
     | 
| 
      
 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 = "GdTest/GdTest-Prefix.pch";
         
     | 
| 
      
 445 
     | 
    
         
            +
            				GCC_PREPROCESSOR_DEFINITIONS = (
         
     | 
| 
      
 446 
     | 
    
         
            +
            					"DEBUG=1",
         
     | 
| 
      
 447 
     | 
    
         
            +
            					"$(inherited)",
         
     | 
| 
      
 448 
     | 
    
         
            +
            				);
         
     | 
| 
      
 449 
     | 
    
         
            +
            				INFOPLIST_FILE = "GdTestTests/GdTestTests-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)/GdTest.app/GdTest";
         
     | 
| 
      
 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 = "GdTest/GdTest-Prefix.pch";
         
     | 
| 
      
 467 
     | 
    
         
            +
            				INFOPLIST_FILE = "GdTestTests/GdTestTests-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 "GdTest" */ = {
         
     | 
| 
      
 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 "GdTest" */ = {
         
     | 
| 
      
 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 "GdTestTests" */ = {
         
     | 
| 
      
 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 
     | 
    
         
            +
            }
         
     |