├── .gitignore ├── Lib ├── NSMutableArray.h ├── NSMutableArray.m ├── NSObject.h ├── NSObject.m ├── NSString.h ├── NSString.m ├── SDTableViewController.h ├── SDTableViewController.m ├── SimpleModel.h ├── SimpleModel.m ├── SimpleStore.h ├── SimpleStore.m ├── UIApplication.h └── UIApplication.m ├── Readme.textile ├── SimpleData.xcodeproj └── project.pbxproj ├── Test-Info.plist └── Test ├── Employee.h ├── Employee.m ├── HelperTest.h ├── HelperTest.m ├── SDEmployee.h ├── SDEmployee.m ├── SimpleModelTest.h ├── SimpleModelTest.m ├── SimpleStoreTest.h ├── SimpleStoreTest.m ├── google-toolbox-for-mac ├── AppKit │ ├── GTMDelegatingTableColumn.h │ ├── GTMDelegatingTableColumn.m │ ├── GTMLinearRGBShading.h │ ├── GTMLinearRGBShading.m │ ├── GTMLinearRGBShadingTest.m │ ├── GTMLoginItems.h │ ├── GTMLoginItems.m │ ├── GTMLoginItemsTest.m │ ├── GTMNSBezierPath+CGPath.h │ ├── GTMNSBezierPath+CGPath.m │ ├── GTMNSBezierPath+CGPathTest.m │ ├── GTMNSBezierPath+RoundRect.h │ ├── GTMNSBezierPath+RoundRect.m │ ├── GTMNSBezierPath+RoundRectTest.m │ ├── GTMNSBezierPath+Shading.h │ ├── GTMNSBezierPath+Shading.m │ ├── GTMNSBezierPath+ShadingTest.m │ ├── GTMNSWorkspace+ScreenSaver.h │ ├── GTMNSWorkspace+ScreenSaver.m │ ├── GTMNSWorkspace+ScreenSaverTest.m │ ├── GTMShading.h │ └── TestData │ │ ├── GTMNSBezierPath+CGPathTest.ppc64.tiff │ │ ├── GTMNSBezierPath+CGPathTest.tiff │ │ ├── GTMNSBezierPath+CGPathTest.x86_64.tiff │ │ ├── GTMNSBezierPath+RoundRectTest.ppc64.tiff │ │ ├── GTMNSBezierPath+RoundRectTest.tiff │ │ ├── GTMNSBezierPath+RoundRectTest.x86_64.tiff │ │ └── GTMNSBezierPath+ShadingTest.10.5.tiff ├── BuildScripts │ └── BuildAllSDKs.sh ├── BuildingAndUsing.txt ├── COPYING ├── DebugUtils │ ├── GTMDebugSelectorValidation.h │ ├── GTMDevLog.m │ ├── GTMMethodCheck.h │ ├── GTMMethodCheck.m │ └── GTMMethodCheckTest.m ├── Foundation │ ├── GTMBase64.h │ ├── GTMBase64.m │ ├── GTMBase64Test.m │ ├── GTMCalculatedRange.h │ ├── GTMCalculatedRange.m │ ├── GTMCalculatedRangeTest.m │ ├── GTMFourCharCode.h │ ├── GTMFourCharCode.m │ ├── GTMFourCharCodeTest.m │ ├── GTMGarbageCollection.h │ ├── GTMGeometryUtils.h │ ├── GTMGeometryUtils.m │ ├── GTMGeometryUtilsTest.m │ ├── GTMHTTPFetcher.h │ ├── GTMHTTPFetcher.m │ ├── GTMHTTPFetcherTest.m │ ├── GTMHTTPServer.h │ ├── GTMHTTPServer.m │ ├── GTMHTTPServerTest.m │ ├── GTMNSAppleEvent+HandlerTest.applescript │ ├── GTMNSAppleEventDescriptor+Foundation.h │ ├── GTMNSAppleEventDescriptor+Foundation.m │ ├── GTMNSAppleEventDescriptor+FoundationTest.m │ ├── GTMNSAppleEventDescriptor+Handler.h │ ├── GTMNSAppleEventDescriptor+Handler.m │ ├── GTMNSAppleEventDescriptor+HandlerTest.m │ ├── GTMNSAppleScript+Handler.h │ ├── GTMNSAppleScript+Handler.m │ ├── GTMNSAppleScript+HandlerTest.m │ ├── GTMNSData+zlib.h │ ├── GTMNSData+zlib.m │ ├── GTMNSData+zlibTest.m │ ├── GTMNSDictionary+URLArguments.h │ ├── GTMNSDictionary+URLArguments.m │ ├── GTMNSDictionary+URLArgumentsTest.m │ ├── GTMNSEnumerator+Filter.h │ ├── GTMNSEnumerator+Filter.m │ ├── GTMNSEnumerator+FilterTest.m │ ├── GTMNSFileManager+Path.h │ ├── GTMNSFileManager+Path.m │ ├── GTMNSFileManager+PathTest.m │ ├── GTMNSString+HTML.h │ ├── GTMNSString+HTML.m │ ├── GTMNSString+HTMLTest.m │ ├── GTMNSString+URLArguments.h │ ├── GTMNSString+URLArguments.m │ ├── GTMNSString+URLArgumentsTest.m │ ├── GTMNSString+XML.h │ ├── GTMNSString+XML.m │ ├── GTMNSString+XMLTest.m │ ├── GTMObjC2Runtime.h │ ├── GTMObjC2Runtime.m │ ├── GTMObjC2RuntimeTest.m │ ├── GTMObjectSingleton.h │ ├── GTMProgressMonitorInputStream.h │ ├── GTMProgressMonitorInputStream.m │ ├── GTMRegex.h │ ├── GTMRegex.m │ ├── GTMRegexTest.m │ ├── GTMScriptRunner.h │ ├── GTMScriptRunner.m │ ├── GTMScriptRunnerTest.m │ ├── GTMStackTrace.c │ ├── GTMStackTrace.h │ ├── GTMStackTraceTest.m │ ├── GTMSystemVersion.h │ ├── GTMSystemVersion.m │ ├── GTMSystemVersionTest.m │ └── TestData │ │ └── GTMHTTPFetcherTestPage.html ├── GTM-Info.plist ├── GTM.xcodeproj │ └── project.pbxproj ├── GTMDefines.h ├── GTM_Prefix.pch ├── GTMiPhone-Info.plist ├── GTMiPhone.xcodeproj │ └── project.pbxproj ├── ReleaseNotes.txt ├── TigerGcov │ ├── libgcov.a │ └── libgcov_readme.html ├── UnitTest-Info.plist ├── UnitTesting │ ├── GTMAppKit+UnitTesting.h │ ├── GTMAppKit+UnitTesting.m │ ├── GTMCALayer+UnitTesting.h │ ├── GTMCALayer+UnitTesting.m │ ├── GTMIPhoneUnitTestDelegate.h │ ├── GTMIPhoneUnitTestDelegate.m │ ├── GTMIPhoneUnitTestMain.m │ ├── GTMNSObject+BindingUnitTesting.h │ ├── GTMNSObject+BindingUnitTesting.m │ ├── GTMNSObject+UnitTesting.h │ ├── GTMNSObject+UnitTesting.m │ ├── GTMSenTestCase.h │ ├── GTMSenTestCase.m │ ├── GTMTestHTTPServer.h │ ├── GTMTestHTTPServer.m │ ├── GTMUIKit+UnitTesting.h │ ├── GTMUIKit+UnitTesting.m │ ├── GTMUIKit+UnitTestingTest.m │ ├── GTMUIUnitTestingHarness │ │ ├── English.lproj │ │ │ └── MainMenu.nib │ │ │ │ ├── designable.nib │ │ │ │ └── keyedobjects.nib │ │ ├── Info.plist │ │ └── main.m │ ├── GTMUIViewUnitTestingTest.png │ ├── GTMUnitTestDevLog.h │ ├── GTMUnitTestDevLog.m │ ├── GTMUnitTestingBindingTest.m │ ├── GTMUnitTestingTest.h │ ├── GTMUnitTestingTest.m │ ├── GTMUnitTestingUtilities.h │ ├── GTMUnitTestingUtilities.m │ ├── RunIPhoneUnitTest.sh │ ├── RunMacOSUnitTests.sh │ └── TestData │ │ ├── GTMUIViewUnitTestingTest.gtmUTState │ │ ├── GTMUIViewUnitTestingTest.png │ │ ├── GTMUnitTestingImage.gtmUTState │ │ ├── GTMUnitTestingImage.tiff │ │ ├── GTMUnitTestingTest.nib │ │ ├── classes.nib │ │ ├── info.nib │ │ └── keyedobjects.nib │ │ ├── GTMUnitTestingTestApp.gtmUTState │ │ ├── GTMUnitTestingView.tiff │ │ ├── GTMUnitTestingWindow.gtmUTState │ │ └── GTMUnitTestingWindow.tiff └── XcodeConfig │ ├── Project │ ├── DebugLeopardOrLater.xcconfig │ ├── DebugTigerOrLater.xcconfig │ ├── DebugiPhone.xcconfig │ ├── ReleaseLeopardOrLater.xcconfig │ ├── ReleaseTigerOrLater.xcconfig │ └── ReleaseiPhone.xcconfig │ ├── Target │ ├── DebugUnittest.xcconfig │ ├── LoadableBundle.xcconfig │ ├── LoadableBundleGCSupported.xcconfig │ ├── ReleaseUnittest.xcconfig │ ├── SharedLibrary.xcconfig │ ├── SharedLibraryGCSupported.xcconfig │ ├── StaticLibrary.xcconfig │ └── StaticLibraryGCSupported.xcconfig │ ├── subconfig │ ├── 64bit.xcconfig │ ├── CodeCoverage.xcconfig │ ├── CodeCoverageStatic.xcconfig │ ├── Debug.xcconfig │ ├── GCSupported.xcconfig │ ├── General.xcconfig │ ├── LeopardOrLater.xcconfig │ ├── Release.xcconfig │ ├── TigerOrLater.xcconfig │ ├── Unittest.xcconfig │ └── iPhone.xcconfig │ └── xcconfigs-readme.txt └── test.xcdatamodel ├── elements └── layout /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/.gitignore -------------------------------------------------------------------------------- /Lib/NSMutableArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Lib/NSMutableArray.h -------------------------------------------------------------------------------- /Lib/NSMutableArray.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Lib/NSMutableArray.m -------------------------------------------------------------------------------- /Lib/NSObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Lib/NSObject.h -------------------------------------------------------------------------------- /Lib/NSObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Lib/NSObject.m -------------------------------------------------------------------------------- /Lib/NSString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Lib/NSString.h -------------------------------------------------------------------------------- /Lib/NSString.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Lib/NSString.m -------------------------------------------------------------------------------- /Lib/SDTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Lib/SDTableViewController.h -------------------------------------------------------------------------------- /Lib/SDTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Lib/SDTableViewController.m -------------------------------------------------------------------------------- /Lib/SimpleModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Lib/SimpleModel.h -------------------------------------------------------------------------------- /Lib/SimpleModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Lib/SimpleModel.m -------------------------------------------------------------------------------- /Lib/SimpleStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Lib/SimpleStore.h -------------------------------------------------------------------------------- /Lib/SimpleStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Lib/SimpleStore.m -------------------------------------------------------------------------------- /Lib/UIApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Lib/UIApplication.h -------------------------------------------------------------------------------- /Lib/UIApplication.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Lib/UIApplication.m -------------------------------------------------------------------------------- /Readme.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Readme.textile -------------------------------------------------------------------------------- /SimpleData.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/SimpleData.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Test-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test-Info.plist -------------------------------------------------------------------------------- /Test/Employee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/Employee.h -------------------------------------------------------------------------------- /Test/Employee.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/Employee.m -------------------------------------------------------------------------------- /Test/HelperTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/HelperTest.h -------------------------------------------------------------------------------- /Test/HelperTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/HelperTest.m -------------------------------------------------------------------------------- /Test/SDEmployee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/SDEmployee.h -------------------------------------------------------------------------------- /Test/SDEmployee.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/SDEmployee.m -------------------------------------------------------------------------------- /Test/SimpleModelTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/SimpleModelTest.h -------------------------------------------------------------------------------- /Test/SimpleModelTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/SimpleModelTest.m -------------------------------------------------------------------------------- /Test/SimpleStoreTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/SimpleStoreTest.h -------------------------------------------------------------------------------- /Test/SimpleStoreTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/SimpleStoreTest.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/AppKit/GTMDelegatingTableColumn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/AppKit/GTMDelegatingTableColumn.h -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/AppKit/GTMDelegatingTableColumn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/AppKit/GTMDelegatingTableColumn.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/AppKit/GTMLinearRGBShading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/AppKit/GTMLinearRGBShading.h -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/AppKit/GTMLinearRGBShading.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/AppKit/GTMLinearRGBShading.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/AppKit/GTMLinearRGBShadingTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/AppKit/GTMLinearRGBShadingTest.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/AppKit/GTMLoginItems.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/AppKit/GTMLoginItems.h -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/AppKit/GTMLoginItems.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/AppKit/GTMLoginItems.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/AppKit/GTMLoginItemsTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/AppKit/GTMLoginItemsTest.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/AppKit/GTMNSBezierPath+CGPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/AppKit/GTMNSBezierPath+CGPath.h -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/AppKit/GTMNSBezierPath+CGPath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/AppKit/GTMNSBezierPath+CGPath.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/AppKit/GTMNSBezierPath+CGPathTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/AppKit/GTMNSBezierPath+CGPathTest.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/AppKit/GTMNSBezierPath+RoundRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/AppKit/GTMNSBezierPath+RoundRect.h -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/AppKit/GTMNSBezierPath+RoundRect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/AppKit/GTMNSBezierPath+RoundRect.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/AppKit/GTMNSBezierPath+RoundRectTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/AppKit/GTMNSBezierPath+RoundRectTest.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/AppKit/GTMNSBezierPath+Shading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/AppKit/GTMNSBezierPath+Shading.h -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/AppKit/GTMNSBezierPath+Shading.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/AppKit/GTMNSBezierPath+Shading.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/AppKit/GTMNSBezierPath+ShadingTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/AppKit/GTMNSBezierPath+ShadingTest.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/AppKit/GTMNSWorkspace+ScreenSaver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/AppKit/GTMNSWorkspace+ScreenSaver.h -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/AppKit/GTMNSWorkspace+ScreenSaver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/AppKit/GTMNSWorkspace+ScreenSaver.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/AppKit/GTMNSWorkspace+ScreenSaverTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/AppKit/GTMNSWorkspace+ScreenSaverTest.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/AppKit/GTMShading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/AppKit/GTMShading.h -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/AppKit/TestData/GTMNSBezierPath+CGPathTest.ppc64.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/AppKit/TestData/GTMNSBezierPath+CGPathTest.ppc64.tiff -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/AppKit/TestData/GTMNSBezierPath+CGPathTest.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/AppKit/TestData/GTMNSBezierPath+CGPathTest.tiff -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/AppKit/TestData/GTMNSBezierPath+CGPathTest.x86_64.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/AppKit/TestData/GTMNSBezierPath+CGPathTest.x86_64.tiff -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/AppKit/TestData/GTMNSBezierPath+RoundRectTest.ppc64.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/AppKit/TestData/GTMNSBezierPath+RoundRectTest.ppc64.tiff -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/AppKit/TestData/GTMNSBezierPath+RoundRectTest.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/AppKit/TestData/GTMNSBezierPath+RoundRectTest.tiff -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/AppKit/TestData/GTMNSBezierPath+RoundRectTest.x86_64.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/AppKit/TestData/GTMNSBezierPath+RoundRectTest.x86_64.tiff -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/AppKit/TestData/GTMNSBezierPath+ShadingTest.10.5.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/AppKit/TestData/GTMNSBezierPath+ShadingTest.10.5.tiff -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/BuildScripts/BuildAllSDKs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/BuildScripts/BuildAllSDKs.sh -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/BuildingAndUsing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/BuildingAndUsing.txt -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/COPYING -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/DebugUtils/GTMDebugSelectorValidation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/DebugUtils/GTMDebugSelectorValidation.h -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/DebugUtils/GTMDevLog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/DebugUtils/GTMDevLog.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/DebugUtils/GTMMethodCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/DebugUtils/GTMMethodCheck.h -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/DebugUtils/GTMMethodCheck.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/DebugUtils/GTMMethodCheck.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/DebugUtils/GTMMethodCheckTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/DebugUtils/GTMMethodCheckTest.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMBase64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMBase64.h -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMBase64.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMBase64.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMBase64Test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMBase64Test.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMCalculatedRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMCalculatedRange.h -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMCalculatedRange.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMCalculatedRange.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMCalculatedRangeTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMCalculatedRangeTest.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMFourCharCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMFourCharCode.h -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMFourCharCode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMFourCharCode.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMFourCharCodeTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMFourCharCodeTest.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMGarbageCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMGarbageCollection.h -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMGeometryUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMGeometryUtils.h -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMGeometryUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMGeometryUtils.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMGeometryUtilsTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMGeometryUtilsTest.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMHTTPFetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMHTTPFetcher.h -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMHTTPFetcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMHTTPFetcher.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMHTTPFetcherTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMHTTPFetcherTest.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMHTTPServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMHTTPServer.h -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMHTTPServer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMHTTPServer.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMHTTPServerTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMHTTPServerTest.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMNSAppleEvent+HandlerTest.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMNSAppleEvent+HandlerTest.applescript -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMNSAppleEventDescriptor+Foundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMNSAppleEventDescriptor+Foundation.h -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMNSAppleEventDescriptor+Foundation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMNSAppleEventDescriptor+Foundation.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMNSAppleEventDescriptor+FoundationTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMNSAppleEventDescriptor+FoundationTest.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMNSAppleEventDescriptor+Handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMNSAppleEventDescriptor+Handler.h -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMNSAppleEventDescriptor+Handler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMNSAppleEventDescriptor+Handler.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMNSAppleEventDescriptor+HandlerTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMNSAppleEventDescriptor+HandlerTest.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMNSAppleScript+Handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMNSAppleScript+Handler.h -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMNSAppleScript+Handler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMNSAppleScript+Handler.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMNSAppleScript+HandlerTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMNSAppleScript+HandlerTest.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMNSData+zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMNSData+zlib.h -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMNSData+zlib.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMNSData+zlib.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMNSData+zlibTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMNSData+zlibTest.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMNSDictionary+URLArguments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMNSDictionary+URLArguments.h -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMNSDictionary+URLArguments.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMNSDictionary+URLArguments.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMNSDictionary+URLArgumentsTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMNSDictionary+URLArgumentsTest.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMNSEnumerator+Filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMNSEnumerator+Filter.h -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMNSEnumerator+Filter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMNSEnumerator+Filter.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMNSEnumerator+FilterTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMNSEnumerator+FilterTest.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMNSFileManager+Path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMNSFileManager+Path.h -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMNSFileManager+Path.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMNSFileManager+Path.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMNSFileManager+PathTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMNSFileManager+PathTest.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMNSString+HTML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMNSString+HTML.h -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMNSString+HTML.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMNSString+HTML.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMNSString+HTMLTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMNSString+HTMLTest.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMNSString+URLArguments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMNSString+URLArguments.h -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMNSString+URLArguments.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMNSString+URLArguments.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMNSString+URLArgumentsTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMNSString+URLArgumentsTest.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMNSString+XML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMNSString+XML.h -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMNSString+XML.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMNSString+XML.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMNSString+XMLTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMNSString+XMLTest.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMObjC2Runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMObjC2Runtime.h -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMObjC2Runtime.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMObjC2Runtime.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMObjC2RuntimeTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMObjC2RuntimeTest.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMObjectSingleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMObjectSingleton.h -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMProgressMonitorInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMProgressMonitorInputStream.h -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMProgressMonitorInputStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMProgressMonitorInputStream.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMRegex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMRegex.h -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMRegex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMRegex.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMRegexTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMRegexTest.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMScriptRunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMScriptRunner.h -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMScriptRunner.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMScriptRunner.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMScriptRunnerTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMScriptRunnerTest.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMStackTrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMStackTrace.c -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMStackTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMStackTrace.h -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMStackTraceTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMStackTraceTest.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMSystemVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMSystemVersion.h -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMSystemVersion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMSystemVersion.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/GTMSystemVersionTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/GTMSystemVersionTest.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/Foundation/TestData/GTMHTTPFetcherTestPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/Foundation/TestData/GTMHTTPFetcherTestPage.html -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/GTM-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/GTM-Info.plist -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/GTM.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/GTM.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/GTMDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/GTMDefines.h -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/GTM_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/GTM_Prefix.pch -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/GTMiPhone-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/GTMiPhone-Info.plist -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/GTMiPhone.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/GTMiPhone.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/ReleaseNotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/ReleaseNotes.txt -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/TigerGcov/libgcov.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/TigerGcov/libgcov.a -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/TigerGcov/libgcov_readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/TigerGcov/libgcov_readme.html -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/UnitTest-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/UnitTest-Info.plist -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/UnitTesting/GTMAppKit+UnitTesting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/UnitTesting/GTMAppKit+UnitTesting.h -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/UnitTesting/GTMAppKit+UnitTesting.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/UnitTesting/GTMAppKit+UnitTesting.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/UnitTesting/GTMCALayer+UnitTesting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/UnitTesting/GTMCALayer+UnitTesting.h -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/UnitTesting/GTMCALayer+UnitTesting.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/UnitTesting/GTMCALayer+UnitTesting.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/UnitTesting/GTMIPhoneUnitTestDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/UnitTesting/GTMIPhoneUnitTestDelegate.h -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/UnitTesting/GTMIPhoneUnitTestDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/UnitTesting/GTMIPhoneUnitTestDelegate.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/UnitTesting/GTMIPhoneUnitTestMain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/UnitTesting/GTMIPhoneUnitTestMain.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/UnitTesting/GTMNSObject+BindingUnitTesting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/UnitTesting/GTMNSObject+BindingUnitTesting.h -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/UnitTesting/GTMNSObject+BindingUnitTesting.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/UnitTesting/GTMNSObject+BindingUnitTesting.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/UnitTesting/GTMNSObject+UnitTesting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/UnitTesting/GTMNSObject+UnitTesting.h -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/UnitTesting/GTMNSObject+UnitTesting.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/UnitTesting/GTMNSObject+UnitTesting.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/UnitTesting/GTMSenTestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/UnitTesting/GTMSenTestCase.h -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/UnitTesting/GTMSenTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/UnitTesting/GTMSenTestCase.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/UnitTesting/GTMTestHTTPServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/UnitTesting/GTMTestHTTPServer.h -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/UnitTesting/GTMTestHTTPServer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/UnitTesting/GTMTestHTTPServer.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/UnitTesting/GTMUIKit+UnitTesting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/UnitTesting/GTMUIKit+UnitTesting.h -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/UnitTesting/GTMUIKit+UnitTesting.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/UnitTesting/GTMUIKit+UnitTesting.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/UnitTesting/GTMUIKit+UnitTestingTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/UnitTesting/GTMUIKit+UnitTestingTest.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/UnitTesting/GTMUIUnitTestingHarness/English.lproj/MainMenu.nib/designable.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/UnitTesting/GTMUIUnitTestingHarness/English.lproj/MainMenu.nib/designable.nib -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/UnitTesting/GTMUIUnitTestingHarness/English.lproj/MainMenu.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/UnitTesting/GTMUIUnitTestingHarness/English.lproj/MainMenu.nib/keyedobjects.nib -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/UnitTesting/GTMUIUnitTestingHarness/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/UnitTesting/GTMUIUnitTestingHarness/Info.plist -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/UnitTesting/GTMUIUnitTestingHarness/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/UnitTesting/GTMUIUnitTestingHarness/main.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/UnitTesting/GTMUIViewUnitTestingTest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/UnitTesting/GTMUIViewUnitTestingTest.png -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/UnitTesting/GTMUnitTestDevLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/UnitTesting/GTMUnitTestDevLog.h -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/UnitTesting/GTMUnitTestDevLog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/UnitTesting/GTMUnitTestDevLog.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/UnitTesting/GTMUnitTestingBindingTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/UnitTesting/GTMUnitTestingBindingTest.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/UnitTesting/GTMUnitTestingTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/UnitTesting/GTMUnitTestingTest.h -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/UnitTesting/GTMUnitTestingTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/UnitTesting/GTMUnitTestingTest.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/UnitTesting/GTMUnitTestingUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/UnitTesting/GTMUnitTestingUtilities.h -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/UnitTesting/GTMUnitTestingUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/UnitTesting/GTMUnitTestingUtilities.m -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/UnitTesting/RunIPhoneUnitTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/UnitTesting/RunIPhoneUnitTest.sh -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/UnitTesting/RunMacOSUnitTests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/UnitTesting/RunMacOSUnitTests.sh -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/UnitTesting/TestData/GTMUIViewUnitTestingTest.gtmUTState: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/UnitTesting/TestData/GTMUIViewUnitTestingTest.gtmUTState -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/UnitTesting/TestData/GTMUIViewUnitTestingTest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/UnitTesting/TestData/GTMUIViewUnitTestingTest.png -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/UnitTesting/TestData/GTMUnitTestingImage.gtmUTState: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/UnitTesting/TestData/GTMUnitTestingImage.gtmUTState -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/UnitTesting/TestData/GTMUnitTestingImage.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/UnitTesting/TestData/GTMUnitTestingImage.tiff -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/UnitTesting/TestData/GTMUnitTestingTest.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/UnitTesting/TestData/GTMUnitTestingTest.nib/classes.nib -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/UnitTesting/TestData/GTMUnitTestingTest.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/UnitTesting/TestData/GTMUnitTestingTest.nib/info.nib -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/UnitTesting/TestData/GTMUnitTestingTest.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/UnitTesting/TestData/GTMUnitTestingTest.nib/keyedobjects.nib -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/UnitTesting/TestData/GTMUnitTestingTestApp.gtmUTState: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/UnitTesting/TestData/GTMUnitTestingTestApp.gtmUTState -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/UnitTesting/TestData/GTMUnitTestingView.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/UnitTesting/TestData/GTMUnitTestingView.tiff -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/UnitTesting/TestData/GTMUnitTestingWindow.gtmUTState: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/UnitTesting/TestData/GTMUnitTestingWindow.gtmUTState -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/UnitTesting/TestData/GTMUnitTestingWindow.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/UnitTesting/TestData/GTMUnitTestingWindow.tiff -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/XcodeConfig/Project/DebugLeopardOrLater.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/XcodeConfig/Project/DebugLeopardOrLater.xcconfig -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/XcodeConfig/Project/DebugTigerOrLater.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/XcodeConfig/Project/DebugTigerOrLater.xcconfig -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/XcodeConfig/Project/DebugiPhone.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/XcodeConfig/Project/DebugiPhone.xcconfig -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/XcodeConfig/Project/ReleaseLeopardOrLater.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/XcodeConfig/Project/ReleaseLeopardOrLater.xcconfig -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/XcodeConfig/Project/ReleaseTigerOrLater.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/XcodeConfig/Project/ReleaseTigerOrLater.xcconfig -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/XcodeConfig/Project/ReleaseiPhone.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/XcodeConfig/Project/ReleaseiPhone.xcconfig -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/XcodeConfig/Target/DebugUnittest.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/XcodeConfig/Target/DebugUnittest.xcconfig -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/XcodeConfig/Target/LoadableBundle.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/XcodeConfig/Target/LoadableBundle.xcconfig -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/XcodeConfig/Target/LoadableBundleGCSupported.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/XcodeConfig/Target/LoadableBundleGCSupported.xcconfig -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/XcodeConfig/Target/ReleaseUnittest.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/XcodeConfig/Target/ReleaseUnittest.xcconfig -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/XcodeConfig/Target/SharedLibrary.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/XcodeConfig/Target/SharedLibrary.xcconfig -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/XcodeConfig/Target/SharedLibraryGCSupported.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/XcodeConfig/Target/SharedLibraryGCSupported.xcconfig -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/XcodeConfig/Target/StaticLibrary.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/XcodeConfig/Target/StaticLibrary.xcconfig -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/XcodeConfig/Target/StaticLibraryGCSupported.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/XcodeConfig/Target/StaticLibraryGCSupported.xcconfig -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/XcodeConfig/subconfig/64bit.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/XcodeConfig/subconfig/64bit.xcconfig -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/XcodeConfig/subconfig/CodeCoverage.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/XcodeConfig/subconfig/CodeCoverage.xcconfig -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/XcodeConfig/subconfig/CodeCoverageStatic.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/XcodeConfig/subconfig/CodeCoverageStatic.xcconfig -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/XcodeConfig/subconfig/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/XcodeConfig/subconfig/Debug.xcconfig -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/XcodeConfig/subconfig/GCSupported.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/XcodeConfig/subconfig/GCSupported.xcconfig -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/XcodeConfig/subconfig/General.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/XcodeConfig/subconfig/General.xcconfig -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/XcodeConfig/subconfig/LeopardOrLater.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/XcodeConfig/subconfig/LeopardOrLater.xcconfig -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/XcodeConfig/subconfig/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/XcodeConfig/subconfig/Release.xcconfig -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/XcodeConfig/subconfig/TigerOrLater.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/XcodeConfig/subconfig/TigerOrLater.xcconfig -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/XcodeConfig/subconfig/Unittest.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/XcodeConfig/subconfig/Unittest.xcconfig -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/XcodeConfig/subconfig/iPhone.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/XcodeConfig/subconfig/iPhone.xcconfig -------------------------------------------------------------------------------- /Test/google-toolbox-for-mac/XcodeConfig/xcconfigs-readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/google-toolbox-for-mac/XcodeConfig/xcconfigs-readme.txt -------------------------------------------------------------------------------- /Test/test.xcdatamodel/elements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/test.xcdatamodel/elements -------------------------------------------------------------------------------- /Test/test.xcdatamodel/layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briancollins/SimpleData/HEAD/Test/test.xcdatamodel/layout --------------------------------------------------------------------------------