From 77d7bd4460972532aa15b18cd4dddf80863513e7 Mon Sep 17 00:00:00 2001 From: Gordon Fontenot Date: Tue, 7 Jan 2014 10:59:43 -0500 Subject: [PATCH] Liftoff --- .gitattributes | 1 + .gitignore | 28 + NSStringEncryption.xcodeproj/project.pbxproj | 1464 ++++++++++++------ 3 files changed, 1036 insertions(+), 457 deletions(-) create mode 100644 .gitattributes create mode 100644 .gitignore diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..a198d45 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +*.pbxproj binary merge=union \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c705b1a --- /dev/null +++ b/.gitignore @@ -0,0 +1,28 @@ +# OS X Finder +.DS_Store + +# Xcode per-user config +*.mode1 +*.mode1v3 +*.mode2v3 +*.perspective +*.perspectivev3 +*.pbxuser +xcuserdata +*.xccheckout +# Build products +build/ +*.o +*.LinkFileList +*.hmap +# Automatic backup files +*~.nib/ +*.swp +*~ +*.dat +*.dep +# Cocoapods +Pods +# AppCode specific files +.idea/ +*.iml \ No newline at end of file diff --git a/NSStringEncryption.xcodeproj/project.pbxproj b/NSStringEncryption.xcodeproj/project.pbxproj index bf520b7..00acf84 100644 --- a/NSStringEncryption.xcodeproj/project.pbxproj +++ b/NSStringEncryption.xcodeproj/project.pbxproj @@ -1,457 +1,1007 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 46; - objects = { - -/* Begin PBXBuildFile section */ - F831EF15187C5BBB00384844 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F831EF14187C5BBB00384844 /* Foundation.framework */; }; - F831EF17187C5BBB00384844 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F831EF16187C5BBB00384844 /* CoreGraphics.framework */; }; - F831EF19187C5BBB00384844 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F831EF18187C5BBB00384844 /* UIKit.framework */; }; - F831EF1F187C5BBB00384844 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = F831EF1D187C5BBB00384844 /* InfoPlist.strings */; }; - F831EF21187C5BBB00384844 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = F831EF20187C5BBB00384844 /* main.m */; }; - F831EF25187C5BBB00384844 /* TBAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = F831EF24187C5BBB00384844 /* TBAppDelegate.m */; }; - F831EF27187C5BBB00384844 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F831EF26187C5BBB00384844 /* Images.xcassets */; }; - F831EF2E187C5BBB00384844 /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F831EF2D187C5BBB00384844 /* XCTest.framework */; }; - F831EF2F187C5BBB00384844 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F831EF14187C5BBB00384844 /* Foundation.framework */; }; - F831EF30187C5BBB00384844 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F831EF18187C5BBB00384844 /* UIKit.framework */; }; - F831EF38187C5BBB00384844 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = F831EF36187C5BBB00384844 /* InfoPlist.strings */; }; - F831EF3A187C5BBB00384844 /* NSStringEncryptionTests.m in Sources */ = {isa = PBXBuildFile; fileRef = F831EF39187C5BBB00384844 /* NSStringEncryptionTests.m */; }; -/* End PBXBuildFile section */ - -/* Begin PBXContainerItemProxy section */ - F831EF31187C5BBB00384844 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = F831EF09187C5BBB00384844 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F831EF10187C5BBB00384844; - remoteInfo = NSStringEncryption; - }; -/* End PBXContainerItemProxy section */ - -/* Begin PBXFileReference section */ - F831EF11187C5BBB00384844 /* NSStringEncryption.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = NSStringEncryption.app; sourceTree = BUILT_PRODUCTS_DIR; }; - F831EF14187C5BBB00384844 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; - F831EF16187C5BBB00384844 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; - F831EF18187C5BBB00384844 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; - F831EF1C187C5BBB00384844 /* NSStringEncryption-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "NSStringEncryption-Info.plist"; sourceTree = ""; }; - F831EF1E187C5BBB00384844 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; - F831EF20187C5BBB00384844 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; - F831EF22187C5BBB00384844 /* NSStringEncryption-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "NSStringEncryption-Prefix.pch"; sourceTree = ""; }; - F831EF23187C5BBB00384844 /* TBAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TBAppDelegate.h; sourceTree = ""; }; - F831EF24187C5BBB00384844 /* TBAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TBAppDelegate.m; sourceTree = ""; }; - F831EF26187C5BBB00384844 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; - F831EF2C187C5BBB00384844 /* NSStringEncryptionTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = NSStringEncryptionTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; - F831EF2D187C5BBB00384844 /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; }; - F831EF35187C5BBB00384844 /* NSStringEncryptionTests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "NSStringEncryptionTests-Info.plist"; sourceTree = ""; }; - F831EF37187C5BBB00384844 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; - F831EF39187C5BBB00384844 /* NSStringEncryptionTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NSStringEncryptionTests.m; sourceTree = ""; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - F831EF0E187C5BBB00384844 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - F831EF17187C5BBB00384844 /* CoreGraphics.framework in Frameworks */, - F831EF19187C5BBB00384844 /* UIKit.framework in Frameworks */, - F831EF15187C5BBB00384844 /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - F831EF29187C5BBB00384844 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - F831EF2E187C5BBB00384844 /* XCTest.framework in Frameworks */, - F831EF30187C5BBB00384844 /* UIKit.framework in Frameworks */, - F831EF2F187C5BBB00384844 /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - F831EF08187C5BBB00384844 = { - isa = PBXGroup; - children = ( - F831EF1A187C5BBB00384844 /* NSStringEncryption */, - F831EF33187C5BBB00384844 /* NSStringEncryptionTests */, - F831EF13187C5BBB00384844 /* Frameworks */, - F831EF12187C5BBB00384844 /* Products */, - ); - sourceTree = ""; - }; - F831EF12187C5BBB00384844 /* Products */ = { - isa = PBXGroup; - children = ( - F831EF11187C5BBB00384844 /* NSStringEncryption.app */, - F831EF2C187C5BBB00384844 /* NSStringEncryptionTests.xctest */, - ); - name = Products; - sourceTree = ""; - }; - F831EF13187C5BBB00384844 /* Frameworks */ = { - isa = PBXGroup; - children = ( - F831EF14187C5BBB00384844 /* Foundation.framework */, - F831EF16187C5BBB00384844 /* CoreGraphics.framework */, - F831EF18187C5BBB00384844 /* UIKit.framework */, - F831EF2D187C5BBB00384844 /* XCTest.framework */, - ); - name = Frameworks; - sourceTree = ""; - }; - F831EF1A187C5BBB00384844 /* NSStringEncryption */ = { - isa = PBXGroup; - children = ( - F831EF23187C5BBB00384844 /* TBAppDelegate.h */, - F831EF24187C5BBB00384844 /* TBAppDelegate.m */, - F831EF26187C5BBB00384844 /* Images.xcassets */, - F831EF1B187C5BBB00384844 /* Supporting Files */, - ); - path = NSStringEncryption; - sourceTree = ""; - }; - F831EF1B187C5BBB00384844 /* Supporting Files */ = { - isa = PBXGroup; - children = ( - F831EF1C187C5BBB00384844 /* NSStringEncryption-Info.plist */, - F831EF1D187C5BBB00384844 /* InfoPlist.strings */, - F831EF20187C5BBB00384844 /* main.m */, - F831EF22187C5BBB00384844 /* NSStringEncryption-Prefix.pch */, - ); - name = "Supporting Files"; - sourceTree = ""; - }; - F831EF33187C5BBB00384844 /* NSStringEncryptionTests */ = { - isa = PBXGroup; - children = ( - F831EF39187C5BBB00384844 /* NSStringEncryptionTests.m */, - F831EF34187C5BBB00384844 /* Supporting Files */, - ); - path = NSStringEncryptionTests; - sourceTree = ""; - }; - F831EF34187C5BBB00384844 /* Supporting Files */ = { - isa = PBXGroup; - children = ( - F831EF35187C5BBB00384844 /* NSStringEncryptionTests-Info.plist */, - F831EF36187C5BBB00384844 /* InfoPlist.strings */, - ); - name = "Supporting Files"; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXNativeTarget section */ - F831EF10187C5BBB00384844 /* NSStringEncryption */ = { - isa = PBXNativeTarget; - buildConfigurationList = F831EF3D187C5BBB00384844 /* Build configuration list for PBXNativeTarget "NSStringEncryption" */; - buildPhases = ( - F831EF0D187C5BBB00384844 /* Sources */, - F831EF0E187C5BBB00384844 /* Frameworks */, - F831EF0F187C5BBB00384844 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = NSStringEncryption; - productName = NSStringEncryption; - productReference = F831EF11187C5BBB00384844 /* NSStringEncryption.app */; - productType = "com.apple.product-type.application"; - }; - F831EF2B187C5BBB00384844 /* NSStringEncryptionTests */ = { - isa = PBXNativeTarget; - buildConfigurationList = F831EF40187C5BBB00384844 /* Build configuration list for PBXNativeTarget "NSStringEncryptionTests" */; - buildPhases = ( - F831EF28187C5BBB00384844 /* Sources */, - F831EF29187C5BBB00384844 /* Frameworks */, - F831EF2A187C5BBB00384844 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - F831EF32187C5BBB00384844 /* PBXTargetDependency */, - ); - name = NSStringEncryptionTests; - productName = NSStringEncryptionTests; - productReference = F831EF2C187C5BBB00384844 /* NSStringEncryptionTests.xctest */; - productType = "com.apple.product-type.bundle.unit-test"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - F831EF09187C5BBB00384844 /* Project object */ = { - isa = PBXProject; - attributes = { - CLASSPREFIX = TB; - LastUpgradeCheck = 0500; - ORGANIZATIONNAME = thoughtbot; - TargetAttributes = { - F831EF2B187C5BBB00384844 = { - TestTargetID = F831EF10187C5BBB00384844; - }; - }; - }; - buildConfigurationList = F831EF0C187C5BBB00384844 /* Build configuration list for PBXProject "NSStringEncryption" */; - compatibilityVersion = "Xcode 3.2"; - developmentRegion = English; - hasScannedForEncodings = 0; - knownRegions = ( - en, - ); - mainGroup = F831EF08187C5BBB00384844; - productRefGroup = F831EF12187C5BBB00384844 /* Products */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - F831EF10187C5BBB00384844 /* NSStringEncryption */, - F831EF2B187C5BBB00384844 /* NSStringEncryptionTests */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXResourcesBuildPhase section */ - F831EF0F187C5BBB00384844 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - F831EF1F187C5BBB00384844 /* InfoPlist.strings in Resources */, - F831EF27187C5BBB00384844 /* Images.xcassets in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - F831EF2A187C5BBB00384844 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - F831EF38187C5BBB00384844 /* InfoPlist.strings in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - F831EF0D187C5BBB00384844 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - F831EF25187C5BBB00384844 /* TBAppDelegate.m in Sources */, - F831EF21187C5BBB00384844 /* main.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - F831EF28187C5BBB00384844 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - F831EF3A187C5BBB00384844 /* NSStringEncryptionTests.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin PBXTargetDependency section */ - F831EF32187C5BBB00384844 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = F831EF10187C5BBB00384844 /* NSStringEncryption */; - targetProxy = F831EF31187C5BBB00384844 /* PBXContainerItemProxy */; - }; -/* End PBXTargetDependency section */ - -/* Begin PBXVariantGroup section */ - F831EF1D187C5BBB00384844 /* InfoPlist.strings */ = { - isa = PBXVariantGroup; - children = ( - F831EF1E187C5BBB00384844 /* en */, - ); - name = InfoPlist.strings; - sourceTree = ""; - }; - F831EF36187C5BBB00384844 /* InfoPlist.strings */ = { - isa = PBXVariantGroup; - children = ( - F831EF37187C5BBB00384844 /* en */, - ); - name = InfoPlist.strings; - sourceTree = ""; - }; -/* End PBXVariantGroup section */ - -/* Begin XCBuildConfiguration section */ - F831EF3B187C5BBB00384844 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - ARCHS = "$(ARCHS_STANDARD_INCLUDING_64_BIT)"; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = NO; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 7.0; - ONLY_ACTIVE_ARCH = YES; - SDKROOT = iphoneos; - }; - name = Debug; - }; - F831EF3C187C5BBB00384844 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - ARCHS = "$(ARCHS_STANDARD_INCLUDING_64_BIT)"; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = YES; - ENABLE_NS_ASSERTIONS = NO; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 7.0; - SDKROOT = iphoneos; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - F831EF3E187C5BBB00384844 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREFIX_HEADER = "NSStringEncryption/NSStringEncryption-Prefix.pch"; - INFOPLIST_FILE = "NSStringEncryption/NSStringEncryption-Info.plist"; - PRODUCT_NAME = "$(TARGET_NAME)"; - WRAPPER_EXTENSION = app; - }; - name = Debug; - }; - F831EF3F187C5BBB00384844 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREFIX_HEADER = "NSStringEncryption/NSStringEncryption-Prefix.pch"; - INFOPLIST_FILE = "NSStringEncryption/NSStringEncryption-Info.plist"; - PRODUCT_NAME = "$(TARGET_NAME)"; - WRAPPER_EXTENSION = app; - }; - name = Release; - }; - F831EF41187C5BBB00384844 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_INCLUDING_64_BIT)"; - BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/NSStringEncryption.app/NSStringEncryption"; - FRAMEWORK_SEARCH_PATHS = ( - "$(SDKROOT)/Developer/Library/Frameworks", - "$(inherited)", - "$(DEVELOPER_FRAMEWORKS_DIR)", - ); - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREFIX_HEADER = "NSStringEncryption/NSStringEncryption-Prefix.pch"; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - INFOPLIST_FILE = "NSStringEncryptionTests/NSStringEncryptionTests-Info.plist"; - PRODUCT_NAME = "$(TARGET_NAME)"; - TEST_HOST = "$(BUNDLE_LOADER)"; - WRAPPER_EXTENSION = xctest; - }; - name = Debug; - }; - F831EF42187C5BBB00384844 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_INCLUDING_64_BIT)"; - BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/NSStringEncryption.app/NSStringEncryption"; - FRAMEWORK_SEARCH_PATHS = ( - "$(SDKROOT)/Developer/Library/Frameworks", - "$(inherited)", - "$(DEVELOPER_FRAMEWORKS_DIR)", - ); - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREFIX_HEADER = "NSStringEncryption/NSStringEncryption-Prefix.pch"; - INFOPLIST_FILE = "NSStringEncryptionTests/NSStringEncryptionTests-Info.plist"; - PRODUCT_NAME = "$(TARGET_NAME)"; - TEST_HOST = "$(BUNDLE_LOADER)"; - WRAPPER_EXTENSION = xctest; - }; - name = Release; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - F831EF0C187C5BBB00384844 /* Build configuration list for PBXProject "NSStringEncryption" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - F831EF3B187C5BBB00384844 /* Debug */, - F831EF3C187C5BBB00384844 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - F831EF3D187C5BBB00384844 /* Build configuration list for PBXNativeTarget "NSStringEncryption" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - F831EF3E187C5BBB00384844 /* Debug */, - F831EF3F187C5BBB00384844 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; - F831EF40187C5BBB00384844 /* Build configuration list for PBXNativeTarget "NSStringEncryptionTests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - F831EF41187C5BBB00384844 /* Debug */, - F831EF42187C5BBB00384844 /* Release */, - ); - defaultConfigurationIsVisible = 0; - }; -/* End XCConfigurationList section */ - }; - rootObject = F831EF09187C5BBB00384844 /* Project object */; -} + + + + + archiveVersion + 1 + classes + + objectVersion + 46 + objects + + 703E60FBF8AC4A23B6B6374D + + buildActionMask + 2147483647 + files + + inputPaths + + isa + PBXShellScriptBuildPhase + name + Warn for TODO and FIXME comments + outputPaths + + runOnlyForDeploymentPostprocessing + 0 + shellPath + /bin/sh + shellScript + KEYWORDS="TODO:|FIXME:|\?\?\?:|\!\!\!:" +FILE_EXTENSIONS="h|m|mm|c|cpp" +find -E "${SRCROOT}" -ipath "${SRCROOT}/pods" -prune -o \( -regex ".*\.($FILE_EXTENSIONS)$" \) -print0 | xargs -0 egrep --with-filename --line-number --only-matching "($KEYWORDS).*\$" | perl -p -e "s/($KEYWORDS)/ warning: \$1/" + + showEnvVarsInLog + 1 + + F831EF08187C5BBB00384844 + + children + + F831EF1A187C5BBB00384844 + F831EF33187C5BBB00384844 + F831EF13187C5BBB00384844 + F831EF12187C5BBB00384844 + + indentWidth + 4 + isa + PBXGroup + sourceTree + <group> + tabWidth + 4 + usesTabs + 0 + + F831EF09187C5BBB00384844 + + attributes + + CLASSPREFIX + TB + LastUpgradeCheck + 0500 + ORGANIZATIONNAME + thoughtbot + TargetAttributes + + F831EF2B187C5BBB00384844 + + TestTargetID + F831EF10187C5BBB00384844 + + + + buildConfigurationList + F831EF0C187C5BBB00384844 + compatibilityVersion + Xcode 3.2 + developmentRegion + English + hasScannedForEncodings + 0 + isa + PBXProject + knownRegions + + en + + mainGroup + F831EF08187C5BBB00384844 + productRefGroup + F831EF12187C5BBB00384844 + projectDirPath + + projectReferences + + projectRoot + + targets + + F831EF10187C5BBB00384844 + F831EF2B187C5BBB00384844 + + + F831EF0C187C5BBB00384844 + + buildConfigurations + + F831EF3B187C5BBB00384844 + F831EF3C187C5BBB00384844 + + defaultConfigurationIsVisible + 0 + defaultConfigurationName + Release + isa + XCConfigurationList + + F831EF0D187C5BBB00384844 + + buildActionMask + 2147483647 + files + + F831EF25187C5BBB00384844 + F831EF21187C5BBB00384844 + + isa + PBXSourcesBuildPhase + runOnlyForDeploymentPostprocessing + 0 + + F831EF0E187C5BBB00384844 + + buildActionMask + 2147483647 + files + + F831EF17187C5BBB00384844 + F831EF19187C5BBB00384844 + F831EF15187C5BBB00384844 + + isa + PBXFrameworksBuildPhase + runOnlyForDeploymentPostprocessing + 0 + + F831EF0F187C5BBB00384844 + + buildActionMask + 2147483647 + files + + F831EF1F187C5BBB00384844 + F831EF27187C5BBB00384844 + + isa + PBXResourcesBuildPhase + runOnlyForDeploymentPostprocessing + 0 + + F831EF10187C5BBB00384844 + + buildConfigurationList + F831EF3D187C5BBB00384844 + buildPhases + + F831EF0D187C5BBB00384844 + F831EF0E187C5BBB00384844 + F831EF0F187C5BBB00384844 + 703E60FBF8AC4A23B6B6374D + + buildRules + + dependencies + + isa + PBXNativeTarget + name + NSStringEncryption + productName + NSStringEncryption + productReference + F831EF11187C5BBB00384844 + productType + com.apple.product-type.application + + F831EF11187C5BBB00384844 + + explicitFileType + wrapper.application + includeInIndex + 0 + isa + PBXFileReference + path + NSStringEncryption.app + sourceTree + BUILT_PRODUCTS_DIR + + F831EF12187C5BBB00384844 + + children + + F831EF11187C5BBB00384844 + F831EF2C187C5BBB00384844 + + isa + PBXGroup + name + Products + sourceTree + <group> + + F831EF13187C5BBB00384844 + + children + + F831EF14187C5BBB00384844 + F831EF16187C5BBB00384844 + F831EF18187C5BBB00384844 + F831EF2D187C5BBB00384844 + + isa + PBXGroup + name + Frameworks + sourceTree + <group> + + F831EF14187C5BBB00384844 + + isa + PBXFileReference + lastKnownFileType + wrapper.framework + name + Foundation.framework + path + System/Library/Frameworks/Foundation.framework + sourceTree + SDKROOT + + F831EF15187C5BBB00384844 + + fileRef + F831EF14187C5BBB00384844 + isa + PBXBuildFile + + F831EF16187C5BBB00384844 + + isa + PBXFileReference + lastKnownFileType + wrapper.framework + name + CoreGraphics.framework + path + System/Library/Frameworks/CoreGraphics.framework + sourceTree + SDKROOT + + F831EF17187C5BBB00384844 + + fileRef + F831EF16187C5BBB00384844 + isa + PBXBuildFile + + F831EF18187C5BBB00384844 + + isa + PBXFileReference + lastKnownFileType + wrapper.framework + name + UIKit.framework + path + System/Library/Frameworks/UIKit.framework + sourceTree + SDKROOT + + F831EF19187C5BBB00384844 + + fileRef + F831EF18187C5BBB00384844 + isa + PBXBuildFile + + F831EF1A187C5BBB00384844 + + children + + F831EF23187C5BBB00384844 + F831EF24187C5BBB00384844 + F831EF26187C5BBB00384844 + F831EF1B187C5BBB00384844 + + isa + PBXGroup + path + NSStringEncryption + sourceTree + <group> + + F831EF1B187C5BBB00384844 + + children + + F831EF1C187C5BBB00384844 + F831EF1D187C5BBB00384844 + F831EF20187C5BBB00384844 + F831EF22187C5BBB00384844 + + isa + PBXGroup + name + Supporting Files + sourceTree + <group> + + F831EF1C187C5BBB00384844 + + isa + PBXFileReference + lastKnownFileType + text.plist.xml + path + NSStringEncryption-Info.plist + sourceTree + <group> + + F831EF1D187C5BBB00384844 + + children + + F831EF1E187C5BBB00384844 + + isa + PBXVariantGroup + name + InfoPlist.strings + sourceTree + <group> + + F831EF1E187C5BBB00384844 + + isa + PBXFileReference + lastKnownFileType + text.plist.strings + name + en + path + en.lproj/InfoPlist.strings + sourceTree + <group> + + F831EF1F187C5BBB00384844 + + fileRef + F831EF1D187C5BBB00384844 + isa + PBXBuildFile + + F831EF20187C5BBB00384844 + + isa + PBXFileReference + lastKnownFileType + sourcecode.c.objc + path + main.m + sourceTree + <group> + + F831EF21187C5BBB00384844 + + fileRef + F831EF20187C5BBB00384844 + isa + PBXBuildFile + + F831EF22187C5BBB00384844 + + isa + PBXFileReference + lastKnownFileType + sourcecode.c.h + path + NSStringEncryption-Prefix.pch + sourceTree + <group> + + F831EF23187C5BBB00384844 + + isa + PBXFileReference + lastKnownFileType + sourcecode.c.h + path + TBAppDelegate.h + sourceTree + <group> + + F831EF24187C5BBB00384844 + + isa + PBXFileReference + lastKnownFileType + sourcecode.c.objc + path + TBAppDelegate.m + sourceTree + <group> + + F831EF25187C5BBB00384844 + + fileRef + F831EF24187C5BBB00384844 + isa + PBXBuildFile + + F831EF26187C5BBB00384844 + + isa + PBXFileReference + lastKnownFileType + folder.assetcatalog + path + Images.xcassets + sourceTree + <group> + + F831EF27187C5BBB00384844 + + fileRef + F831EF26187C5BBB00384844 + isa + PBXBuildFile + + F831EF28187C5BBB00384844 + + buildActionMask + 2147483647 + files + + F831EF3A187C5BBB00384844 + + isa + PBXSourcesBuildPhase + runOnlyForDeploymentPostprocessing + 0 + + F831EF29187C5BBB00384844 + + buildActionMask + 2147483647 + files + + F831EF2E187C5BBB00384844 + F831EF30187C5BBB00384844 + F831EF2F187C5BBB00384844 + + isa + PBXFrameworksBuildPhase + runOnlyForDeploymentPostprocessing + 0 + + F831EF2A187C5BBB00384844 + + buildActionMask + 2147483647 + files + + F831EF38187C5BBB00384844 + + isa + PBXResourcesBuildPhase + runOnlyForDeploymentPostprocessing + 0 + + F831EF2B187C5BBB00384844 + + buildConfigurationList + F831EF40187C5BBB00384844 + buildPhases + + F831EF28187C5BBB00384844 + F831EF29187C5BBB00384844 + F831EF2A187C5BBB00384844 + + buildRules + + dependencies + + F831EF32187C5BBB00384844 + + isa + PBXNativeTarget + name + NSStringEncryptionTests + productName + NSStringEncryptionTests + productReference + F831EF2C187C5BBB00384844 + productType + com.apple.product-type.bundle.unit-test + + F831EF2C187C5BBB00384844 + + explicitFileType + wrapper.cfbundle + includeInIndex + 0 + isa + PBXFileReference + path + NSStringEncryptionTests.xctest + sourceTree + BUILT_PRODUCTS_DIR + + F831EF2D187C5BBB00384844 + + isa + PBXFileReference + lastKnownFileType + wrapper.framework + name + XCTest.framework + path + Library/Frameworks/XCTest.framework + sourceTree + DEVELOPER_DIR + + F831EF2E187C5BBB00384844 + + fileRef + F831EF2D187C5BBB00384844 + isa + PBXBuildFile + + F831EF2F187C5BBB00384844 + + fileRef + F831EF14187C5BBB00384844 + isa + PBXBuildFile + + F831EF30187C5BBB00384844 + + fileRef + F831EF18187C5BBB00384844 + isa + PBXBuildFile + + F831EF31187C5BBB00384844 + + containerPortal + F831EF09187C5BBB00384844 + isa + PBXContainerItemProxy + proxyType + 1 + remoteGlobalIDString + F831EF10187C5BBB00384844 + remoteInfo + NSStringEncryption + + F831EF32187C5BBB00384844 + + isa + PBXTargetDependency + target + F831EF10187C5BBB00384844 + targetProxy + F831EF31187C5BBB00384844 + + F831EF33187C5BBB00384844 + + children + + F831EF39187C5BBB00384844 + F831EF34187C5BBB00384844 + + isa + PBXGroup + path + NSStringEncryptionTests + sourceTree + <group> + + F831EF34187C5BBB00384844 + + children + + F831EF35187C5BBB00384844 + F831EF36187C5BBB00384844 + + isa + PBXGroup + name + Supporting Files + sourceTree + <group> + + F831EF35187C5BBB00384844 + + isa + PBXFileReference + lastKnownFileType + text.plist.xml + path + NSStringEncryptionTests-Info.plist + sourceTree + <group> + + F831EF36187C5BBB00384844 + + children + + F831EF37187C5BBB00384844 + + isa + PBXVariantGroup + name + InfoPlist.strings + sourceTree + <group> + + F831EF37187C5BBB00384844 + + isa + PBXFileReference + lastKnownFileType + text.plist.strings + name + en + path + en.lproj/InfoPlist.strings + sourceTree + <group> + + F831EF38187C5BBB00384844 + + fileRef + F831EF36187C5BBB00384844 + isa + PBXBuildFile + + F831EF39187C5BBB00384844 + + isa + PBXFileReference + lastKnownFileType + sourcecode.c.objc + path + NSStringEncryptionTests.m + sourceTree + <group> + + F831EF3A187C5BBB00384844 + + fileRef + F831EF39187C5BBB00384844 + isa + PBXBuildFile + + F831EF3B187C5BBB00384844 + + buildSettings + + ALWAYS_SEARCH_USER_PATHS + NO + ARCHS + $(ARCHS_STANDARD_INCLUDING_64_BIT) + CLANG_CXX_LANGUAGE_STANDARD + gnu++0x + CLANG_CXX_LIBRARY + libc++ + CLANG_ENABLE_MODULES + YES + CLANG_ENABLE_OBJC_ARC + YES + CLANG_WARN_BOOL_CONVERSION + YES + CLANG_WARN_CONSTANT_CONVERSION + YES + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS + YES + CLANG_WARN_DIRECT_OBJC_ISA_USAGE + YES_ERROR + CLANG_WARN_EMPTY_BODY + YES + CLANG_WARN_ENUM_CONVERSION + YES + CLANG_WARN_INT_CONVERSION + YES + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF + YES + CLANG_WARN_OBJC_ROOT_CLASS + YES_ERROR + CLANG_WARN__DUPLICATE_METHOD_MATCH + YES + CODE_SIGN_IDENTITY[sdk=iphoneos*] + iPhone Developer + COPY_PHASE_STRIP + NO + GCC_C_LANGUAGE_STANDARD + gnu99 + GCC_DYNAMIC_NO_PIC + NO + GCC_OPTIMIZATION_LEVEL + 0 + GCC_PREPROCESSOR_DEFINITIONS + + DEBUG=1 + $(inherited) + + GCC_SYMBOLS_PRIVATE_EXTERN + NO + GCC_WARN_64_TO_32_BIT_CONVERSION + YES + GCC_WARN_ABOUT_MISSING_FIELD_INITIALIZERS + YES + GCC_WARN_ABOUT_MISSING_NEWLINE + YES + GCC_WARN_ABOUT_RETURN_TYPE + YES + GCC_WARN_CHECK_SWITCH_STATEMENTS + YES + GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED + YES + GCC_WARN_MISSING_PARENTHESES + YES + GCC_WARN_SHADOW + YES + GCC_WARN_SIGN_COMPARE + YES + GCC_WARN_TYPECHECK_CALLS_TO_PRINTF + YES + GCC_WARN_UNDECLARED_SELECTOR + YES + GCC_WARN_UNINITIALIZED_AUTOS + YES + GCC_WARN_UNUSED_FUNCTION + YES + GCC_WARN_UNUSED_LABEL + YES + GCC_WARN_UNUSED_VALUE + YES + GCC_WARN_UNUSED_VARIABLE + YES + IPHONEOS_DEPLOYMENT_TARGET + 7.0 + ONLY_ACTIVE_ARCH + YES + RUN_CLANG_STATIC_ANALYZER + YES + SDKROOT + iphoneos + + isa + XCBuildConfiguration + name + Debug + + F831EF3C187C5BBB00384844 + + buildSettings + + ALWAYS_SEARCH_USER_PATHS + NO + ARCHS + $(ARCHS_STANDARD_INCLUDING_64_BIT) + CLANG_CXX_LANGUAGE_STANDARD + gnu++0x + CLANG_CXX_LIBRARY + libc++ + CLANG_ENABLE_MODULES + YES + CLANG_ENABLE_OBJC_ARC + YES + CLANG_WARN_BOOL_CONVERSION + YES + CLANG_WARN_CONSTANT_CONVERSION + YES + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS + YES + CLANG_WARN_DIRECT_OBJC_ISA_USAGE + YES_ERROR + CLANG_WARN_EMPTY_BODY + YES + CLANG_WARN_ENUM_CONVERSION + YES + CLANG_WARN_INT_CONVERSION + YES + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF + YES + CLANG_WARN_OBJC_ROOT_CLASS + YES_ERROR + CLANG_WARN__DUPLICATE_METHOD_MATCH + YES + CODE_SIGN_IDENTITY[sdk=iphoneos*] + iPhone Developer + COPY_PHASE_STRIP + YES + ENABLE_NS_ASSERTIONS + NO + GCC_C_LANGUAGE_STANDARD + gnu99 + GCC_WARN_64_TO_32_BIT_CONVERSION + YES + GCC_WARN_ABOUT_MISSING_FIELD_INITIALIZERS + YES + GCC_WARN_ABOUT_MISSING_NEWLINE + YES + GCC_WARN_ABOUT_RETURN_TYPE + YES + GCC_WARN_CHECK_SWITCH_STATEMENTS + YES + GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED + YES + GCC_WARN_MISSING_PARENTHESES + YES + GCC_WARN_SHADOW + YES + GCC_WARN_SIGN_COMPARE + YES + GCC_WARN_TYPECHECK_CALLS_TO_PRINTF + YES + GCC_WARN_UNDECLARED_SELECTOR + YES + GCC_WARN_UNINITIALIZED_AUTOS + YES + GCC_WARN_UNUSED_FUNCTION + YES + GCC_WARN_UNUSED_LABEL + YES + GCC_WARN_UNUSED_VALUE + YES + GCC_WARN_UNUSED_VARIABLE + YES + IPHONEOS_DEPLOYMENT_TARGET + 7.0 + RUN_CLANG_STATIC_ANALYZER + YES + SDKROOT + iphoneos + VALIDATE_PRODUCT + YES + + isa + XCBuildConfiguration + name + Release + + F831EF3D187C5BBB00384844 + + buildConfigurations + + F831EF3E187C5BBB00384844 + F831EF3F187C5BBB00384844 + + defaultConfigurationIsVisible + 0 + isa + XCConfigurationList + + F831EF3E187C5BBB00384844 + + buildSettings + + ASSETCATALOG_COMPILER_APPICON_NAME + AppIcon + ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME + LaunchImage + GCC_PRECOMPILE_PREFIX_HEADER + YES + GCC_PREFIX_HEADER + NSStringEncryption/NSStringEncryption-Prefix.pch + INFOPLIST_FILE + NSStringEncryption/NSStringEncryption-Info.plist + PRODUCT_NAME + $(TARGET_NAME) + WRAPPER_EXTENSION + app + + isa + XCBuildConfiguration + name + Debug + + F831EF3F187C5BBB00384844 + + buildSettings + + ASSETCATALOG_COMPILER_APPICON_NAME + AppIcon + ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME + LaunchImage + GCC_PRECOMPILE_PREFIX_HEADER + YES + GCC_PREFIX_HEADER + NSStringEncryption/NSStringEncryption-Prefix.pch + INFOPLIST_FILE + NSStringEncryption/NSStringEncryption-Info.plist + PRODUCT_NAME + $(TARGET_NAME) + WRAPPER_EXTENSION + app + + isa + XCBuildConfiguration + name + Release + + F831EF40187C5BBB00384844 + + buildConfigurations + + F831EF41187C5BBB00384844 + F831EF42187C5BBB00384844 + + defaultConfigurationIsVisible + 0 + isa + XCConfigurationList + + F831EF41187C5BBB00384844 + + buildSettings + + ARCHS + $(ARCHS_STANDARD_INCLUDING_64_BIT) + BUNDLE_LOADER + $(BUILT_PRODUCTS_DIR)/NSStringEncryption.app/NSStringEncryption + FRAMEWORK_SEARCH_PATHS + + $(SDKROOT)/Developer/Library/Frameworks + $(inherited) + $(DEVELOPER_FRAMEWORKS_DIR) + + GCC_PRECOMPILE_PREFIX_HEADER + YES + GCC_PREFIX_HEADER + NSStringEncryption/NSStringEncryption-Prefix.pch + GCC_PREPROCESSOR_DEFINITIONS + + DEBUG=1 + $(inherited) + + INFOPLIST_FILE + NSStringEncryptionTests/NSStringEncryptionTests-Info.plist + PRODUCT_NAME + $(TARGET_NAME) + TEST_HOST + $(BUNDLE_LOADER) + WRAPPER_EXTENSION + xctest + + isa + XCBuildConfiguration + name + Debug + + F831EF42187C5BBB00384844 + + buildSettings + + ARCHS + $(ARCHS_STANDARD_INCLUDING_64_BIT) + BUNDLE_LOADER + $(BUILT_PRODUCTS_DIR)/NSStringEncryption.app/NSStringEncryption + FRAMEWORK_SEARCH_PATHS + + $(SDKROOT)/Developer/Library/Frameworks + $(inherited) + $(DEVELOPER_FRAMEWORKS_DIR) + + GCC_PRECOMPILE_PREFIX_HEADER + YES + GCC_PREFIX_HEADER + NSStringEncryption/NSStringEncryption-Prefix.pch + INFOPLIST_FILE + NSStringEncryptionTests/NSStringEncryptionTests-Info.plist + PRODUCT_NAME + $(TARGET_NAME) + TEST_HOST + $(BUNDLE_LOADER) + WRAPPER_EXTENSION + xctest + + isa + XCBuildConfiguration + name + Release + + + rootObject + F831EF09187C5BBB00384844 + +