diff --git a/Example/Example/AppDelegate.h b/Example/Example/AppDelegate.h index 6bdd8f76..88482ef4 100644 --- a/Example/Example/AppDelegate.h +++ b/Example/Example/AppDelegate.h @@ -1,13 +1,13 @@ @import UIKit; @import CoreData; -@class ANDYDataStack; +@class DATAStack; @interface AppDelegate : UIResponder @property (strong, nonatomic) UIWindow *window; -@property (nonatomic, strong, readonly) ANDYDataStack *dataStack; +@property (nonatomic, strong, readonly) DATAStack *dataStack; @end diff --git a/Example/Example/AppDelegate.m b/Example/Example/AppDelegate.m index 57bc3640..dd176d00 100644 --- a/Example/Example/AppDelegate.m +++ b/Example/Example/AppDelegate.m @@ -1,12 +1,12 @@ #import "AppDelegate.h" -#import "ANDYDataStack.h" +#import "DATAStack.h" #import "ViewController.h" AppDelegate *appDelegate; @interface AppDelegate () -@property (nonatomic, strong, readwrite) ANDYDataStack *dataStack; +@property (nonatomic, strong, readwrite) DATAStack *dataStack; @end @@ -24,11 +24,11 @@ - (instancetype)init #pragma mark - Getters -- (ANDYDataStack *)dataStack +- (DATAStack *)dataStack { if (_dataStack) return _dataStack; - _dataStack = [[ANDYDataStack alloc] initWithModelName:@"Example"]; + _dataStack = [[DATAStack alloc] initWithModelName:@"Example"]; return _dataStack; } @@ -46,7 +46,7 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:( - (void)applicationWillTerminate:(UIApplication *)application { - [self.dataStack persistContext]; + [self.dataStack persistWithCompletion:nil]; } @end diff --git a/Example/Example/Data.h b/Example/Example/Data.h index 0190ec0b..319ed318 100644 --- a/Example/Example/Data.h +++ b/Example/Example/Data.h @@ -15,7 +15,7 @@ @property (nonatomic, retain) NSDate * createdDate; @property (nonatomic, retain) NSString * text; -@property (nonatomic, retain) NSString * dataID; +@property (nonatomic, retain) NSString * remoteID; @property (nonatomic, retain) NSString * canonicalURL; @property (nonatomic, retain) NSString * threadID; @property (nonatomic, retain) NSString * paginationID; diff --git a/Example/Example/Data.m b/Example/Example/Data.m index 0b027f35..d2dfc002 100644 --- a/Example/Example/Data.m +++ b/Example/Example/Data.m @@ -14,7 +14,7 @@ @implementation Data @dynamic createdDate; @dynamic text; -@dynamic dataID; +@dynamic remoteID; @dynamic canonicalURL; @dynamic threadID; @dynamic paginationID; diff --git a/Example/Example/Example.xcdatamodeld/Example.xcdatamodel/contents b/Example/Example/Example.xcdatamodeld/Example.xcdatamodel/contents index 7c821a40..2c148b08 100644 --- a/Example/Example/Example.xcdatamodeld/Example.xcdatamodel/contents +++ b/Example/Example/Example.xcdatamodeld/Example.xcdatamodel/contents @@ -1,10 +1,10 @@ - + - + @@ -13,13 +13,13 @@ - + - - + + \ No newline at end of file diff --git a/Example/Example/User.h b/Example/Example/User.h index 9f2e70dd..5644cd54 100644 --- a/Example/Example/User.h +++ b/Example/Example/User.h @@ -16,7 +16,7 @@ @property (nonatomic, retain) NSString * username; @property (nonatomic, retain) NSDate * createdDate; @property (nonatomic, retain) NSString * canonicalURL; -@property (nonatomic, retain) NSString * userID; +@property (nonatomic, retain) NSString * remoteID; @property (nonatomic, retain) NSString * userType; @property (nonatomic, retain) NSString * name; @property (nonatomic, retain) NSSet *datas; diff --git a/Example/Example/User.m b/Example/Example/User.m index 0dbba324..2a37601f 100644 --- a/Example/Example/User.m +++ b/Example/Example/User.m @@ -15,7 +15,7 @@ @implementation User @dynamic username; @dynamic createdDate; @dynamic canonicalURL; -@dynamic userID; +@dynamic remoteID; @dynamic userType; @dynamic name; @dynamic datas; diff --git a/Example/Example/ViewController.m b/Example/Example/ViewController.m index 3280b3dd..98738df5 100644 --- a/Example/Example/ViewController.m +++ b/Example/Example/ViewController.m @@ -4,7 +4,7 @@ #import "Data.h" #import "ANDYFetchedResultsTableDataSource.h" -#import "ANDYDataStack.h" +#import "DATAStack.h" #import "Kipu.h" #import "AppDelegate.h" diff --git a/Example/Podfile b/Example/Podfile index ad8e280e..306140e4 100644 --- a/Example/Podfile +++ b/Example/Podfile @@ -2,5 +2,5 @@ source 'https://github.com/CocoaPods/Specs.git' platform :ios, '7.0' -pod 'Kipu', git: 'https://github.com/NSElvis/Kipu.git' +pod 'Kipu', git: 'https://github.com/NSElvis/Kipu.git', branch: 'migration/datastack' pod 'ANDYFetchedResultsTableDataSource' diff --git a/Example/Podfile.lock b/Example/Podfile.lock index fe6b4426..f99b9f77 100644 --- a/Example/Podfile.lock +++ b/Example/Podfile.lock @@ -1,40 +1,41 @@ PODS: - - ANDYDataStack (2.0.2) - ANDYFetchedResultsTableDataSource (1.1) + - DATAStack (2.2.3) - Kipu (0.4): - - ANDYDataStack + - DATAStack - NSDictionary-ANDYSafeValue - NSManagedObject-ANDYMapChanges - NSManagedObject-HYPPropertyMapper - NSDictionary-ANDYSafeValue (0.3) - - NSManagedObject-ANDYMapChanges (0.5.1): + - NSManagedObject-ANDYMapChanges (0.6): - NSManagedObject-ANDYObjectIDs - NSManagedObject-ANDYObjectIDs (0.1) - - NSManagedObject-HYPPropertyMapper (2.8): + - NSManagedObject-HYPPropertyMapper (2.8.1): - NSString-HYPNetworking - NSString-HYPNetworking (0.1) DEPENDENCIES: - ANDYFetchedResultsTableDataSource - - Kipu (from `https://github.com/NSElvis/Kipu.git`) + - Kipu (from `https://github.com/NSElvis/Kipu.git`, branch `migration/datastack`) EXTERNAL SOURCES: Kipu: + :branch: migration/datastack :git: https://github.com/NSElvis/Kipu.git CHECKOUT OPTIONS: Kipu: - :commit: 660bed10f7ae53d076091e3f5c31805531f6f83f + :commit: fc37b89a53d533c0009488eda97f5b26593b9f56 :git: https://github.com/NSElvis/Kipu.git SPEC CHECKSUMS: - ANDYDataStack: 381f77da0875647cdc64d53c17dd01291ea00e02 ANDYFetchedResultsTableDataSource: d93c8c3eeb029a55dd2268c41f46a2d8be1457f8 - Kipu: c23dbc1e872e7085a9085c886a69c2ec8231ff92 + DATAStack: 0dc349315b3416d1347f6b45dd571d812c8dff6c + Kipu: c9811d8f56864b8c1f5e72784521cb94f9764623 NSDictionary-ANDYSafeValue: ddd983e316a52201a40c70f4ab9ead8a63c569b6 - NSManagedObject-ANDYMapChanges: 224cd299f56bbcb8466f495a22666aac877a4301 + NSManagedObject-ANDYMapChanges: f5d20e903eafecb844adfa1a7e355a1f8cf083a8 NSManagedObject-ANDYObjectIDs: d27bb3014026506848a8d164f3019ecaa2a4baca - NSManagedObject-HYPPropertyMapper: 1ad1837dc3e6e7e8a046010adacfd3fad8f084cd + NSManagedObject-HYPPropertyMapper: 13abcf971f00cf098ed5e148b1aa7fa2801f9e6a NSString-HYPNetworking: 941953383edbba2abd72014e4bfdd55fa4af8dff COCOAPODS: 0.35.0 diff --git a/Example/Pods/ANDYDataStack/ANDYDataStack/ANDYDataStack.h b/Example/Pods/ANDYDataStack/ANDYDataStack/ANDYDataStack.h deleted file mode 100644 index ea575301..00000000 --- a/Example/Pods/ANDYDataStack/ANDYDataStack/ANDYDataStack.h +++ /dev/null @@ -1,65 +0,0 @@ -@import Foundation; -@import CoreData; - - -typedef NS_ENUM(NSInteger, ANDYDataStoreType) { - ANDYDataInMemoryStoreType = 0, - ANDYDataSQLiteStoreType -}; - -@interface ANDYDataStack : NSObject - -/*! - * @discussion Creates an instance of ANDYDataStack with SQLiteStoreType using the app's name as a Core Data model name. - * @return An instance of @c ANDYDataStack or @c nil if the model is not found. - */ -- (instancetype)init; - -/*! - * @discussion Creates an instance of ANDYDataStack with SQLiteStoreType. - * @param modelName The name of the Core Data model. - * @return An instance of @c ANDYDataStack or @c nil if the model is not found. - */ -- (instancetype)initWithModelName:(NSString *)modelName; - -/*! - * @discussion Creates an instance of ANDYDataStack with SQLiteStoreType. - * @param modelName The name of the Core Data model. - * @param bundle The bundle where the Core Data model is located. - * @param storeType The store type, either @c SQLite or @c InMemory. - * @return An instance of @c ANDYDataStack or @c nil if the model is not found. - */ -- (instancetype)initWithModelName:(NSString *)modelName - bundle:(NSBundle *)bundle - storeType:(ANDYDataStoreType)storeType NS_DESIGNATED_INITIALIZER; - -/*! - * Provides a NSManagedObjectContext appropriate for use on the main - * thread. - */ -@property (strong, nonatomic, readonly) NSManagedObjectContext *mainThreadContext; - -/*! - * Provides a safe way to perform an operation in a background - * operation by using a context. - */ -- (void)performInBackgroundThreadContext:(void (^)(NSManagedObjectContext *context))operation; - -/*! - * Provides a new private context bound to the mainThreadContext for a - * performant background operation. - * \returns A background NSManagedObjectContext. - */ -- (NSManagedObjectContext *)backgroundThreadContext; - -/*! - * Saves current state of mainContext into the database. - */ -- (void)persistContext; - -/*! - * Destroys state of ANDYDataStack. - */ -- (void)destroy; - -@end diff --git a/Example/Pods/ANDYDataStack/LICENSE b/Example/Pods/DATAStack/LICENSE.md similarity index 100% rename from Example/Pods/ANDYDataStack/LICENSE rename to Example/Pods/DATAStack/LICENSE.md diff --git a/Example/Pods/ANDYDataStack/README.md b/Example/Pods/DATAStack/README.md similarity index 69% rename from Example/Pods/ANDYDataStack/README.md rename to Example/Pods/DATAStack/README.md index 9389f89b..e31ebc06 100644 --- a/Example/Pods/ANDYDataStack/README.md +++ b/Example/Pods/DATAStack/README.md @@ -1,12 +1,11 @@ -ANDYDataStack -=================== +![DATAStack](https://github.com/NSElvis/DATAStack/blob/master/Images/datastack-logo.png) -This is class that helps you to aliviate the Core Data boilerplate. Now you can go to your AppDelegate remove all the Core Data related code and replace it [with an instance of ANDYDataStack](https://github.com/NSElvis/ANDYDataStack/blob/master/Demo/Demo/AppDelegate/ANDYAppDelegate.m#L38). +This is class that helps you to aliviate the Core Data boilerplate. Now you can go to your AppDelegate remove all the Core Data related code and replace it with [an instance of DATAStack](https://github.com/NSElvis/DATAStack/blob/master/Demo/Demo/AppDelegate/ANDYAppDelegate.m#L27). ``` objc - (void)applicationWillTerminate:(UIApplication *)application { - [self.dataStack persistContext]; + [self.dataStack persistWithCompletion:nil]; } ``` @@ -17,7 +16,7 @@ Then in your NSFetchedResultsController backed app (attached to your main contex - (void)createTask { - [self.dataStack performInBackgroundContext:^(NSManagedObjectContext *context) { + [self.dataStack performInNewBackgroundThreadContext:^(NSManagedObjectContext *context) { Task *task = [Task insertInManagedObjectContext:context]; task.title = @"Hello!"; task.date = [NSDate date]; diff --git a/Example/Pods/DATAStack/Source/DATAStack.h b/Example/Pods/DATAStack/Source/DATAStack.h new file mode 100644 index 00000000..3f4c6d87 --- /dev/null +++ b/Example/Pods/DATAStack/Source/DATAStack.h @@ -0,0 +1,65 @@ +@import Foundation; +@import CoreData; + + +typedef NS_ENUM(NSInteger, DATAStackStoreType) { + DATAStackInMemoryStoreType = 0, + DATAStackSQLiteStoreType +}; + +@interface DATAStack : NSObject + +/*! + * @discussion Creates an instance of DATAStack with SQLiteStoreType using the app's name as a Core Data model name. + * @return An instance of @c DATAStack or @c nil if the model is not found. + */ +- (instancetype)init; + +/*! + * @discussion Creates an instance of DATAStack with SQLiteStoreType. + * @param modelName The name of the Core Data model. + * @return An instance of @c DATAStack or @c nil if the model is not found. + */ +- (instancetype)initWithModelName:(NSString *)modelName; + +/*! + * @discussion Creates an instance of DATAStack with SQLiteStoreType. + * @param modelName The name of the Core Data model. + * @param bundle The bundle where the Core Data model is located. + * @param storeType The store type, either @c SQLite or @c InMemory. + * @return An instance of @c DATAStack or @c nil if the model is not found. + */ +- (instancetype)initWithModelName:(NSString *)modelName + bundle:(NSBundle *)bundle + storeType:(DATAStackStoreType)storeType NS_DESIGNATED_INITIALIZER; + +/*! + * Provides a NSManagedObjectContext appropriate for use on the main + * thread. + */ +@property (strong, nonatomic, readonly) NSManagedObjectContext *mainThreadContext; + +/*! + * Provides a safe way to perform an operation in a background + * operation by using a context. + */ +- (void)performInNewBackgroundThreadContext:(void (^)(NSManagedObjectContext *context))operation; + +/*! + * Provides a new private context bound to the mainThreadContext for a + * performant background operation. + * \returns A background NSManagedObjectContext. + */ +- (NSManagedObjectContext *)newBackgroundThreadContext; + +/*! + * Persists the current in-memory state into the database. + */ +- (void)persistWithCompletion:(void (^)())completion; + +/*! + * Destroys state of DATAStack and deletes the SQLite file. + */ +- (void)drop; + +@end diff --git a/Tests/Pods/ANDYDataStack/ANDYDataStack/ANDYDataStack.m b/Example/Pods/DATAStack/Source/DATAStack.m similarity index 60% rename from Tests/Pods/ANDYDataStack/ANDYDataStack/ANDYDataStack.m rename to Example/Pods/DATAStack/Source/DATAStack.m index 53ad6e4c..1a2360e5 100644 --- a/Tests/Pods/ANDYDataStack/ANDYDataStack/ANDYDataStack.m +++ b/Example/Pods/DATAStack/Source/DATAStack.m @@ -1,21 +1,22 @@ -#import "ANDYDataStack.h" +#import "DATAStack.h" @import UIKit; -@interface ANDYDataStack () +@interface DATAStack () @property (strong, nonatomic, readwrite) NSManagedObjectContext *mainThreadContext; @property (strong, nonatomic) NSManagedObjectContext *writerContext; -@property (strong, nonatomic) NSManagedObjectModel *managedObjectModel; @property (strong, nonatomic) NSPersistentStoreCoordinator *persistentStoreCoordinator; -@property (nonatomic) ANDYDataStoreType storeType; +@property (nonatomic) DATAStackStoreType storeType; @property (nonatomic, copy) NSString *modelName; @property (nonatomic, strong) NSBundle *modelBundle; @end -@implementation ANDYDataStack +@implementation DATAStack + +#pragma mark - Initializers - (instancetype)init { @@ -31,12 +32,12 @@ - (instancetype)initWithModelName:(NSString *)modelName return [self initWithModelName:modelName bundle:bundle - storeType:ANDYDataSQLiteStoreType]; + storeType:DATAStackSQLiteStoreType]; } - (instancetype)initWithModelName:(NSString *)modelName bundle:(NSBundle *)bundle - storeType:(ANDYDataStoreType)storeType + storeType:(DATAStackStoreType)storeType { self = [super init]; if (!self) return nil; @@ -45,87 +46,12 @@ - (instancetype)initWithModelName:(NSString *)modelName _modelBundle = bundle; _storeType = storeType; - return self; -} - -#pragma mark - Private methods - -- (void)setUpSaveNotificationForContext:(NSManagedObjectContext *)context -{ - [[NSNotificationCenter defaultCenter] addObserverForName:NSManagedObjectContextDidSaveNotification - object:context - queue:nil - usingBlock:^(NSNotification *notification) { - if (![NSThread isMainThread]) { - [NSException raise:@"ANDY_MAIN_THREAD_CREATION_EXCEPTION" - format:@"Main context saved in background thread. Use context's `performBlock`"]; - } else { - if (![notification.object isEqual:context]) { - [context performBlock:^(){ - [context mergeChangesFromContextDidSaveNotification:notification]; - }]; - } - } - }]; -} - -- (void)saveContext -{ - NSManagedObjectContext *managedObjectContext = self.mainThreadContext; - [managedObjectContext performBlock:^{ - if (managedObjectContext != nil) { - NSError *error = nil; - if ([managedObjectContext hasChanges] && ![managedObjectContext save:&error]) { - NSLog(@"Unresolved error %@, %@", error, [error userInfo]); - abort(); - } - } - }]; -} - -- (void)persistContext -{ - NSManagedObjectContext *writerManagedObjectContext = self.writerContext; - NSManagedObjectContext *managedObjectContext = self.mainThreadContext; - - [managedObjectContext performBlock:^{ - NSError *error = nil; - if ([managedObjectContext save:&error]) { - [writerManagedObjectContext performBlock:^{ - NSError *parentError = nil; - if (![writerManagedObjectContext save:&parentError]) { - NSLog(@"Unresolved error saving parent managed object context %@, %@", error, [error userInfo]); - abort(); - } - }]; - } else { - NSLog(@"Unresolved error saving managed object context %@, %@", error, [error userInfo]); - abort(); - } - }]; -} - -- (void)resetContext -{ - NSManagedObjectContext *writerManagedObjectContext = self.writerContext; - NSManagedObjectContext *managedObjectContext = self.mainThreadContext; - - [managedObjectContext performBlock:^{ - [managedObjectContext reset]; - [writerManagedObjectContext performBlock:^{ - [writerManagedObjectContext reset]; - }]; - }]; -} + if (!self.persistentStoreCoordinator) NSLog(@"Error setting up data stack"); -#if !TARGET_IPHONE_SIMULATOR -- (BOOL)addSkipBackupAttributeToItemAtURL:(NSURL *)URL -{ - return [URL setResourceValue:[NSNumber numberWithBool:YES] forKey:NSURLIsExcludedFromBackupKey error:nil]; + return self; } -#endif -#pragma mark - Core Data stack +#pragma mark - Getters - (NSManagedObjectContext *)mainThreadContext { @@ -136,8 +62,6 @@ - (NSManagedObjectContext *)mainThreadContext _mainThreadContext.parentContext = self.writerContext; _mainThreadContext.mergePolicy = NSMergeByPropertyStoreTrumpMergePolicy; - [self setUpSaveNotificationForContext:_mainThreadContext]; - return _mainThreadContext; } @@ -153,17 +77,6 @@ - (NSManagedObjectContext *)writerContext return _writerContext; } -- (NSManagedObjectModel *)managedObjectModel -{ - if (_managedObjectModel) return _managedObjectModel; - - NSBundle *bundle = (self.modelBundle) ?: [NSBundle mainBundle]; - NSURL *modelURL = [bundle URLForResource:self.modelName withExtension:@"momd"]; - _managedObjectModel = [[NSManagedObjectModel alloc] initWithContentsOfURL:modelURL]; - - return _managedObjectModel; -} - - (NSPersistentStoreCoordinator *)persistentStoreCoordinator { if (_persistentStoreCoordinator) return _persistentStoreCoordinator; @@ -173,36 +86,45 @@ - (NSPersistentStoreCoordinator *)persistentStoreCoordinator NSString *filePath = [NSString stringWithFormat:@"%@.sqlite", self.modelName]; storeURL = [[self applicationDocumentsDirectory] URLByAppendingPathComponent:filePath]; - NSDictionary *options = @{NSMigratePersistentStoresAutomaticallyOption: @YES, NSInferMappingModelAutomaticallyOption: @YES}; + NSDictionary *options = @{ NSMigratePersistentStoresAutomaticallyOption: @YES, + NSInferMappingModelAutomaticallyOption: @YES }; NSString *storeType; switch (self.storeType) { - case ANDYDataInMemoryStoreType: + case DATAStackInMemoryStoreType: storeType = NSInMemoryStoreType; break; - case ANDYDataSQLiteStoreType: + case DATAStackSQLiteStoreType: storeType = NSSQLiteStoreType; break; } - NSError *error = nil; + NSBundle *bundle = (self.modelBundle) ?: [NSBundle mainBundle]; + NSURL *modelURL = [bundle URLForResource:self.modelName withExtension:@"momd"]; + if (!modelURL) { + NSLog(@"Model with model name {%@} not found in bundle {%@}", self.modelName, bundle); + abort(); + } + + NSManagedObjectModel *model = [[NSManagedObjectModel alloc] initWithContentsOfURL:modelURL]; - _persistentStoreCoordinator = [[NSPersistentStoreCoordinator alloc] initWithManagedObjectModel:[self managedObjectModel]]; + _persistentStoreCoordinator = [[NSPersistentStoreCoordinator alloc] initWithManagedObjectModel:model]; + NSError *addPersistentStoreError = nil; if (![_persistentStoreCoordinator addPersistentStoreWithType:storeType configuration:nil URL:storeURL options:options - error:&error]) { + error:&addPersistentStoreError]) { [[NSFileManager defaultManager] removeItemAtPath:storeURL.path error:nil]; if (![_persistentStoreCoordinator addPersistentStoreWithType:storeType configuration:nil URL:storeURL options:options - error:&error]) { - NSLog(@"Unresolved error %@, %@", error, [error userInfo]); + error:&addPersistentStoreError]) { + NSLog(@"Unresolved error %@, %@", addPersistentStoreError, [addPersistentStoreError userInfo]); abort(); } @@ -215,12 +137,45 @@ - (NSPersistentStoreCoordinator *)persistentStoreCoordinator } #if !TARGET_IPHONE_SIMULATOR - [self addSkipBackupAttributeToItemAtURL:storeURL]; + NSError *excludeSQLiteFileFromBackupsError = nil; + if (![storeURL setResourceValue:@YES + forKey:NSURLIsExcludedFromBackupKey + error:&excludeSQLiteFileFromBackupsError]) { + NSLog(@"Excluding SQLite file from backup caused an error: %@", [excludeSQLiteFileFromBackupsError description]); + }; #endif return _persistentStoreCoordinator; } +#pragma mark - Private methods + +- (void)persistWithCompletion:(void (^)())completion +{ + NSManagedObjectContext *writerManagedObjectContext = self.writerContext; + NSManagedObjectContext *managedObjectContext = self.mainThreadContext; + + [managedObjectContext performBlock:^{ + NSError *error = nil; + if ([managedObjectContext save:&error]) { + [writerManagedObjectContext performBlock:^{ + NSError *parentError = nil; + if ([writerManagedObjectContext save:&parentError]) { + dispatch_async(dispatch_get_main_queue(), ^{ + if (completion) completion(); + }); + } else { + NSLog(@"Unresolved error saving parent managed object context %@, %@", error, [error userInfo]); + abort(); + } + }]; + } else { + NSLog(@"Unresolved error saving managed object context %@, %@", error, [error userInfo]); + abort(); + } + }]; +} + #pragma mark - Application's Documents directory - (NSURL *)applicationDocumentsDirectory @@ -231,17 +186,15 @@ - (NSURL *)applicationDocumentsDirectory #pragma mark - Public methods -- (void)performInBackgroundThreadContext:(void (^)(NSManagedObjectContext *context))operation +- (void)performInNewBackgroundThreadContext:(void (^)(NSManagedObjectContext *context))operation { - NSManagedObjectContext *context = [self backgroundThreadContext]; + NSManagedObjectContext *context = [self newBackgroundThreadContext]; [context performBlock:^{ - if (operation) { - operation(context); - } + if (operation) operation(context); }]; } -- (NSManagedObjectContext *)backgroundThreadContext +- (NSManagedObjectContext *)newBackgroundThreadContext { NSManagedObjectContext *context = [[NSManagedObjectContext alloc] initWithConcurrencyType:NSPrivateQueueConcurrencyType]; context.persistentStoreCoordinator = self.persistentStoreCoordinator; @@ -252,34 +205,33 @@ - (NSManagedObjectContext *)backgroundThreadContext selector:@selector(backgroundThreadDidSave:) name:NSManagedObjectContextDidSaveNotification object:context]; + return context; } #pragma mark - Observers -- (void)backgroundThreadDidSave:(NSNotification *)notification +- (void)backgroundThreadDidSave:(NSNotification *)backgroundThreadNotification { if ([NSThread isMainThread]) { - [NSException raise:@"ANDY_BACKGROUND_THREAD_CREATION_EXCEPTION" + [NSException raise:@"DATASTACK_BACKGROUND_THREAD_CREATION_EXCEPTION" format:@"Background context saved in the main thread. Use context's `performBlock`"]; } else { - // sync changes made on the background thread's context to the main thread's context - [self.mainThreadContext performBlock:^(){ - [self.mainThreadContext mergeChangesFromContextDidSaveNotification:notification]; + [self.mainThreadContext performBlock:^{ + [self.mainThreadContext mergeChangesFromContextDidSaveNotification:backgroundThreadNotification]; }]; } } #pragma mark - Test -- (void)destroy +- (void)drop { NSPersistentStore *store = [self.persistentStoreCoordinator.persistentStores lastObject]; NSURL *storeURL = store.URL; self.writerContext = nil; self.mainThreadContext = nil; - self.managedObjectModel = nil; self.persistentStoreCoordinator = nil; NSFileManager *fileManager = [NSFileManager defaultManager]; diff --git a/Example/Pods/Headers/Public/ANDYDataStack/ANDYDataStack.h b/Example/Pods/Headers/Public/ANDYDataStack/ANDYDataStack.h deleted file mode 120000 index 498e0551..00000000 --- a/Example/Pods/Headers/Public/ANDYDataStack/ANDYDataStack.h +++ /dev/null @@ -1 +0,0 @@ -../../../ANDYDataStack/ANDYDataStack/ANDYDataStack.h \ No newline at end of file diff --git a/Example/Pods/Headers/Public/DATAStack/DATAStack.h b/Example/Pods/Headers/Public/DATAStack/DATAStack.h new file mode 120000 index 00000000..6621332e --- /dev/null +++ b/Example/Pods/Headers/Public/DATAStack/DATAStack.h @@ -0,0 +1 @@ +../../../DATAStack/Source/DATAStack.h \ No newline at end of file diff --git a/Example/Pods/Kipu/README.md b/Example/Pods/Kipu/README.md index 9c0ab154..a7d3a227 100755 --- a/Example/Pods/Kipu/README.md +++ b/Example/Pods/Kipu/README.md @@ -7,27 +7,27 @@ >**quipu [*kee-poo*, *kwip-oo*]**: Sometimes called talking knots, were recording devices historically used in the region of Andean South America. A system also used for collecting data and keeping records, ranging from monitoring tax obligations, properly collecting census records, calendrical information, and military organization. -Kipu eases your every day job of parsing a `JSON` response and getting it into CoreData. It uses a convention over configuration paradigm to facilitate your workflow. +Kipu eases your every day job of parsing a `JSON` response and getting it into Core Data. It uses a convention over configuration paradigm to facilitate your workflow. * Handles operations in safe background threads * Thread safe saving, we handle retrieving and storing objects in the right threads * Diffing of changes, updated, inserted and deleted objects (which are automatically purged for you) * Auto-mapping of relationships (one-to-one, one-to-many and many-to-many) -* Smart-updates, only updates your NSManagedObjects if the server values are different (useful when using NSFetchedResultsController delegates) -* Uniquing, CoreData does this based on `objectID`s, we use your remote key (such as `id`) for this +* Smart-updates, only updates your `NSManagedObject`s if the server values are different (useful when using `NSFetchedResultsController` delegates) +* Uniquing, Core Data does this based on `objectID`s, we use your remote key (such as `id`) for this ## Interface ```objc + (void)processChanges:(NSArray *)changes usingEntityName:(NSString *)entityName - dataStack:(ANDYDataStack *)dataStack + dataStack:(DATAStack *)dataStack completion:(void (^)(NSError *error))completion ``` * `changes`: JSON response * `entityName`: Core Data's Model Entity Name (such as User, Note, Task) -* `dataStack`: Your [ANDYDataStack](https://github.com/NSElvis/ANDYDataStack) instance, usually from your AppDelegate +* `dataStack`: Your [DATAStack](https://github.com/NSElvis/DATAStack) instance, usually from your AppDelegate ## Real World Example @@ -64,7 +64,7 @@ Kipu eases your every day job of parsing a `JSON` response and getting it into C usingEntityName:@"User" dataStack:appDelegate.dataStack completion:^{ - // Objects saved in CoreData, do something + // Objects saved in Core Data, do something }]; ``` @@ -74,17 +74,17 @@ Kipu eases your every day job of parsing a `JSON` response and getting it into C ## Requirements -`iOS 7 or above`, `CoreData`, [`ANDYDataStack CoreData stack`](https://github.com/NSElvis/ANDYDataStack) +`iOS 7 or above`, [`ANDYDataStack Core Data stack`](https://github.com/NSElvis/ANDYDataStack) ## Components **Kipu** wouldn't be possible without the help of this *fully tested* components: -* [**ANDYDataStack**](https://github.com/NSElvis/ANDYDataStack): CoreData stack and thread safe saving +* [**DATAStack**](https://github.com/NSElvis/DATAStack): CoreData stack and thread safe saving -* [**NSManagedObject-ANDYMapChanges**](https://github.com/NSElvis/NSManagedObject-ANDYMapChanges): Helps you purge deleted objects, internally we use it to diff inserts, updates and deletes. Also it's used for uniquing CoreData does this based on objectIDs, ANDYMapChanges uses your remote keys (such as id) for this +* [**NSManagedObject-ANDYMapChanges**](https://github.com/NSElvis/NSManagedObject-ANDYMapChanges): Helps you purge deleted objects, internally we use it to diff inserts, updates and deletes. Also it's used for uniquing Core Data does this based on objectIDs, ANDYMapChanges uses your remote keys (such as id) for this -* [**NSManagedObject-HYPPropertyMapper**](https://github.com/hyperoslo/NSManagedObject-HYPPropertyMapper): Maps JSON fields with their CoreData counterparts, it does most of it's job using the paradigm "_convention over configuration_" +* [**NSManagedObject-HYPPropertyMapper**](https://github.com/hyperoslo/NSManagedObject-HYPPropertyMapper): Maps JSON fields with their Core Data counterparts, it does most of it's job using the paradigm "_convention over configuration_" ## Getting Started @@ -96,9 +96,9 @@ Kipu eases your every day job of parsing a `JSON` response and getting it into C pod 'Kipu', '~> 0.4' ``` -### ANDYDataStack +### DATAStack -Replace your Core Data Stack with [an instance of ANDYDataStack](https://github.com/NSElvis/ANDYDataStack/blob/master/Demo/Demo/AppDelegate/ANDYAppDelegate.m#L27): +Replace your Core Data Stack with [an instance of DATAStack](https://github.com/NSElvis/DATAStack/blob/master/Demo/Demo/AppDelegate/ANDYAppDelegate.m#L27): ```objc - (void)applicationWillTerminate:(UIApplication *)application @@ -114,12 +114,12 @@ Replace any call to your `managedObjectContext` used in the main thread with thi ### NSManagedObject-HYPPropertyMapper -Your CoreData models should match your backend entities, your classes can have a different name. +Your Core Data models should match your backend entities, your classes can have a different name. Your fields should match their JSON counterparts. For example `first_name` maps to `firstName`, `address` to `address`. There are only two exceptions to this rule: -* `id`s should match `entityNameID`, for example for an entity user the `id` should match `userID` +* `id`s should match `entityNameID`, for example for an entity user the `id` should match `remoteID` * `created_at` and `updated_at` should match `createdDate` and `updatedDate` ### Networking diff --git a/Example/Pods/Kipu/Source/Kipu.h b/Example/Pods/Kipu/Source/Kipu.h index e1ead573..8e820897 100644 --- a/Example/Pods/Kipu/Source/Kipu.h +++ b/Example/Pods/Kipu/Source/Kipu.h @@ -1,24 +1,24 @@ @import CoreData; -@class ANDYDataStack; +@class DATAStack; @interface Kipu : NSObject + (void)processChanges:(NSArray *)changes usingEntityName:(NSString *)entityName - dataStack:(ANDYDataStack *)dataStack + dataStack:(DATAStack *)dataStack completion:(void (^)(NSError *error))completion; + (void)processChanges:(NSArray *)changes usingEntityName:(NSString *)entityName predicate:(NSPredicate *)predicate - dataStack:(ANDYDataStack *)dataStack + dataStack:(DATAStack *)dataStack completion:(void (^)(NSError *error))completion; + (void)processChanges:(NSArray *)changes usingEntityName:(NSString *)entityName parent:(NSManagedObject *)parent - dataStack:(ANDYDataStack *)dataStack + dataStack:(DATAStack *)dataStack completion:(void (^)(NSError *error))completion; + (void)processChanges:(NSArray *)changes diff --git a/Example/Pods/Kipu/Source/Kipu.m b/Example/Pods/Kipu/Source/Kipu.m index 3bd01215..38416ddf 100644 --- a/Example/Pods/Kipu/Source/Kipu.m +++ b/Example/Pods/Kipu/Source/Kipu.m @@ -3,7 +3,7 @@ #import "NSDictionary+ANDYSafeValue.h" #import "NSManagedObject+HYPPropertyMapper.h" #import "NSManagedObject+ANDYMapChanges.h" -#import "ANDYDataStack.h" +#import "DATAStack.h" @interface NSManagedObject (Kipu) @@ -27,7 +27,7 @@ @implementation Kipu + (void)processChanges:(NSArray *)changes usingEntityName:(NSString *)entityName - dataStack:(ANDYDataStack *)dataStack + dataStack:(DATAStack *)dataStack completion:(void (^)(NSError *error))completion { [self processChanges:changes @@ -40,10 +40,10 @@ + (void)processChanges:(NSArray *)changes + (void)processChanges:(NSArray *)changes usingEntityName:(NSString *)entityName predicate:(NSPredicate *)predicate - dataStack:(ANDYDataStack *)dataStack + dataStack:(DATAStack *)dataStack completion:(void (^)(NSError *error))completion { - [dataStack performInBackgroundThreadContext:^(NSManagedObjectContext *context) { + [dataStack performInNewBackgroundThreadContext:^(NSManagedObjectContext *context) { [self processChanges:changes usingEntityName:entityName @@ -57,10 +57,10 @@ + (void)processChanges:(NSArray *)changes + (void)processChanges:(NSArray *)changes usingEntityName:(NSString *)entityName parent:(NSManagedObject *)parent - dataStack:(ANDYDataStack *)dataStack + dataStack:(DATAStack *)dataStack completion:(void (^)(NSError *error))completion { - [dataStack performInBackgroundThreadContext:^(NSManagedObjectContext *context) { + [dataStack performInNewBackgroundThreadContext:^(NSManagedObjectContext *context) { NSManagedObject *safeParent = [parent kipu_copyInContext:context]; NSPredicate *predicate = [NSPredicate predicateWithFormat:@"%K = %@", parent.entity.name, safeParent]; @@ -112,7 +112,7 @@ + (NSManagedObject *)safeObjectInContext:(NSManagedObjectContext *)context { NSError *error = nil; NSFetchRequest *request = [[NSFetchRequest alloc] initWithEntityName:entityName]; - NSString *localKey = [NSString stringWithFormat:@"%@ID", [entityName lowercaseString]]; + NSString *localKey = @"remoteID"; request.predicate = [NSPredicate predicateWithFormat:@"%K = %@", localKey, remoteID]; NSArray *objects = [context executeFetchRequest:request error:&error]; @@ -126,7 +126,7 @@ @implementation NSManagedObject (Kipu) - (NSManagedObject *)kipu_copyInContext:(NSManagedObjectContext *)context { - NSString *localKey = [NSString stringWithFormat:@"%@ID", [self.entity.name lowercaseString]]; + NSString *localKey = @"remoteID"; NSString *remoteID = [self valueForKey:localKey]; return [Kipu safeObjectInContext:context entityName:self.entity.name remoteID:remoteID]; @@ -192,7 +192,7 @@ - (void)kipu_processToManyRelationship:(NSRelationshipDescription *)relationship if (inverseIsToMany) { NSArray *childIDs = [childs valueForKey:@"id"]; - NSString *destinationKey = [NSString stringWithFormat:@"%@ID", [childEntityName lowercaseString]]; + NSString *destinationKey = @"remoteID"; if (childIDs.count == 1) { childPredicate = [NSPredicate predicateWithFormat:@"%K = %@", destinationKey, [[childs valueForKey:@"id"] firstObject]]; } else { diff --git a/Example/Pods/Local Podspecs/Kipu.podspec b/Example/Pods/Local Podspecs/Kipu.podspec index 1844c51c..3e7788e5 100755 --- a/Example/Pods/Local Podspecs/Kipu.podspec +++ b/Example/Pods/Local Podspecs/Kipu.podspec @@ -22,8 +22,8 @@ s.source_files = 'Source/**/*' s.frameworks = 'Foundation', 'CoreData' +s.dependency 'DATAStack' s.dependency 'NSManagedObject-HYPPropertyMapper' s.dependency 'NSManagedObject-ANDYMapChanges' -s.dependency 'ANDYDataStack' s.dependency 'NSDictionary-ANDYSafeValue' end diff --git a/Example/Pods/Manifest.lock b/Example/Pods/Manifest.lock index fe6b4426..f99b9f77 100644 --- a/Example/Pods/Manifest.lock +++ b/Example/Pods/Manifest.lock @@ -1,40 +1,41 @@ PODS: - - ANDYDataStack (2.0.2) - ANDYFetchedResultsTableDataSource (1.1) + - DATAStack (2.2.3) - Kipu (0.4): - - ANDYDataStack + - DATAStack - NSDictionary-ANDYSafeValue - NSManagedObject-ANDYMapChanges - NSManagedObject-HYPPropertyMapper - NSDictionary-ANDYSafeValue (0.3) - - NSManagedObject-ANDYMapChanges (0.5.1): + - NSManagedObject-ANDYMapChanges (0.6): - NSManagedObject-ANDYObjectIDs - NSManagedObject-ANDYObjectIDs (0.1) - - NSManagedObject-HYPPropertyMapper (2.8): + - NSManagedObject-HYPPropertyMapper (2.8.1): - NSString-HYPNetworking - NSString-HYPNetworking (0.1) DEPENDENCIES: - ANDYFetchedResultsTableDataSource - - Kipu (from `https://github.com/NSElvis/Kipu.git`) + - Kipu (from `https://github.com/NSElvis/Kipu.git`, branch `migration/datastack`) EXTERNAL SOURCES: Kipu: + :branch: migration/datastack :git: https://github.com/NSElvis/Kipu.git CHECKOUT OPTIONS: Kipu: - :commit: 660bed10f7ae53d076091e3f5c31805531f6f83f + :commit: fc37b89a53d533c0009488eda97f5b26593b9f56 :git: https://github.com/NSElvis/Kipu.git SPEC CHECKSUMS: - ANDYDataStack: 381f77da0875647cdc64d53c17dd01291ea00e02 ANDYFetchedResultsTableDataSource: d93c8c3eeb029a55dd2268c41f46a2d8be1457f8 - Kipu: c23dbc1e872e7085a9085c886a69c2ec8231ff92 + DATAStack: 0dc349315b3416d1347f6b45dd571d812c8dff6c + Kipu: c9811d8f56864b8c1f5e72784521cb94f9764623 NSDictionary-ANDYSafeValue: ddd983e316a52201a40c70f4ab9ead8a63c569b6 - NSManagedObject-ANDYMapChanges: 224cd299f56bbcb8466f495a22666aac877a4301 + NSManagedObject-ANDYMapChanges: f5d20e903eafecb844adfa1a7e355a1f8cf083a8 NSManagedObject-ANDYObjectIDs: d27bb3014026506848a8d164f3019ecaa2a4baca - NSManagedObject-HYPPropertyMapper: 1ad1837dc3e6e7e8a046010adacfd3fad8f084cd + NSManagedObject-HYPPropertyMapper: 13abcf971f00cf098ed5e148b1aa7fa2801f9e6a NSString-HYPNetworking: 941953383edbba2abd72014e4bfdd55fa4af8dff COCOAPODS: 0.35.0 diff --git a/Example/Pods/NSManagedObject-ANDYMapChanges/README.md b/Example/Pods/NSManagedObject-ANDYMapChanges/README.md index f1f4a830..9de4f022 100644 --- a/Example/Pods/NSManagedObject-ANDYMapChanges/README.md +++ b/Example/Pods/NSManagedObject-ANDYMapChanges/README.md @@ -39,10 +39,10 @@ This is a category on NSManagedObject that helps you to evaluate insertions, del ## Local and Remote keys -`localKey` is the name of the local primaryKey, if it's a user it could be `userID`. +`localKey` is the name of the local primaryKey, if it's a user it could be `remoteID`. `remoteKey` is the name of the key from JSON, if it's a user it could be just `id`. -The convenience method that doesn't contain this attributes, fallsback to `modelNameID`(`userID`) for the `localKey` and `id` for the `remoteKey`. +The convenience method that doesn't contain this attributes, fallsback to `remoteID` for the `localKey` and `id` for the `remoteKey`. ## Predicate @@ -69,7 +69,9 @@ To run the example project, clone the repo, and open the `.xcodeproj` from the D **NSManagedObject-ANDYMapChanges** is available through [CocoaPods](http://cocoapods.org). To install it, simply add the following line to your Podfile: -`pod 'NSManagedObject-ANDYMapChanges'` +```ruby +pod 'NSManagedObject-ANDYMapChanges' +``` ## Author diff --git a/Example/Pods/NSManagedObject-ANDYMapChanges/Source/NSManagedObject+ANDYMapChanges.m b/Example/Pods/NSManagedObject-ANDYMapChanges/Source/NSManagedObject+ANDYMapChanges.m index 7f069013..43937522 100644 --- a/Example/Pods/NSManagedObject-ANDYMapChanges/Source/NSManagedObject+ANDYMapChanges.m +++ b/Example/Pods/NSManagedObject-ANDYMapChanges/Source/NSManagedObject+ANDYMapChanges.m @@ -26,7 +26,7 @@ + (void)andy_mapChanges:(NSArray *)changes updated:(void (^)(NSDictionary *objectDict, NSManagedObject *object))updated { [self andy_mapChanges:changes - localKey:[NSString stringWithFormat:@"%@ID", [entityName lowercaseString]] + localKey:@"remoteID" remoteKey:@"id" usingPredicate:predicate inContext:context diff --git a/Example/Pods/NSManagedObject-HYPPropertyMapper/Source/NSManagedObject+HYPPropertyMapper.m b/Example/Pods/NSManagedObject-HYPPropertyMapper/Source/NSManagedObject+HYPPropertyMapper.m index 898b0f68..1101d06b 100644 --- a/Example/Pods/NSManagedObject-HYPPropertyMapper/Source/NSManagedObject+HYPPropertyMapper.m +++ b/Example/Pods/NSManagedObject-HYPPropertyMapper/Source/NSManagedObject+HYPPropertyMapper.m @@ -58,30 +58,27 @@ @implementation NSManagedObject (HYPPropertyMapper) - (void)hyp_fillWithDictionary:(NSDictionary *)dictionary { - for (__strong NSString *remoteKey in dictionary) { + for (__strong NSString *key in dictionary) { - id value = [dictionary objectForKey:remoteKey]; + id value = [dictionary objectForKey:key]; - BOOL isReservedKey = ([[NSManagedObject reservedAttributes] containsObject:remoteKey]); - if (isReservedKey) { - remoteKey = [self prefixedAttribute:remoteKey]; - } + BOOL isReservedKey = ([[NSManagedObject reservedAttributes] containsObject:key]); + if (isReservedKey) key = [self prefixedAttribute:key]; - id propertyDescription = [self propertyDescriptionForKey:remoteKey]; + id propertyDescription = [self propertyDescriptionForKey:key]; if (!propertyDescription) continue; NSString *localKey = [propertyDescription name]; - if (value && ![value isKindOfClass:[NSNull class]]) { - + BOOL valueExists = (value && ![value isKindOfClass:[NSNull class]]); + if (valueExists) { id processedValue = [self valueForPropertyDescription:propertyDescription usingRemoteValue:value]; BOOL valueHasChanged = (![[self valueForKey:localKey] isEqual:processedValue]); if (valueHasChanged) [self setValue:processedValue forKey:localKey]; - - } else { - if ([self valueForKey:localKey]) [self setValue:nil forKey:localKey]; + } else if ([self valueForKey:localKey]) { + [self setValue:nil forKey:localKey]; } } } @@ -140,13 +137,16 @@ - (NSDictionary *)hyp_dictionary if (nilOrNullValue) { mutableDictionary[key] = [NSNull null]; } else { - NSMutableString *key = [[[propertyDescription name] hyp_remoteString] mutableCopy]; BOOL isReservedKey = ([[self reservedKeys] containsObject:key]); if (isReservedKey) { - [key replaceOccurrencesOfString:[self remotePrefix] - withString:@"" - options:NSCaseInsensitiveSearch - range:NSMakeRange(0, key.length)]; + if ([key isEqualToString:@"remote_id"]) { + key = [@"id" mutableCopy]; + } else { + [key replaceOccurrencesOfString:[self remotePrefix] + withString:@"" + options:NSCaseInsensitiveSearch + range:NSMakeRange(0, key.length)]; + } } mutableDictionary[key] = value; } @@ -176,7 +176,7 @@ - (NSDictionary *)hyp_dictionary } NSString *attribute = [propertyDescription name]; - NSString *localKey = [NSString stringWithFormat:@"%@ID", [relation.entity.name lowercaseString]]; + NSString *localKey = @"remoteID"; BOOL attributeIsKey = ([localKey isEqualToString:attribute]); NSString *key; @@ -216,7 +216,15 @@ - (NSString *)remotePrefix - (NSString *)prefixedAttribute:(NSString *)attribute { - return [NSString stringWithFormat:@"%@%@", [self remotePrefix], attribute]; + NSString *prefixedAttribute; + + if ([attribute isEqualToString:@"id"]) { + prefixedAttribute = @"remote_id"; + } else { + prefixedAttribute = [NSString stringWithFormat:@"%@%@", [self remotePrefix], attribute]; + } + + return prefixedAttribute; } - (NSArray *)reservedKeys @@ -228,6 +236,8 @@ - (NSArray *)reservedKeys [keys addObject:[self prefixedAttribute:attribute]]; } + [keys addObject:@"remote_id"]; + return keys; } diff --git a/Example/Pods/Pods.xcodeproj/project.pbxproj b/Example/Pods/Pods.xcodeproj/project.pbxproj index 8788dceb..30a0221e 100644 --- a/Example/Pods/Pods.xcodeproj/project.pbxproj +++ b/Example/Pods/Pods.xcodeproj/project.pbxproj @@ -10,87 +10,59 @@ 46 objects - 000CAF7DDC26AAA207948A5D + 00E156863E0180A12857145B + + buildConfigurationList + 943EDD87C6283D8496393EDF + buildPhases + + 27719D54E5B14BEE0F9156B1 + 669B9CD2F22B10C0F6D96506 + + buildRules + + dependencies + + FEAE97BE4D25A41001040C18 + 45D0562CCF8BE6E3E368A314 + 8A7EA005C64D730014194923 + 15A0581CEFC364F5E1F9B55F + F30675F4F4C6F48DCB496695 + 0425795B39811D0D381E0E55 + DE54F433B61F5283D0141654 + E3090F6AFCF7ECF1AFD605B0 + + isa + PBXNativeTarget + name + Pods + productName + Pods + productReference + 9268BD1BD8AD4C32CA6DA70B + productType + com.apple.product-type.library.static + + 00F551F68D450BF879DCCD23 buildActionMask 2147483647 files - E9C346B1585C3105C4C0783F + A0B1F489770BC77D7AC63FAA + 0AE942BAD2F5F08D7AA8A417 isa - PBXHeadersBuildPhase + PBXSourcesBuildPhase runOnlyForDeploymentPostprocessing 0 - 00CC3A3CA9A5748D47B5B878 - - baseConfigurationReference - 6EEC76ADDFB340D050F30D25 - buildSettings - - ALWAYS_SEARCH_USER_PATHS - NO - COPY_PHASE_STRIP - NO - DSTROOT - /tmp/xcodeproj.dst - GCC_DYNAMIC_NO_PIC - NO - GCC_OPTIMIZATION_LEVEL - 0 - GCC_PRECOMPILE_PREFIX_HEADER - YES - GCC_PREFIX_HEADER - Target Support Files/Pods-NSManagedObject-ANDYMapChanges/Pods-NSManagedObject-ANDYMapChanges-prefix.pch - GCC_PREPROCESSOR_DEFINITIONS - - DEBUG=1 - $(inherited) - - GCC_SYMBOLS_PRIVATE_EXTERN - NO - INSTALL_PATH - $(BUILT_PRODUCTS_DIR) - IPHONEOS_DEPLOYMENT_TARGET - 7.0 - OTHER_LDFLAGS - - OTHER_LIBTOOLFLAGS - - PRODUCT_NAME - $(TARGET_NAME) - PUBLIC_HEADERS_FOLDER_PATH - $(TARGET_NAME) - SDKROOT - iphoneos - SKIP_INSTALL - YES - - isa - XCBuildConfiguration - name - Debug - - 0236D99A7061EF1A4BBA7EA5 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - text - path - Pods-acknowledgements.markdown - sourceTree - <group> - - 07CD5F1BD7369AAD0B1F4442 + 011304229B83A05D40155BB7 buildConfigurations - 5CF623C295B55133A6E710E3 - 5D33AEC2BC9EA53DC8C630A5 + 24BAF91FC573AC7DE8B7BBB5 + 6B7E3E197E93BF023D132BBC defaultConfigurationIsVisible 0 @@ -99,79 +71,102 @@ isa XCConfigurationList - 0819C531A7492FFF8446FBB7 + 0425795B39811D0D381E0E55 - includeInIndex - 1 isa - PBXFileReference - lastKnownFileType - sourcecode.c.h + PBXTargetDependency name - NSManagedObject+ANDYObjectIDs.h - path - Source/NSManagedObject+ANDYObjectIDs.h - sourceTree - <group> + Pods-NSManagedObject-ANDYObjectIDs + target + 3153E6544D2BA5DA92A2817E + targetProxy + 090FC86DBFC2D37F56C4CC5E - 0B02976D2498AFB403E1F94A + 04ECD55FAC735C0CE1E18345 - containerPortal - DA438A58D5D205C799D92B38 isa - PBXContainerItemProxy - proxyType - 1 - remoteGlobalIDString - 47B29EC3D1BC7E0F879BFA56 - remoteInfo - Pods-ANDYDataStack + PBXTargetDependency + name + Pods-NSString-HYPNetworking + target + FFFB891266CB349666491206 + targetProxy + 43A8C1AE12466A72F194E92F - 0C19674BC93C34320106B604 + 0507BBFFC3A4625072DB836B + buildConfigurationList + AA12D5E4A36FF5A8B3A10FC2 + buildPhases + + 498C84F71B20DA52BDE784F7 + 633C3A6E3347D3DB96812A42 + D3D82CC440BCCA218E55B571 + + buildRules + + dependencies + + 987DA180BAFA368EE4F05BB0 + isa - PBXTargetDependency + PBXNativeTarget name Pods-NSManagedObject-ANDYMapChanges - target - 34695AD7AC6ED5FDE425923F - targetProxy - 3616DBD45386B6B07A6D4EFF + productName + Pods-NSManagedObject-ANDYMapChanges + productReference + 16D4FB822AD4F58B08C49A8D + productType + com.apple.product-type.library.static - 0D2B2A8AB3C33575E12A4AC9 + 063664CB24DCF2A9463D3E52 - buildActionMask - 2147483647 - files + children - DC87C224D53CFB07F5D60FF7 + 9268BD1BD8AD4C32CA6DA70B + 712D87C307AC1375A0472635 + 9FDDC25345DEEF375ADA6E2F + E342ED631CDF2156B221E63C + 87B376A1A64AFC68448EFF8D + 16D4FB822AD4F58B08C49A8D + DB912EA1C259165EE31C09DA + 27D78AD5AC50EC295E74360B + 37EAF970372A9DA0C19E8CC9 isa - PBXHeadersBuildPhase - runOnlyForDeploymentPostprocessing - 0 + PBXGroup + name + Products + sourceTree + <group> + + 08422BD5F24ACCDA467228D3 + + fileRef + 45FE5ACF8355A4414831E1AC + isa + PBXBuildFile + settings + + COMPILER_FLAGS + -DOS_OBJECT_USE_OBJC=0 + - 0E8C931436A5BFA50875F46E + 090FC86DBFC2D37F56C4CC5E containerPortal - DA438A58D5D205C799D92B38 + 8D79E56B046AABFF6D8EDAA6 isa PBXContainerItemProxy proxyType 1 remoteGlobalIDString - 47B29EC3D1BC7E0F879BFA56 + 3153E6544D2BA5DA92A2817E remoteInfo - Pods-ANDYDataStack - - 1141EF6DBC9DB15E75FE1B3A - - fileRef - 348DDA439C29C2908EADD666 - isa - PBXBuildFile + Pods-NSManagedObject-ANDYObjectIDs - 138EE1306BE6158ABC3AA52A + 0948C72ECADB116EB5F97061 includeInIndex 1 @@ -180,173 +175,240 @@ lastKnownFileType text.xcconfig path - Pods-NSDictionary-ANDYSafeValue.xcconfig + Pods-NSString-HYPNetworking-Private.xcconfig sourceTree <group> - 13F8CA54A9B3EB289785A655 + 09B1008E3A88C80B8947AFAC + buildConfigurationList + 64A19E7B793F86E9B59E0AF0 + buildPhases + + 681C56B92670A501E7238BB7 + D63A34F97BB178F1E15AE867 + 28BEF0E365CC5586329A0A38 + + buildRules + + dependencies + isa - PBXTargetDependency + PBXNativeTarget name - Pods-NSManagedObject-ANDYObjectIDs - target - D07E79983DC7726433D146C5 - targetProxy - 328E238A179C5264CFFBA01B - - 1613FEDBA61DD7E56899F5FF - - fileRef - 2786731F87F1240C1A153C19 - isa - PBXBuildFile - - 168360BDE80E1F136FF5DF46 - - containerPortal - DA438A58D5D205C799D92B38 - isa - PBXContainerItemProxy - proxyType - 1 - remoteGlobalIDString - 9BC24AC1AEE75F7DD2EEC72F - remoteInfo - Pods-NSManagedObject-HYPPropertyMapper + Pods-DATAStack + productName + Pods-DATAStack + productReference + 9FDDC25345DEEF375ADA6E2F + productType + com.apple.product-type.library.static - 1810EA601CA49C1943998C1A + 0AE942BAD2F5F08D7AA8A417 fileRef - 1DC621BA686696ED8BC193C8 + 51E2C30D78CA224967597D4C isa PBXBuildFile - 197F91AC0552D5C6FD50AA85 + 0AF407C8E0F32C3DB2BCBC42 - children + buildConfigurations - 7CA9B3A32E856A7A8E4F4571 - 348DDA439C29C2908EADD666 - CE76CB8205282A08947261FD + E588BF0B639A8CBD857C4ACF + FF823A360C853BE5423D283B + defaultConfigurationIsVisible + 0 + defaultConfigurationName + Release isa - PBXGroup - name - NSManagedObject-HYPPropertyMapper - path - NSManagedObject-HYPPropertyMapper - sourceTree - <group> - - 1999280087BDCD150F5D2280 - - containerPortal - DA438A58D5D205C799D92B38 - isa - PBXContainerItemProxy - proxyType - 1 - remoteGlobalIDString - D07E79983DC7726433D146C5 - remoteInfo - Pods-NSManagedObject-ANDYObjectIDs + XCConfigurationList - 1AED60199AFCEB15C3C6153F + 0C6B8282A6E5778B585D89EF - explicitFileType - archive.ar includeInIndex - 0 + 1 isa PBXFileReference + lastKnownFileType + text.xcconfig path - libPods-NSDictionary-ANDYSafeValue.a + Pods-Kipu-Private.xcconfig sourceTree - BUILT_PRODUCTS_DIR - - 1B252FA61507AF734D9D910F - - containerPortal - DA438A58D5D205C799D92B38 - isa - PBXContainerItemProxy - proxyType - 1 - remoteGlobalIDString - 904FB5AD28120D0EACBC90C4 - remoteInfo - Pods-Kipu + <group> - 1C6263483FF32E754F950691 + 0ED9811C4E5B29D8965C9F3E children - F5F8F04091D6CF3877BD92D8 - 9E07DC2CEAE24A9CBDA886B1 - 813D3EAFE2FBB0DA31CCE102 + D4ADA36ADE72E9C5675CFC90 + 58913B0282650B43FEEF6AEA + 0F90A830B01A79684F0F0259 + 58E9DF1133EE78E674870355 isa PBXGroup name - NSManagedObject-ANDYMapChanges + Support Files path - NSManagedObject-ANDYMapChanges + ../Target Support Files/Pods-NSManagedObject-ANDYMapChanges sourceTree <group> - 1D8C513C40390EE39B218269 - - isa - PBXFileReference - lastKnownFileType - wrapper.framework - name - UIKit.framework - path - Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/System/Library/Frameworks/UIKit.framework - sourceTree - DEVELOPER_DIR - - 1DA71C5E99276DDA5D7B8BBA + 0F90A830B01A79684F0F0259 includeInIndex 1 isa PBXFileReference lastKnownFileType - sourcecode.c.h + sourcecode.c.objc path - Pods-NSManagedObject-ANDYObjectIDs-prefix.pch + Pods-NSManagedObject-ANDYMapChanges-dummy.m sourceTree <group> - 1DC621BA686696ED8BC193C8 + 1265ED95C767D670C0ECA168 - isa - PBXFileReference - lastKnownFileType - wrapper.framework - name - CoreData.framework + baseConfigurationReference + 58913B0282650B43FEEF6AEA + buildSettings + + ALWAYS_SEARCH_USER_PATHS + NO + COPY_PHASE_STRIP + NO + DSTROOT + /tmp/xcodeproj.dst + GCC_DYNAMIC_NO_PIC + NO + GCC_OPTIMIZATION_LEVEL + 0 + GCC_PRECOMPILE_PREFIX_HEADER + YES + GCC_PREFIX_HEADER + Target Support Files/Pods-NSManagedObject-ANDYMapChanges/Pods-NSManagedObject-ANDYMapChanges-prefix.pch + GCC_PREPROCESSOR_DEFINITIONS + + DEBUG=1 + $(inherited) + + GCC_SYMBOLS_PRIVATE_EXTERN + NO + INSTALL_PATH + $(BUILT_PRODUCTS_DIR) + IPHONEOS_DEPLOYMENT_TARGET + 7.0 + OTHER_LDFLAGS + + OTHER_LIBTOOLFLAGS + + PRODUCT_NAME + $(TARGET_NAME) + PUBLIC_HEADERS_FOLDER_PATH + $(TARGET_NAME) + SDKROOT + iphoneos + SKIP_INSTALL + YES + + isa + XCBuildConfiguration + name + Debug + + 157D0C4BE6F7386CCDF6F395 + + buildActionMask + 2147483647 + files + + 271D08578C2F57614D9A72BE + + isa + PBXHeadersBuildPhase + runOnlyForDeploymentPostprocessing + 0 + + 15A0581CEFC364F5E1F9B55F + + isa + PBXTargetDependency + name + Pods-NSDictionary-ANDYSafeValue + target + EBD342E6F9ADC4942D23BBB4 + targetProxy + 1A2ECE9331F703B0FB64EFE7 + + 16D4FB822AD4F58B08C49A8D + + explicitFileType + archive.ar + includeInIndex + 0 + isa + PBXFileReference path - Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/System/Library/Frameworks/CoreData.framework + libPods-NSManagedObject-ANDYMapChanges.a sourceTree - DEVELOPER_DIR + BUILT_PRODUCTS_DIR + + 175449D7B206A7818776DC9F + + containerPortal + 8D79E56B046AABFF6D8EDAA6 + isa + PBXContainerItemProxy + proxyType + 1 + remoteGlobalIDString + 0507BBFFC3A4625072DB836B + remoteInfo + Pods-NSManagedObject-ANDYMapChanges + + 1A2ECE9331F703B0FB64EFE7 + + containerPortal + 8D79E56B046AABFF6D8EDAA6 + isa + PBXContainerItemProxy + proxyType + 1 + remoteGlobalIDString + EBD342E6F9ADC4942D23BBB4 + remoteInfo + Pods-NSDictionary-ANDYSafeValue - 1DEDA865CB56DEDB83857FC2 + 1C179C97F2A609D6A070EB21 + + includeInIndex + 1 + isa + PBXFileReference + lastKnownFileType + sourcecode.c.h + name + ANDYFetchedResultsTableDataSource.h + path + ANDYFetchedResultsTableDataSource/ANDYFetchedResultsTableDataSource.h + sourceTree + <group> + + 1D482A635C9A47482F73F6E7 fileRef - 1DC621BA686696ED8BC193C8 + E69FC130A31F2E142CA5BF32 isa PBXBuildFile - 209EC356A978CB7BFD5952A2 + 20E614113C30EE37879FFDD8 buildConfigurations - D0648CEBC2C4B1BA2C8BBB2D - 659AE1C208A8772E0B443F79 + A77C339A3D134D0A12E4777D + FBA6F7206FEB04A9626F4859 defaultConfigurationIsVisible 0 @@ -355,50 +417,101 @@ isa XCConfigurationList - 22BC30614F6E4341E08DB4F2 + 21368AA97AE15917221E25CB - children + fileRef + CCD5ECBDAABD03FF182D4665 + isa + PBXBuildFile + + 226C5A2CB6CACC8EAC557653 + + buildActionMask + 2147483647 + files - 138EE1306BE6158ABC3AA52A - 6DF1B4562E15263BDA9F522F - 73AD3AFD295F215F805ABF6C - 427195B7BBF2841C8F9BEB00 + 08422BD5F24ACCDA467228D3 + DDE77A3ED2121C256935B6FC isa - PBXGroup - name - Support Files - path - ../Target Support Files/Pods-NSDictionary-ANDYSafeValue - sourceTree - <group> + PBXSourcesBuildPhase + runOnlyForDeploymentPostprocessing + 0 - 240E71103727AC3BE49C1BC0 + 24BA6D6374B9595B4F092566 - fileRef - BBB71483C83B3419A47F3CC4 isa - PBXBuildFile - settings + PBXTargetDependency + name + Pods-NSManagedObject-HYPPropertyMapper + target + 60324F134C7FAE9F8F81667D + targetProxy + 43E45FC6822D8F91CAF88EB5 + + 24BAF91FC573AC7DE8B7BBB5 + + baseConfigurationReference + C40F824DD468E21AF91CE7A5 + buildSettings - COMPILER_FLAGS - -DOS_OBJECT_USE_OBJC=0 + ALWAYS_SEARCH_USER_PATHS + NO + COPY_PHASE_STRIP + NO + DSTROOT + /tmp/xcodeproj.dst + GCC_DYNAMIC_NO_PIC + NO + GCC_OPTIMIZATION_LEVEL + 0 + GCC_PRECOMPILE_PREFIX_HEADER + YES + GCC_PREFIX_HEADER + Target Support Files/Pods-NSDictionary-ANDYSafeValue/Pods-NSDictionary-ANDYSafeValue-prefix.pch + GCC_PREPROCESSOR_DEFINITIONS + + DEBUG=1 + $(inherited) + + GCC_SYMBOLS_PRIVATE_EXTERN + NO + INSTALL_PATH + $(BUILT_PRODUCTS_DIR) + IPHONEOS_DEPLOYMENT_TARGET + 7.0 + OTHER_LDFLAGS + + OTHER_LIBTOOLFLAGS + + PRODUCT_NAME + $(TARGET_NAME) + PUBLIC_HEADERS_FOLDER_PATH + $(TARGET_NAME) + SDKROOT + iphoneos + SKIP_INSTALL + YES + isa + XCBuildConfiguration + name + Debug - 245DAF6B020542F075CA6E77 + 24D973CD0EA598365A6263A0 - includeInIndex - 1 + buildActionMask + 2147483647 + files + + E1506B821B38937C1C687E7F + isa - PBXFileReference - lastKnownFileType - text.xcconfig - path - Pods-Kipu-Private.xcconfig - sourceTree - <group> + PBXFrameworksBuildPhase + runOnlyForDeploymentPostprocessing + 0 - 25B618D98E608D5EED85950E + 256E14414F9B56096317ADC9 includeInIndex 1 @@ -407,16 +520,16 @@ lastKnownFileType sourcecode.c.objc name - NSString+HYPNetworking.m + NSDictionary+ANDYSafeValue.m path - Source/NSString+HYPNetworking.m + Source/NSDictionary+ANDYSafeValue.m sourceTree <group> - 25EF9592EDF0321857264FC1 + 25BF6CC9D1AB0B0D9956248C baseConfigurationReference - 31FA66883B802EC3A5790ED6 + 58913B0282650B43FEEF6AEA buildSettings ALWAYS_SEARCH_USER_PATHS @@ -428,7 +541,7 @@ GCC_PRECOMPILE_PREFIX_HEADER YES GCC_PREFIX_HEADER - Target Support Files/Pods-NSString-HYPNetworking/Pods-NSString-HYPNetworking-prefix.pch + Target Support Files/Pods-NSManagedObject-ANDYMapChanges/Pods-NSManagedObject-ANDYMapChanges-prefix.pch INSTALL_PATH $(BUILT_PRODUCTS_DIR) IPHONEOS_DEPLOYMENT_TARGET @@ -463,327 +576,210 @@ name Release - 27861836AA97C3F0DE283281 + 25C3877DD5A8A016159CC322 includeInIndex 1 isa PBXFileReference lastKnownFileType - text.xcconfig - path - Pods-NSManagedObject-HYPPropertyMapper.xcconfig - sourceTree - <group> - - 2786731F87F1240C1A153C19 - - isa - PBXFileReference - lastKnownFileType - wrapper.framework + sourcecode.c.objc name - Foundation.framework + NSManagedObject+ANDYMapChanges.m path - Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/System/Library/Frameworks/Foundation.framework + Source/NSManagedObject+ANDYMapChanges.m sourceTree - DEVELOPER_DIR - - 28CE54C7B5575CE318570FA9 - - isa - PBXTargetDependency - name - Pods-NSDictionary-ANDYSafeValue - target - FAA1133EB8A8B86A5517DFAE - targetProxy - 51DF82603AE9EDEA6B730B5D + <group> - 2AE750C7472236ED98A3E093 + 271D08578C2F57614D9A72BE fileRef - CAF2B26DAA798E79A45735C0 + 511B7A55562ACECBD6E2E235 isa PBXBuildFile - 2BFD6A0864357038B7547DDB + 27719D54E5B14BEE0F9156B1 - buildConfigurations + buildActionMask + 2147483647 + files - 00CC3A3CA9A5748D47B5B878 - 628FE0364ABEA4416069343E + FB84356A257CF5F9084FFE69 - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release isa - XCConfigurationList + PBXSourcesBuildPhase + runOnlyForDeploymentPostprocessing + 0 - 2FD6824FBFAD9D82458DC6D1 + 27D78AD5AC50EC295E74360B + explicitFileType + archive.ar includeInIndex - 1 + 0 isa PBXFileReference - lastKnownFileType - sourcecode.c.h path - Pods-Kipu-prefix.pch + libPods-NSManagedObject-HYPPropertyMapper.a sourceTree - <group> + BUILT_PRODUCTS_DIR - 304027FA021A1EC769869536 + 283D39D83B26FF8248A76D83 - buildConfigurationList - A75CEE5C3254C0A1EF3D3AD5 - buildPhases + buildActionMask + 2147483647 + files - 3DA25B6465BD9B68125AFA30 - 9905EFE2DDAEC08240449279 - 353EBCA5A6B157C48AD5499A + FD8F2E996A2454CA0D782E65 - buildRules - - dependencies - isa - PBXNativeTarget + PBXFrameworksBuildPhase + runOnlyForDeploymentPostprocessing + 0 + + 28BEF0E365CC5586329A0A38 + + buildActionMask + 2147483647 + files + + 367CB178CACE1521970314DF + + isa + PBXHeadersBuildPhase + runOnlyForDeploymentPostprocessing + 0 + + 28F7A57239439A611F57F8B3 + + isa + PBXTargetDependency name - Pods-ANDYFetchedResultsTableDataSource - productName - Pods-ANDYFetchedResultsTableDataSource - productReference - 66FF590424535259166ED863 - productType - com.apple.product-type.library.static + Pods-NSManagedObject-ANDYMapChanges + target + 0507BBFFC3A4625072DB836B + targetProxy + 444FF1C686C1B586DD5FE1E6 - 306B533327AA8660548A71DB + 29136B36EB96B09F2578EFED - includeInIndex - 1 + fileRef + 25C3877DD5A8A016159CC322 isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - Pods-NSManagedObject-ANDYMapChanges-prefix.pch - sourceTree - <group> + PBXBuildFile - 31598B4E05BCD94824B00546 + 2C0D8828094112557AE98AFA buildActionMask 2147483647 files - 3E56C07B9A399F1E39E78630 + F9D9436E439F470DF7539844 + 6878E1523BB4D1EA2B157A8E isa PBXFrameworksBuildPhase runOnlyForDeploymentPostprocessing 0 - 31FA66883B802EC3A5790ED6 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - text.xcconfig - path - Pods-NSString-HYPNetworking-Private.xcconfig - sourceTree - <group> - - 328E238A179C5264CFFBA01B + 2F8CADDCFFEF159A637E0568 containerPortal - DA438A58D5D205C799D92B38 + 8D79E56B046AABFF6D8EDAA6 isa PBXContainerItemProxy proxyType 1 remoteGlobalIDString - D07E79983DC7726433D146C5 + 3153E6544D2BA5DA92A2817E remoteInfo Pods-NSManagedObject-ANDYObjectIDs - 34695AD7AC6ED5FDE425923F + 3107890B17B0B67123D340FC + + buildConfigurations + + CAE5403626BCDA85A4A72E9D + 689833C5755F0A8C4910D88F + + defaultConfigurationIsVisible + 0 + defaultConfigurationName + Release + isa + XCConfigurationList + + 3153E6544D2BA5DA92A2817E buildConfigurationList - 2BFD6A0864357038B7547DDB + 0AF407C8E0F32C3DB2BCBC42 buildPhases - D70C672922AC82135E1DE9FD - 890AB5570A06BFEFD57D37B9 - 64E2B028CE6ABBC017F80A65 + 00F551F68D450BF879DCCD23 + 724D241457C42AB61E14CB7A + 39EFEEA08638458A87799518 buildRules dependencies - - CA35E54E8495A64D6C4FB709 - + isa PBXNativeTarget name - Pods-NSManagedObject-ANDYMapChanges + Pods-NSManagedObject-ANDYObjectIDs productName - Pods-NSManagedObject-ANDYMapChanges + Pods-NSManagedObject-ANDYObjectIDs productReference - 73D307F6BC1DF9A666AD9B4F + DB912EA1C259165EE31C09DA productType com.apple.product-type.library.static - 346B187ABA5DC54D61CA812F - - baseConfigurationReference - 8FD1BA2DE0CBAAF0366124A7 - buildSettings - - ALWAYS_SEARCH_USER_PATHS - NO - COPY_PHASE_STRIP - YES - DSTROOT - /tmp/xcodeproj.dst - GCC_PRECOMPILE_PREFIX_HEADER - YES - GCC_PREFIX_HEADER - Target Support Files/Pods-NSManagedObject-ANDYObjectIDs/Pods-NSManagedObject-ANDYObjectIDs-prefix.pch - INSTALL_PATH - $(BUILT_PRODUCTS_DIR) - IPHONEOS_DEPLOYMENT_TARGET - 7.0 - OTHER_CFLAGS - - -DNS_BLOCK_ASSERTIONS=1 - $(inherited) - - OTHER_CPLUSPLUSFLAGS - - -DNS_BLOCK_ASSERTIONS=1 - $(inherited) - - OTHER_LDFLAGS - - OTHER_LIBTOOLFLAGS - - PRODUCT_NAME - $(TARGET_NAME) - PUBLIC_HEADERS_FOLDER_PATH - $(TARGET_NAME) - SDKROOT - iphoneos - SKIP_INSTALL - YES - VALIDATE_PRODUCT - YES - - isa - XCBuildConfiguration - name - Release - - 348DDA439C29C2908EADD666 + 3162C46A22C0C267F358576C includeInIndex 1 isa PBXFileReference lastKnownFileType - sourcecode.c.objc - name - NSManagedObject+HYPPropertyMapper.m + sourcecode.c.h path - Source/NSManagedObject+HYPPropertyMapper.m + Pods-environment.h sourceTree <group> - 353EBCA5A6B157C48AD5499A + 32F3E232D09212E0D0958A6D buildActionMask 2147483647 files - F01D688E1398213777610238 + C4037C488B9F7652D3ECB6AC + E2A39BF61FFDFED693C1B42C + 5CBFF646911F983477780707 isa - PBXHeadersBuildPhase + PBXFrameworksBuildPhase runOnlyForDeploymentPostprocessing 0 - 3616DBD45386B6B07A6D4EFF + 3508C5B15FE296472BE3AE1D - containerPortal - DA438A58D5D205C799D92B38 - isa - PBXContainerItemProxy - proxyType + includeInIndex 1 - remoteGlobalIDString - 34695AD7AC6ED5FDE425923F - remoteInfo - Pods-NSManagedObject-ANDYMapChanges - - 376CF328FA2386FDC97B7CAD - - buildConfigurationList - D8EE1123E045BF98D81FF018 - buildPhases - - DC14BC211FE892C2FB39FBE1 - 31598B4E05BCD94824B00546 - - buildRules - - dependencies - - 50E3A169EA8DBB8415DD1877 - 54D73F687F996C61CB791475 - 5A2A8FDCB25276C4D3A2548B - 28CE54C7B5575CE318570FA9 - 853F875B75DDAA3700F96F47 - 13F8CA54A9B3EB289785A655 - 6DF9496881BD6451DD999ACF - D32C85FA812F7BDC8930B716 - - isa - PBXNativeTarget - name - Pods - productName - Pods - productReference - E0CAF802FEA7CDD1E286DBFA - productType - com.apple.product-type.library.static - - 38482B8E30F68936CB658B47 - - children - - 723703A19B43E74D74C17E4C - 25B618D98E608D5EED85950E - BF852829E93C29A3FA7EA62D - isa - PBXGroup - name - NSString-HYPNetworking + PBXFileReference + lastKnownFileType + text.xcconfig path - NSString-HYPNetworking + Pods-NSManagedObject-HYPPropertyMapper.xcconfig sourceTree <group> - 390943503B787C1307EAB42A + 35C7EF996E4EEF0E283A1272 children - BBB32CFE06A94658F1E01585 + B4EBFD6938E61358F581559F isa PBXGroup @@ -792,157 +788,88 @@ sourceTree <group> - 398795257E971DD7E82B8E2E + 367CB178CACE1521970314DF fileRef - 2786731F87F1240C1A153C19 + 4432DF60EAAF1EE903CC7793 isa PBXBuildFile - 3A2081AEFF4F1BF44ECB1F67 - - isa - PBXTargetDependency - name - Pods-ANDYDataStack - target - 47B29EC3D1BC7E0F879BFA56 - targetProxy - 0E8C931436A5BFA50875F46E - - 3DA25B6465BD9B68125AFA30 - - buildActionMask - 2147483647 - files - - 240E71103727AC3BE49C1BC0 - BD26D886616D891094106B7F - - isa - PBXSourcesBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - 3E56C07B9A399F1E39E78630 + 377B22FF91993504C33DD598 fileRef - 2786731F87F1240C1A153C19 + 594F90DC1EAE4DEB2E96F2F7 isa PBXBuildFile - 40DAEFC86DC7F068B46D2ABE + 37A2F6E0AA89AF282C757AB3 includeInIndex 1 isa PBXFileReference lastKnownFileType - sourcecode.c.h - name - NSDictionary+ANDYSafeValue.h + text.xcconfig path - Source/NSDictionary+ANDYSafeValue.h + Pods-ANDYFetchedResultsTableDataSource-Private.xcconfig sourceTree <group> - 41F6B62ACD2342BB22D08D95 + 37EAF970372A9DA0C19E8CC9 + explicitFileType + archive.ar includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - name - ANDYFetchedResultsTableDataSource.h - path - ANDYFetchedResultsTableDataSource/ANDYFetchedResultsTableDataSource.h - sourceTree - <group> - - 424C6C9A3F9E47C9BD390EEE - - buildActionMask - 2147483647 - files - - 7E2FD60B77ABF9E24801B6BB - - isa - PBXHeadersBuildPhase - runOnlyForDeploymentPostprocessing 0 - - 427195B7BBF2841C8F9BEB00 - - includeInIndex - 1 isa PBXFileReference - lastKnownFileType - sourcecode.c.h path - Pods-NSDictionary-ANDYSafeValue-prefix.pch + libPods-NSString-HYPNetworking.a sourceTree - <group> - - 4350395DA06C5BCA4059F078 - - containerPortal - DA438A58D5D205C799D92B38 - isa - PBXContainerItemProxy - proxyType - 1 - remoteGlobalIDString - 304027FA021A1EC769869536 - remoteInfo - Pods-ANDYFetchedResultsTableDataSource + BUILT_PRODUCTS_DIR - 44DFCC74D758418CCD808641 + 39EFEEA08638458A87799518 buildActionMask 2147483647 files - BE3CDC49CFDB6D175936992F + 69E13A8D7641A290E83FD2E7 isa PBXHeadersBuildPhase runOnlyForDeploymentPostprocessing 0 - 44F78C7189E5894DABF4D7D9 + 431770FC6578619331899685 baseConfigurationReference - 6DF1B4562E15263BDA9F522F + 7656D991F042A3CA6F0E75B7 buildSettings ALWAYS_SEARCH_USER_PATHS NO COPY_PHASE_STRIP - YES + NO DSTROOT /tmp/xcodeproj.dst + GCC_DYNAMIC_NO_PIC + NO + GCC_OPTIMIZATION_LEVEL + 0 GCC_PRECOMPILE_PREFIX_HEADER YES - GCC_PREFIX_HEADER - Target Support Files/Pods-NSDictionary-ANDYSafeValue/Pods-NSDictionary-ANDYSafeValue-prefix.pch + GCC_PREPROCESSOR_DEFINITIONS + + DEBUG=1 + $(inherited) + + GCC_SYMBOLS_PRIVATE_EXTERN + NO INSTALL_PATH $(BUILT_PRODUCTS_DIR) IPHONEOS_DEPLOYMENT_TARGET 7.0 - OTHER_CFLAGS - - -DNS_BLOCK_ASSERTIONS=1 - $(inherited) - - OTHER_CPLUSPLUSFLAGS - - -DNS_BLOCK_ASSERTIONS=1 - $(inherited) - OTHER_LDFLAGS OTHER_LIBTOOLFLAGS @@ -955,15 +882,39 @@ iphoneos SKIP_INSTALL YES - VALIDATE_PRODUCT - YES isa XCBuildConfiguration name - Release + Debug + + 43A8C1AE12466A72F194E92F + + containerPortal + 8D79E56B046AABFF6D8EDAA6 + isa + PBXContainerItemProxy + proxyType + 1 + remoteGlobalIDString + FFFB891266CB349666491206 + remoteInfo + Pods-NSString-HYPNetworking + + 43E45FC6822D8F91CAF88EB5 + + containerPortal + 8D79E56B046AABFF6D8EDAA6 + isa + PBXContainerItemProxy + proxyType + 1 + remoteGlobalIDString + 60324F134C7FAE9F8F81667D + remoteInfo + Pods-NSManagedObject-HYPPropertyMapper - 471935CEB15CA0F760E99913 + 4432DF60EAAF1EE903CC7793 includeInIndex 1 @@ -972,85 +923,109 @@ lastKnownFileType sourcecode.c.h name - ANDYDataStack.h + DATAStack.h path - ANDYDataStack/ANDYDataStack.h + Source/DATAStack.h sourceTree <group> - 4777D4622E3E5AC49A13185C + 444FF1C686C1B586DD5FE1E6 + + containerPortal + 8D79E56B046AABFF6D8EDAA6 + isa + PBXContainerItemProxy + proxyType + 1 + remoteGlobalIDString + 0507BBFFC3A4625072DB836B + remoteInfo + Pods-NSManagedObject-ANDYMapChanges + + 44EE90F3E8E19A9F1078CD40 children - AFA887D829850CEFFBBD266D + 45CBF719EAE4D947888F324B + 37A2F6E0AA89AF282C757AB3 + 8317D771463BD5F223EAE29C + 457C87101EF99B8277EC413C isa PBXGroup name - Targets Support Files + Support Files + path + ../Target Support Files/Pods-ANDYFetchedResultsTableDataSource sourceTree <group> - 47B29EC3D1BC7E0F879BFA56 + 457C87101EF99B8277EC413C - buildConfigurationList - 07CD5F1BD7369AAD0B1F4442 - buildPhases - - 49EEF90136917A22419B8DD0 - F5BA27C9901125034D354642 - C0F3FEA1ED28A870B0600DCB - - buildRules - - dependencies - + includeInIndex + 1 isa - PBXNativeTarget - name - Pods-ANDYDataStack - productName - Pods-ANDYDataStack - productReference - F5CAFE15C3A3189F7ADAD4C5 - productType - com.apple.product-type.library.static + PBXFileReference + lastKnownFileType + sourcecode.c.h + path + Pods-ANDYFetchedResultsTableDataSource-prefix.pch + sourceTree + <group> - 49B560A5CEE94D71554838FD + 45CBF719EAE4D947888F324B - fileRef - 4D1C3932CF617886AF6400CF + includeInIndex + 1 isa - PBXBuildFile + PBXFileReference + lastKnownFileType + text.xcconfig + path + Pods-ANDYFetchedResultsTableDataSource.xcconfig + sourceTree + <group> - 49EEF90136917A22419B8DD0 + 45D0562CCF8BE6E3E368A314 - buildActionMask - 2147483647 - files - - F04DB3E40051BD1EDBCA6CB0 - C288EF7799E129A886ED13DE - isa - PBXSourcesBuildPhase - runOnlyForDeploymentPostprocessing - 0 + PBXTargetDependency + name + Pods-DATAStack + target + 09B1008E3A88C80B8947AFAC + targetProxy + DE8EC870A178E8B41D91F2C3 - 4C008AE163A3C4BA3994D384 + 45FE5ACF8355A4414831E1AC - containerPortal - DA438A58D5D205C799D92B38 + includeInIndex + 1 isa - PBXContainerItemProxy - proxyType + PBXFileReference + lastKnownFileType + sourcecode.c.objc + name + ANDYFetchedResultsTableDataSource.m + path + ANDYFetchedResultsTableDataSource/ANDYFetchedResultsTableDataSource.m + sourceTree + <group> + + 46350F2016CC8DDF5CE5EC23 + + includeInIndex 1 - remoteGlobalIDString - 34695AD7AC6ED5FDE425923F - remoteInfo - Pods-NSManagedObject-ANDYMapChanges + isa + PBXFileReference + lastKnownFileType + sourcecode.c.h + path + Pods-Kipu-prefix.pch + sourceTree + <group> - 4CE51D09A781A346BC3222E0 + 46FEF83E7393C51A45CC880B includeInIndex 1 @@ -1059,190 +1034,196 @@ lastKnownFileType text.xcconfig path - Pods-NSManagedObject-HYPPropertyMapper-Private.xcconfig + Pods-NSString-HYPNetworking.xcconfig sourceTree <group> - 4D15E50491C570B01E230EB7 + 47EC10E4804767FB6CB1DF32 includeInIndex 1 isa PBXFileReference lastKnownFileType - sourcecode.c.objc + sourcecode.c.h path - Pods-dummy.m + Pods-NSDictionary-ANDYSafeValue-prefix.pch sourceTree <group> - 4D1C3932CF617886AF6400CF + 4925E4857F2A11D6788277B5 includeInIndex 1 isa PBXFileReference lastKnownFileType - sourcecode.c.objc + sourcecode.c.h + name + NSManagedObject+HYPPropertyMapper.h path - Pods-NSManagedObject-HYPPropertyMapper-dummy.m + Source/NSManagedObject+HYPPropertyMapper.h sourceTree <group> - 4FB83FDD27E8300C343230A4 + 498C84F71B20DA52BDE784F7 buildActionMask 2147483647 files - 9686B096BD82B7F055157EFA - CF978BF32F535D2902A5BA18 + 29136B36EB96B09F2578EFED + B2EB717B74A5119DA0B987D0 isa PBXSourcesBuildPhase runOnlyForDeploymentPostprocessing 0 - 4FF187A4F98B4F5BC4C3211C + 4AF0740EE8D17B44E23674EF - baseConfigurationReference - D3BF78401078B931DFEED093 - buildSettings - - ALWAYS_SEARCH_USER_PATHS - NO - COPY_PHASE_STRIP - NO - DSTROOT - /tmp/xcodeproj.dst - GCC_DYNAMIC_NO_PIC - NO - GCC_OPTIMIZATION_LEVEL - 0 - GCC_PRECOMPILE_PREFIX_HEADER - YES - GCC_PREPROCESSOR_DEFINITIONS - - DEBUG=1 - $(inherited) - - GCC_SYMBOLS_PRIVATE_EXTERN - NO - INSTALL_PATH - $(BUILT_PRODUCTS_DIR) - IPHONEOS_DEPLOYMENT_TARGET - 7.0 - OTHER_LDFLAGS - - OTHER_LIBTOOLFLAGS - - PRODUCT_NAME - $(TARGET_NAME) - PUBLIC_HEADERS_FOLDER_PATH - $(TARGET_NAME) - SDKROOT - iphoneos - SKIP_INSTALL - YES - + buildConfigurations + + C4336C7F098B4BF8F98B96E3 + A2CB9667967FE47160005F9F + + defaultConfigurationIsVisible + 0 + defaultConfigurationName + Release isa - XCBuildConfiguration + XCConfigurationList + + 5028C2F052729C929EE43EC6 + + includeInIndex + 1 + isa + PBXFileReference + lastKnownFileType + text.xcconfig + path + Pods-DATAStack-Private.xcconfig + sourceTree + <group> + + 505E571838B8868A1ED7A0ED + + children + + 3508C5B15FE296472BE3AE1D + 935A6B04F2DD08D3FDE77A4E + FB7944C7F0BB249EE44ED222 + 6FFF87F9D5D170238BF16EA4 + + isa + PBXGroup name - Debug + Support Files + path + ../Target Support Files/Pods-NSManagedObject-HYPPropertyMapper + sourceTree + <group> - 50E3A169EA8DBB8415DD1877 + 511B7A55562ACECBD6E2E235 + includeInIndex + 1 isa - PBXTargetDependency + PBXFileReference + lastKnownFileType + sourcecode.c.h name - Pods-ANDYDataStack - target - 47B29EC3D1BC7E0F879BFA56 - targetProxy - 0B02976D2498AFB403E1F94A + NSString+HYPNetworking.h + path + Source/NSString+HYPNetworking.h + sourceTree + <group> + + 51E2C30D78CA224967597D4C + + includeInIndex + 1 + isa + PBXFileReference + lastKnownFileType + sourcecode.c.objc + path + Pods-NSManagedObject-ANDYObjectIDs-dummy.m + sourceTree + <group> - 51DF82603AE9EDEA6B730B5D + 5218F63CCC0CC28B7C0A3A79 containerPortal - DA438A58D5D205C799D92B38 + 8D79E56B046AABFF6D8EDAA6 isa PBXContainerItemProxy proxyType 1 remoteGlobalIDString - FAA1133EB8A8B86A5517DFAE + FFFB891266CB349666491206 remoteInfo - Pods-NSDictionary-ANDYSafeValue + Pods-NSString-HYPNetworking - 54D73F687F996C61CB791475 + 52BCF5CB9D61B49952335353 isa PBXTargetDependency name - Pods-ANDYFetchedResultsTableDataSource + Pods-NSDictionary-ANDYSafeValue target - 304027FA021A1EC769869536 + EBD342E6F9ADC4942D23BBB4 targetProxy - 4350395DA06C5BCA4059F078 + BBBC43303A2C3709276D9DB3 - 5647960C6A8388F750E95837 + 58834AF34FE4B362BAF413B2 - fileRef - E2B156A0BEE4B144AF0B8425 + children + + FAF8F7C17E3C20BE236A22E9 + 8D508F5CB93B1051F065DCB3 + 92617A0B0F04BC3EF00B0BD8 + D1D267316B602649C1ACDBA1 + F5B49E34BBB74AF0019A7350 + D02ED7479CC7644A18A8700A + 9206402C09CC593CEB43D12C + AE36D3B6F9FAED58CAEA7E5F + isa - PBXBuildFile + PBXGroup + name + Pods + sourceTree + <group> - 574823C8978825989027D859 + 58913B0282650B43FEEF6AEA - baseConfigurationReference - 7B76EC74AA8D995EB078286D - buildSettings - - ALWAYS_SEARCH_USER_PATHS - NO - COPY_PHASE_STRIP - YES - DSTROOT - /tmp/xcodeproj.dst - GCC_PRECOMPILE_PREFIX_HEADER - YES - GCC_PREFIX_HEADER - Target Support Files/Pods-ANDYFetchedResultsTableDataSource/Pods-ANDYFetchedResultsTableDataSource-prefix.pch - INSTALL_PATH - $(BUILT_PRODUCTS_DIR) - IPHONEOS_DEPLOYMENT_TARGET - 7.0 - OTHER_CFLAGS - - -DNS_BLOCK_ASSERTIONS=1 - $(inherited) - - OTHER_CPLUSPLUSFLAGS - - -DNS_BLOCK_ASSERTIONS=1 - $(inherited) - - OTHER_LDFLAGS - - OTHER_LIBTOOLFLAGS - - PRODUCT_NAME - $(TARGET_NAME) - PUBLIC_HEADERS_FOLDER_PATH - $(TARGET_NAME) - SDKROOT - iphoneos - SKIP_INSTALL - YES - VALIDATE_PRODUCT - YES - + includeInIndex + 1 isa - XCBuildConfiguration - name - Release + PBXFileReference + lastKnownFileType + text.xcconfig + path + Pods-NSManagedObject-ANDYMapChanges-Private.xcconfig + sourceTree + <group> + + 58E9DF1133EE78E674870355 + + includeInIndex + 1 + isa + PBXFileReference + lastKnownFileType + sourcecode.c.h + path + Pods-NSManagedObject-ANDYMapChanges-prefix.pch + sourceTree + <group> - 574C6268044B51799DA0639D + 594F90DC1EAE4DEB2E96F2F7 includeInIndex 1 @@ -1255,44 +1236,111 @@ sourceTree <group> - 575CBA81540B0E6F7130DCD5 + 5CBFF646911F983477780707 fileRef - 4D15E50491C570B01E230EB7 + CDDC3C677722991375A17718 isa PBXBuildFile - 587BADF208A5955533561EFD + 60324F134C7FAE9F8F81667D - fileRef - 7CA9B3A32E856A7A8E4F4571 + buildConfigurationList + 4AF0740EE8D17B44E23674EF + buildPhases + + F3403A625AA147D0861D7DDC + 24D973CD0EA598365A6263A0 + FE8A7A354CEFF4E31908A8F4 + + buildRules + + dependencies + + 04ECD55FAC735C0CE1E18345 + isa - PBXBuildFile + PBXNativeTarget + name + Pods-NSManagedObject-HYPPropertyMapper + productName + Pods-NSManagedObject-HYPPropertyMapper + productReference + 27D78AD5AC50EC295E74360B + productType + com.apple.product-type.library.static - 5A2A8FDCB25276C4D3A2548B + 60BD87035E40AC615E082FA0 + children + + FF5D49258C18A14EC2113894 + isa - PBXTargetDependency + PBXGroup name - Pods-Kipu - target - 904FB5AD28120D0EACBC90C4 - targetProxy - 1B252FA61507AF734D9D910F + Targets Support Files + sourceTree + <group> + + 621137F22494CC59E655D29E + + includeInIndex + 1 + isa + PBXFileReference + lastKnownFileType + sourcecode.c.objc + path + Pods-dummy.m + sourceTree + <group> + + 626E2BA28B54E64908552049 + + children + + 78F4F1F815CA5EEF55668ADA + 6E85110A0A73F70678C13A1E + 51E2C30D78CA224967597D4C + E286CBE043167B3730C87775 + + isa + PBXGroup + name + Support Files + path + ../Target Support Files/Pods-NSManagedObject-ANDYObjectIDs + sourceTree + <group> + + 633C3A6E3347D3DB96812A42 + + buildActionMask + 2147483647 + files + + F9B086BB7A51E0343F261213 + 7322DAAE6042D1BA1036AD83 + + isa + PBXFrameworksBuildPhase + runOnlyForDeploymentPostprocessing + 0 - 5BC45C9D6B57ABC8BF8DB482 + 645788CCC259C081F3470BB5 fileRef - 2786731F87F1240C1A153C19 + 4925E4857F2A11D6788277B5 isa PBXBuildFile - 5C3767C8232221BDB1742B09 + 64A19E7B793F86E9B59E0AF0 buildConfigurations - EC8558B4618B7C9F2F7E64B0 - 44F78C7189E5894DABF4D7D9 + EF607D616713B9823918EE85 + CF08C6E1F76668CEAEEFC3F6 defaultConfigurationIsVisible 0 @@ -1301,59 +1349,72 @@ isa XCConfigurationList - 5CF623C295B55133A6E710E3 + 64B46115D1BB248366702F53 - baseConfigurationReference - C20C9CFC5B13EB3C9DC41695 - buildSettings - - ALWAYS_SEARCH_USER_PATHS - NO - COPY_PHASE_STRIP - NO - DSTROOT - /tmp/xcodeproj.dst - GCC_DYNAMIC_NO_PIC - NO - GCC_OPTIMIZATION_LEVEL - 0 - GCC_PRECOMPILE_PREFIX_HEADER - YES - GCC_PREFIX_HEADER - Target Support Files/Pods-ANDYDataStack/Pods-ANDYDataStack-prefix.pch - GCC_PREPROCESSOR_DEFINITIONS - - DEBUG=1 - $(inherited) - - GCC_SYMBOLS_PRIVATE_EXTERN - NO - INSTALL_PATH - $(BUILT_PRODUCTS_DIR) - IPHONEOS_DEPLOYMENT_TARGET - 7.0 - OTHER_LDFLAGS - - OTHER_LIBTOOLFLAGS - - PRODUCT_NAME - $(TARGET_NAME) - PUBLIC_HEADERS_FOLDER_PATH - $(TARGET_NAME) - SDKROOT - iphoneos - SKIP_INSTALL - YES - + includeInIndex + 1 isa - XCBuildConfiguration + PBXFileReference + lastKnownFileType + text.xcconfig + path + Pods-Kipu.xcconfig + sourceTree + <group> + + 669B9CD2F22B10C0F6D96506 + + buildActionMask + 2147483647 + files + + 9B902ACAAA0BE0A452B32772 + + isa + PBXFrameworksBuildPhase + runOnlyForDeploymentPostprocessing + 0 + + 6751CD42CD2D854890DF1E9A + + includeInIndex + 1 + isa + PBXFileReference + lastKnownFileType + sourcecode.c.objc name - Debug + NSManagedObject+ANDYObjectIDs.m + path + Source/NSManagedObject+ANDYObjectIDs.m + sourceTree + <group> + + 681C56B92670A501E7238BB7 + + buildActionMask + 2147483647 + files + + E79C0D1554C3AEDAE93177C3 + B2F1176B881A1BB57EE0F33F + + isa + PBXSourcesBuildPhase + runOnlyForDeploymentPostprocessing + 0 + + 6878E1523BB4D1EA2B157A8E + + fileRef + EFBC814FD97803088ABED12F + isa + PBXBuildFile - 5D33AEC2BC9EA53DC8C630A5 + 689833C5755F0A8C4910D88F baseConfigurationReference - C20C9CFC5B13EB3C9DC41695 + 37A2F6E0AA89AF282C757AB3 buildSettings ALWAYS_SEARCH_USER_PATHS @@ -1365,7 +1426,7 @@ GCC_PRECOMPILE_PREFIX_HEADER YES GCC_PREFIX_HEADER - Target Support Files/Pods-ANDYDataStack/Pods-ANDYDataStack-prefix.pch + Target Support Files/Pods-ANDYFetchedResultsTableDataSource/Pods-ANDYFetchedResultsTableDataSource-prefix.pch INSTALL_PATH $(BUILT_PRODUCTS_DIR) IPHONEOS_DEPLOYMENT_TARGET @@ -1400,53 +1461,55 @@ name Release - 5E5C372F9254BD9F23311F9D + 69E13A8D7641A290E83FD2E7 fileRef - 574C6268044B51799DA0639D + 8846ED0317E172344163160C isa PBXBuildFile - 6007764D9EFA2060967EB2C4 + 6A515E59815DCAC0B0D7F891 includeInIndex 1 isa PBXFileReference lastKnownFileType - sourcecode.c.h - name - Kipu.h + text.xcconfig path - Source/Kipu.h + Pods-NSDictionary-ANDYSafeValue.xcconfig sourceTree <group> - 606325126F81E6E89749F13B - - fileRef - 97AD9A79D8405B93F3B18888 - isa - PBXBuildFile - - 60BA3B17B7CAFB78F89D29D0 + 6AAE0AFE420FF654692BBF4A - fileRef - 1D8C513C40390EE39B218269 + children + + 6A515E59815DCAC0B0D7F891 + C40F824DD468E21AF91CE7A5 + DFAC2BEA7D1E687B289E0483 + 47EC10E4804767FB6CB1DF32 + isa - PBXBuildFile + PBXGroup + name + Support Files + path + ../Target Support Files/Pods-NSDictionary-ANDYSafeValue + sourceTree + <group> - 61036BCBA733B36CAEE43352 + 6ACEFA437F76C2AA612A5443 fileRef - 2786731F87F1240C1A153C19 + 8A63EE6E4F3F1D7746A5C1C2 isa PBXBuildFile - 628FE0364ABEA4416069343E + 6B7E3E197E93BF023D132BBC baseConfigurationReference - 6EEC76ADDFB340D050F30D25 + C40F824DD468E21AF91CE7A5 buildSettings ALWAYS_SEARCH_USER_PATHS @@ -1458,7 +1521,7 @@ GCC_PRECOMPILE_PREFIX_HEADER YES GCC_PREFIX_HEADER - Target Support Files/Pods-NSManagedObject-ANDYMapChanges/Pods-NSManagedObject-ANDYMapChanges-prefix.pch + Target Support Files/Pods-NSDictionary-ANDYSafeValue/Pods-NSDictionary-ANDYSafeValue-prefix.pch INSTALL_PATH $(BUILT_PRODUCTS_DIR) IPHONEOS_DEPLOYMENT_TARGET @@ -1493,143 +1556,75 @@ name Release - 64E2B028CE6ABBC017F80A65 + 6CF83315931122200E757432 - buildActionMask - 2147483647 - files - - D8EB51FB0099AEE0697960CC - + fileRef + 1C179C97F2A609D6A070EB21 isa - PBXHeadersBuildPhase - runOnlyForDeploymentPostprocessing - 0 + PBXBuildFile - 65298DCAEFCC3429191826DB + 6DF8BF9D08D9E2ED36205129 + + fileRef + EDB9FCC0D4687F3D9CE039E3 + isa + PBXBuildFile + + 6E85110A0A73F70678C13A1E includeInIndex 1 isa PBXFileReference lastKnownFileType - sourcecode.c.objc + text.xcconfig path - Pods-ANDYFetchedResultsTableDataSource-dummy.m + Pods-NSManagedObject-ANDYObjectIDs-Private.xcconfig + sourceTree + <group> + + 6F1BC53B0DEAF555D15390C2 + + children + + F6E66C8AB60ECB1AAB7DB9B6 + 35C7EF996E4EEF0E283A1272 + 58834AF34FE4B362BAF413B2 + 063664CB24DCF2A9463D3E52 + 60BD87035E40AC615E082FA0 + + isa + PBXGroup sourceTree <group> - 6561C6B240240D7120A74B30 + 6F7928118F8C4B6BDF8337AF buildActionMask 2147483647 files - 606325126F81E6E89749F13B - 5E5C372F9254BD9F23311F9D + 6CF83315931122200E757432 isa - PBXSourcesBuildPhase + PBXHeadersBuildPhase runOnlyForDeploymentPostprocessing 0 - 659AE1C208A8772E0B443F79 - - buildSettings - - ALWAYS_SEARCH_USER_PATHS - NO - 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 - CLANG_WARN_EMPTY_BODY - YES - CLANG_WARN_ENUM_CONVERSION - YES - CLANG_WARN_INT_CONVERSION - YES - CLANG_WARN_OBJC_ROOT_CLASS - YES - COPY_PHASE_STRIP - NO - ENABLE_NS_ASSERTIONS - NO - GCC_C_LANGUAGE_STANDARD - gnu99 - GCC_PREPROCESSOR_DEFINITIONS - - RELEASE=1 - - GCC_WARN_64_TO_32_BIT_CONVERSION - YES - GCC_WARN_ABOUT_RETURN_TYPE - YES - 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 - STRIP_INSTALLED_PRODUCT - NO - VALIDATE_PRODUCT - YES - - isa - XCBuildConfiguration - name - Release - - 659F01103280FB2A1CE7BF05 + 6FFF87F9D5D170238BF16EA4 - explicitFileType - archive.ar includeInIndex - 0 + 1 isa PBXFileReference + lastKnownFileType + sourcecode.c.h path - libPods-NSManagedObject-HYPPropertyMapper.a - sourceTree - BUILT_PRODUCTS_DIR - - 669B01D1375A2B77A3AFE232 - - children - - E0CAF802FEA7CDD1E286DBFA - F5CAFE15C3A3189F7ADAD4C5 - 66FF590424535259166ED863 - A995D8D7809EEFB01FC8158C - 1AED60199AFCEB15C3C6153F - 73D307F6BC1DF9A666AD9B4F - 981BB0846BF99007BBBE26C3 - 659F01103280FB2A1CE7BF05 - EF4ECD71388ABA64F1D617ED - - isa - PBXGroup - name - Products + Pods-NSManagedObject-HYPPropertyMapper-prefix.pch sourceTree <group> - 66FF590424535259166ED863 + 712D87C307AC1375A0472635 explicitFileType archive.ar @@ -1642,84 +1637,55 @@ sourceTree BUILT_PRODUCTS_DIR - 670C57FD39AF7B56B52DFE01 + 712EAB7CC30C7B2D2E07E5A0 - children + fileRef + F64C6DA18420219E5FB7D7AB + isa + PBXBuildFile + + 724D241457C42AB61E14CB7A + + buildActionMask + 2147483647 + files - 471935CEB15CA0F760E99913 - ABC7A91639091324FABAB319 - B4439BE9BBB5255F920934CB + 857748F7428E81B6B1BBC261 + E9A762425CDBB52DCB11B840 isa - PBXGroup - name - ANDYDataStack - path - ANDYDataStack - sourceTree - <group> + PBXFrameworksBuildPhase + runOnlyForDeploymentPostprocessing + 0 - 67CA1169B0A834CCB7CC9B9D + 7318C858801BF0BC1319E8D5 includeInIndex 1 isa PBXFileReference lastKnownFileType - text.xcconfig + text.plist.xml path - Pods-NSManagedObject-ANDYObjectIDs.xcconfig + Pods-acknowledgements.plist sourceTree <group> - 6A8A08AA99E26E15978264BE - - buildConfigurations - - F833999F3688FECE81D9BF04 - E674D74DBB68C1EE350F7CF5 - - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release - isa - XCConfigurationList - - 6B42314F4E8BAE2F560D9F9C + 7322DAAE6042D1BA1036AD83 - children - - 67CA1169B0A834CCB7CC9B9D - 8FD1BA2DE0CBAAF0366124A7 - F19375751057A468E9EF7DCC - 1DA71C5E99276DDA5D7B8BBA - + fileRef + EFBC814FD97803088ABED12F isa - PBXGroup - name - Support Files - path - ../Target Support Files/Pods-NSManagedObject-ANDYObjectIDs - sourceTree - <group> + PBXBuildFile - 6D4830368BF7E638304698D7 + 75663ABE562E8B3544F2A7B4 - children - - FFFBB9C88C58F6CA6325A003 - 390943503B787C1307EAB42A - 77F8E1ADBF36C46AF171400B - 669B01D1375A2B77A3AFE232 - 4777D4622E3E5AC49A13185C - + fileRef + EFBC814FD97803088ABED12F isa - PBXGroup - sourceTree - <group> + PBXBuildFile - 6DF1B4562E15263BDA9F522F + 7656D991F042A3CA6F0E75B7 includeInIndex 1 @@ -1728,22 +1694,11 @@ lastKnownFileType text.xcconfig path - Pods-NSDictionary-ANDYSafeValue-Private.xcconfig + Pods.debug.xcconfig sourceTree <group> - 6DF9496881BD6451DD999ACF - - isa - PBXTargetDependency - name - Pods-NSManagedObject-HYPPropertyMapper - target - 9BC24AC1AEE75F7DD2EEC72F - targetProxy - 168360BDE80E1F136FF5DF46 - - 6EEC76ADDFB340D050F30D25 + 78F4F1F815CA5EEF55668ADA includeInIndex 1 @@ -1752,11 +1707,11 @@ lastKnownFileType text.xcconfig path - Pods-NSManagedObject-ANDYMapChanges-Private.xcconfig + Pods-NSManagedObject-ANDYObjectIDs.xcconfig sourceTree <group> - 6F97E50A64ED08F8C048BE21 + 8317D771463BD5F223EAE29C includeInIndex 1 @@ -1765,53 +1720,29 @@ lastKnownFileType sourcecode.c.objc path - Pods-ANDYDataStack-dummy.m + Pods-ANDYFetchedResultsTableDataSource-dummy.m sourceTree <group> - 7209D07E8E1E52C7AE616E83 + 857748F7428E81B6B1BBC261 - buildActionMask - 2147483647 - files - - 5647960C6A8388F750E95837 - FDBCCC8A7A90697FED5895F7 - + fileRef + F64C6DA18420219E5FB7D7AB isa - PBXSourcesBuildPhase - runOnlyForDeploymentPostprocessing - 0 + PBXBuildFile - 723703A19B43E74D74C17E4C + 86E028B41527881F662D35E6 - includeInIndex - 1 isa - PBXFileReference - lastKnownFileType - sourcecode.c.h + PBXTargetDependency name - NSString+HYPNetworking.h - path - Source/NSString+HYPNetworking.h - sourceTree - <group> - - 73AD3AFD295F215F805ABF6C - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - Pods-NSDictionary-ANDYSafeValue-dummy.m - sourceTree - <group> + Pods-DATAStack + target + 09B1008E3A88C80B8947AFAC + targetProxy + AA24FB748DADAF58C84CD156 - 73D307F6BC1DF9A666AD9B4F + 87B376A1A64AFC68448EFF8D explicitFileType archive.ar @@ -1820,14 +1751,14 @@ isa PBXFileReference path - libPods-NSManagedObject-ANDYMapChanges.a + libPods-NSDictionary-ANDYSafeValue.a sourceTree BUILT_PRODUCTS_DIR - 748D7D68456D6372EC664958 + 87B791022A3B6ABA6CF7E350 baseConfigurationReference - F7DA5E6DD33CD63C8C55739A + D837CA1F2D50A9BE325176D0 buildSettings ALWAYS_SEARCH_USER_PATHS @@ -1872,129 +1803,317 @@ name Release - 77F8E1ADBF36C46AF171400B - - children - - 670C57FD39AF7B56B52DFE01 - C633CDF09248302A179C3FA3 - F8FE8D8B5520F515B1DD1FB6 - 9BAE6B27D35E45D76A4DF91C - 1C6263483FF32E754F950691 - F586601C66DE5E013F8AFA90 - 197F91AC0552D5C6FD50AA85 - 38482B8E30F68936CB658B47 - - isa - PBXGroup - name - Pods - sourceTree - <group> - - 78C8C00045C74EC27D97343E - - containerPortal - DA438A58D5D205C799D92B38 - isa - PBXContainerItemProxy - proxyType - 1 - remoteGlobalIDString - FAA1133EB8A8B86A5517DFAE - remoteInfo - Pods-NSDictionary-ANDYSafeValue - - 7B76EC74AA8D995EB078286D + 8846ED0317E172344163160C includeInIndex 1 isa PBXFileReference lastKnownFileType - text.xcconfig + sourcecode.c.h + name + NSManagedObject+ANDYObjectIDs.h path - Pods-ANDYFetchedResultsTableDataSource-Private.xcconfig + Source/NSManagedObject+ANDYObjectIDs.h sourceTree <group> - 7CA9B3A32E856A7A8E4F4571 + 89156ED2C3774B9D82878DB6 - includeInIndex - 1 + buildActionMask + 2147483647 + files + + FD617A87C404C569579F7ADD + B98D373A7A1920657EAAEF8A + isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - name - NSManagedObject+HYPPropertyMapper.h - path - Source/NSManagedObject+HYPPropertyMapper.h - sourceTree - <group> + PBXSourcesBuildPhase + runOnlyForDeploymentPostprocessing + 0 - 7CBC70681EBB70F3DFBC15D2 + 8A63EE6E4F3F1D7746A5C1C2 includeInIndex 1 isa PBXFileReference lastKnownFileType - text.plist.xml + sourcecode.c.h + name + NSManagedObject+ANDYMapChanges.h path - Pods-acknowledgements.plist + Source/NSManagedObject+ANDYMapChanges.h sourceTree <group> - 7E2FD60B77ABF9E24801B6BB + 8A7EA005C64D730014194923 - fileRef - 723703A19B43E74D74C17E4C isa - PBXBuildFile + PBXTargetDependency + name + Pods-Kipu + target + FD6F3FAA264CCB6B99A263F7 + targetProxy + A6842EFCED7A1D99A7532802 - 7EF3C17F46B39961EB16BDEE + 8B114A690628881B70B8BC57 - fileRef - 1DC621BA686696ED8BC193C8 - isa - PBXBuildFile + buildActionMask + 2147483647 + files + + BB7D72E7619FDF93CD255CC4 + + isa + PBXFrameworksBuildPhase + runOnlyForDeploymentPostprocessing + 0 + + 8BF5337B5422CBB8B127DA06 + + buildActionMask + 2147483647 + files + + A77C5CC33C0A870FD3F7C804 + B50973182B780E19079BEA8F + + isa + PBXSourcesBuildPhase + runOnlyForDeploymentPostprocessing + 0 + + 8D508F5CB93B1051F065DCB3 + + children + + 4432DF60EAAF1EE903CC7793 + ECB57FB8FD0FB29862714438 + B3E63B0862B600802D711827 + + isa + PBXGroup + name + DATAStack + path + DATAStack + sourceTree + <group> + + 8D79E56B046AABFF6D8EDAA6 + + attributes + + LastUpgradeCheck + 0510 + + buildConfigurationList + C21C6619A6075B4C9F2BA266 + compatibilityVersion + Xcode 3.2 + developmentRegion + English + hasScannedForEncodings + 0 + isa + PBXProject + knownRegions + + en + + mainGroup + 6F1BC53B0DEAF555D15390C2 + productRefGroup + 063664CB24DCF2A9463D3E52 + projectDirPath + + projectReferences + + projectRoot + + targets + + 00E156863E0180A12857145B + E353F961401ACB32C8B8EDC4 + 09B1008E3A88C80B8947AFAC + FD6F3FAA264CCB6B99A263F7 + EBD342E6F9ADC4942D23BBB4 + 0507BBFFC3A4625072DB836B + 3153E6544D2BA5DA92A2817E + 60324F134C7FAE9F8F81667D + FFFB891266CB349666491206 + + + 9206402C09CC593CEB43D12C + + children + + 4925E4857F2A11D6788277B5 + E69FC130A31F2E142CA5BF32 + 505E571838B8868A1ED7A0ED + + isa + PBXGroup + name + NSManagedObject-HYPPropertyMapper + path + NSManagedObject-HYPPropertyMapper + sourceTree + <group> + + 92617A0B0F04BC3EF00B0BD8 + + children + + CCD5ECBDAABD03FF182D4665 + EDB9FCC0D4687F3D9CE039E3 + E68F6A75BF2EC18E465479BF + + isa + PBXGroup + name + Kipu + path + Kipu + sourceTree + <group> + + 9268BD1BD8AD4C32CA6DA70B + + explicitFileType + archive.ar + includeInIndex + 0 + isa + PBXFileReference + path + libPods.a + sourceTree + BUILT_PRODUCTS_DIR - 804E478B9309A5BBB030CB9E + 92CF453052FFFF01B5B2926D includeInIndex 1 isa PBXFileReference lastKnownFileType - sourcecode.c.h + sourcecode.c.objc path - Pods-environment.h + Pods-NSString-HYPNetworking-dummy.m sourceTree <group> - 813D3EAFE2FBB0DA31CCE102 + 935A6B04F2DD08D3FDE77A4E - children + includeInIndex + 1 + isa + PBXFileReference + lastKnownFileType + text.xcconfig + path + Pods-NSManagedObject-HYPPropertyMapper-Private.xcconfig + sourceTree + <group> + + 943EDD87C6283D8496393EDF + + buildConfigurations - EC2D009924E761B6FAD82DA6 - 6EEC76ADDFB340D050F30D25 - C2F483F6C2314961797AFCC0 - 306B533327AA8660548A71DB + 431770FC6578619331899685 + 87B791022A3B6ABA6CF7E350 + defaultConfigurationIsVisible + 0 + defaultConfigurationName + Release isa - PBXGroup - name - Support Files + XCConfigurationList + + 94B07B3FAAE09F0E0D7D6861 + + includeInIndex + 1 + isa + PBXFileReference + lastKnownFileType + text.xcconfig path - ../Target Support Files/Pods-NSManagedObject-ANDYMapChanges + Pods-DATAStack.xcconfig + sourceTree + <group> + + 96EB0B0CED98C32E498CADFC + + includeInIndex + 1 + isa + PBXFileReference + lastKnownFileType + text + path + Pods-acknowledgements.markdown sourceTree <group> - 8458A0D677DDFEEB9617C9F4 + 987DA180BAFA368EE4F05BB0 + + isa + PBXTargetDependency + name + Pods-NSManagedObject-ANDYObjectIDs + target + 3153E6544D2BA5DA92A2817E + targetProxy + 2F8CADDCFFEF159A637E0568 + + 9B902ACAAA0BE0A452B32772 + + fileRef + EFBC814FD97803088ABED12F + isa + PBXBuildFile + + 9EC6C7EEC571CEA1EE476F10 + + containerPortal + 8D79E56B046AABFF6D8EDAA6 + isa + PBXContainerItemProxy + proxyType + 1 + remoteGlobalIDString + E353F961401ACB32C8B8EDC4 + remoteInfo + Pods-ANDYFetchedResultsTableDataSource + + 9FDDC25345DEEF375ADA6E2F + + explicitFileType + archive.ar + includeInIndex + 0 + isa + PBXFileReference + path + libPods-DATAStack.a + sourceTree + BUILT_PRODUCTS_DIR + + A0B1F489770BC77D7AC63FAA + + fileRef + 6751CD42CD2D854890DF1E9A + isa + PBXBuildFile + + A2CB9667967FE47160005F9F baseConfigurationReference - 4CE51D09A781A346BC3222E0 + 935A6B04F2DD08D3FDE77A4E buildSettings ALWAYS_SEARCH_USER_PATHS @@ -2041,267 +2160,314 @@ name Release - 848BF15106AE4DEB2FAF3BEB + A34BEDE02A23C7A84ECFA83F - containerPortal - DA438A58D5D205C799D92B38 + fileRef + FB7944C7F0BB249EE44ED222 isa - PBXContainerItemProxy - proxyType - 1 - remoteGlobalIDString - EE5EC13232EFB00823B5B8B1 - remoteInfo - Pods-NSString-HYPNetworking + PBXBuildFile - 849992A4B12F99639DD01D54 + A6842EFCED7A1D99A7532802 containerPortal - DA438A58D5D205C799D92B38 + 8D79E56B046AABFF6D8EDAA6 isa PBXContainerItemProxy proxyType 1 remoteGlobalIDString - EE5EC13232EFB00823B5B8B1 + FD6F3FAA264CCB6B99A263F7 remoteInfo - Pods-NSString-HYPNetworking + Pods-Kipu - 85116F143F495ABE4FF927A8 + A73D1FA97F97905CC31233B0 - containerPortal - DA438A58D5D205C799D92B38 + buildSettings + + ALWAYS_SEARCH_USER_PATHS + NO + 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 + CLANG_WARN_EMPTY_BODY + YES + CLANG_WARN_ENUM_CONVERSION + YES + CLANG_WARN_INT_CONVERSION + YES + CLANG_WARN_OBJC_ROOT_CLASS + YES + COPY_PHASE_STRIP + NO + ENABLE_NS_ASSERTIONS + NO + GCC_C_LANGUAGE_STANDARD + gnu99 + GCC_PREPROCESSOR_DEFINITIONS + + RELEASE=1 + + GCC_WARN_64_TO_32_BIT_CONVERSION + YES + GCC_WARN_ABOUT_RETURN_TYPE + YES + 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 + STRIP_INSTALLED_PRODUCT + NO + VALIDATE_PRODUCT + YES + isa - PBXContainerItemProxy - proxyType - 1 - remoteGlobalIDString - 9BC24AC1AEE75F7DD2EEC72F - remoteInfo - Pods-NSManagedObject-HYPPropertyMapper + XCBuildConfiguration + name + Release - 853F875B75DDAA3700F96F47 + A77C339A3D134D0A12E4777D + baseConfigurationReference + 0C6B8282A6E5778B585D89EF + buildSettings + + ALWAYS_SEARCH_USER_PATHS + NO + COPY_PHASE_STRIP + NO + DSTROOT + /tmp/xcodeproj.dst + GCC_DYNAMIC_NO_PIC + NO + GCC_OPTIMIZATION_LEVEL + 0 + GCC_PRECOMPILE_PREFIX_HEADER + YES + GCC_PREFIX_HEADER + Target Support Files/Pods-Kipu/Pods-Kipu-prefix.pch + GCC_PREPROCESSOR_DEFINITIONS + + DEBUG=1 + $(inherited) + + GCC_SYMBOLS_PRIVATE_EXTERN + NO + INSTALL_PATH + $(BUILT_PRODUCTS_DIR) + IPHONEOS_DEPLOYMENT_TARGET + 7.0 + OTHER_LDFLAGS + + OTHER_LIBTOOLFLAGS + + PRODUCT_NAME + $(TARGET_NAME) + PUBLIC_HEADERS_FOLDER_PATH + $(TARGET_NAME) + SDKROOT + iphoneos + SKIP_INSTALL + YES + isa - PBXTargetDependency + XCBuildConfiguration name - Pods-NSManagedObject-ANDYMapChanges - target - 34695AD7AC6ED5FDE425923F - targetProxy - 4C008AE163A3C4BA3994D384 + Debug - 85FBEF2AD9A1ADDC72A55F22 + A77C5CC33C0A870FD3F7C804 fileRef - 2786731F87F1240C1A153C19 + C48F124ACD2BED50992C2A8B isa PBXBuildFile - 887FF3DE9B693555FDBFD5F7 - - buildConfigurations - - 9E36D21464142212DFC7D653 - 8458A0D677DDFEEB9617C9F4 - - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release - isa - XCConfigurationList - - 890AB5570A06BFEFD57D37B9 + A876D1C8FB25DBAE0D0857D3 - buildActionMask - 2147483647 - files - - 8A3200B05577027A73DA9626 - 398795257E971DD7E82B8E2E - + includeInIndex + 1 isa - PBXFrameworksBuildPhase - runOnlyForDeploymentPostprocessing - 0 + PBXFileReference + lastKnownFileType + sourcecode.c.h + path + Pods-DATAStack-prefix.pch + sourceTree + <group> - 89D78DCB2EE8F38FF875B65C + AA12D5E4A36FF5A8B3A10FC2 - buildActionMask - 2147483647 - files + buildConfigurations - 1141EF6DBC9DB15E75FE1B3A - 49B560A5CEE94D71554838FD + 1265ED95C767D670C0ECA168 + 25BF6CC9D1AB0B0D9956248C - isa - PBXSourcesBuildPhase - runOnlyForDeploymentPostprocessing + defaultConfigurationIsVisible 0 + defaultConfigurationName + Release + isa + XCConfigurationList - 8A3200B05577027A73DA9626 + AA24FB748DADAF58C84CD156 - fileRef - 1DC621BA686696ED8BC193C8 + containerPortal + 8D79E56B046AABFF6D8EDAA6 isa - PBXBuildFile + PBXContainerItemProxy + proxyType + 1 + remoteGlobalIDString + 09B1008E3A88C80B8947AFAC + remoteInfo + Pods-DATAStack - 8B8F7AA6DD6CB37E2B909624 + AE36D3B6F9FAED58CAEA7E5F children - A51F03A0D3146345352D8A88 - 7B76EC74AA8D995EB078286D - 65298DCAEFCC3429191826DB - BC10BA6BF8B373F2E0BA7FBF + 511B7A55562ACECBD6E2E235 + C48F124ACD2BED50992C2A8B + DA11633AA3963CD977446F30 isa PBXGroup name - Support Files + NSString-HYPNetworking path - ../Target Support Files/Pods-ANDYFetchedResultsTableDataSource + NSString-HYPNetworking sourceTree <group> - 8D2D86B2ECB46A7A7AEAD18A + B2EB717B74A5119DA0B987D0 + fileRef + 0F90A830B01A79684F0F0259 isa - PBXTargetDependency - name - Pods-NSString-HYPNetworking - target - EE5EC13232EFB00823B5B8B1 - targetProxy - 848BF15106AE4DEB2FAF3BEB + PBXBuildFile - 8F70923A0E846043CB6F26A3 + B2F1176B881A1BB57EE0F33F fileRef - 2786731F87F1240C1A153C19 + C3998B1095C590E2640D0B54 isa PBXBuildFile - 8FD1BA2DE0CBAAF0366124A7 + B3E63B0862B600802D711827 - includeInIndex - 1 + children + + 94B07B3FAAE09F0E0D7D6861 + 5028C2F052729C929EE43EC6 + C3998B1095C590E2640D0B54 + A876D1C8FB25DBAE0D0857D3 + isa - PBXFileReference - lastKnownFileType - text.xcconfig + PBXGroup + name + Support Files path - Pods-NSManagedObject-ANDYObjectIDs-Private.xcconfig + ../Target Support Files/Pods-DATAStack sourceTree <group> - 904FB5AD28120D0EACBC90C4 + B4EBFD6938E61358F581559F - buildConfigurationList - 6A8A08AA99E26E15978264BE - buildPhases - - 6561C6B240240D7120A74B30 - A8319C51787B9DE818143F21 - 44DFCC74D758418CCD808641 - - buildRules - - dependencies + children - 3A2081AEFF4F1BF44ECB1F67 - A26D71B62188D66739AB1F90 - 0C19674BC93C34320106B604 - E5409149226E41C969B6E218 + F64C6DA18420219E5FB7D7AB + EFBC814FD97803088ABED12F + CDDC3C677722991375A17718 isa - PBXNativeTarget + PBXGroup name - Pods-Kipu - productName - Pods-Kipu - productReference - A995D8D7809EEFB01FC8158C - productType - com.apple.product-type.library.static - - 9135B94B7F72231BDBBBCDBB - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - Pods-NSManagedObject-HYPPropertyMapper-prefix.pch + iOS sourceTree <group> - 93507F6752FD725090A1EA26 + B50973182B780E19079BEA8F fileRef - 25B618D98E608D5EED85950E + 92CF453052FFFF01B5B2926D isa PBXBuildFile - 9686B096BD82B7F055157EFA + B85A244DE225AACD3D1E46D3 + + buildActionMask + 2147483647 + files + + 21368AA97AE15917221E25CB + + isa + PBXHeadersBuildPhase + runOnlyForDeploymentPostprocessing + 0 + + B98D373A7A1920657EAAEF8A fileRef - FD11EC6DF953E8B635B96B08 + DFAC2BEA7D1E687B289E0483 isa PBXBuildFile - 97AD9A79D8405B93F3B18888 + BB7D72E7619FDF93CD255CC4 - includeInIndex - 1 + fileRef + EFBC814FD97803088ABED12F isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - name - Kipu.m - path - Source/Kipu.m - sourceTree - <group> + PBXBuildFile - 981BB0846BF99007BBBE26C3 + BBBC43303A2C3709276D9DB3 - explicitFileType - archive.ar - includeInIndex - 0 + containerPortal + 8D79E56B046AABFF6D8EDAA6 isa - PBXFileReference - path - libPods-NSManagedObject-ANDYObjectIDs.a - sourceTree - BUILT_PRODUCTS_DIR + PBXContainerItemProxy + proxyType + 1 + remoteGlobalIDString + EBD342E6F9ADC4942D23BBB4 + remoteInfo + Pods-NSDictionary-ANDYSafeValue - 9905EFE2DDAEC08240449279 + BCA9A587EDD1CEA9BE163997 buildActionMask 2147483647 files - 1810EA601CA49C1943998C1A - CAF61FB474DEDFEB55E897C7 - 60BA3B17B7CAFB78F89D29D0 + DD5A9E8A2BF2A1001D783CDB isa - PBXFrameworksBuildPhase + PBXHeadersBuildPhase runOnlyForDeploymentPostprocessing 0 - 9BAD4FBCCBD00B7978832D4C + C21C6619A6075B4C9F2BA266 buildConfigurations - BD08C0770B9B8C0987BB4F50 - 25EF9592EDF0321857264FC1 + CD1C87EAC2FCB489FE81491F + A73D1FA97F97905CC31233B0 defaultConfigurationIsVisible 0 @@ -2310,51 +2476,89 @@ isa XCConfigurationList - 9BAE6B27D35E45D76A4DF91C + C3998B1095C590E2640D0B54 - children - - 40DAEFC86DC7F068B46D2ABE - E2B156A0BEE4B144AF0B8425 - 22BC30614F6E4341E08DB4F2 - + includeInIndex + 1 isa - PBXGroup - name - NSDictionary-ANDYSafeValue + PBXFileReference + lastKnownFileType + sourcecode.c.objc path - NSDictionary-ANDYSafeValue + Pods-DATAStack-dummy.m sourceTree <group> - 9BC24AC1AEE75F7DD2EEC72F + C4037C488B9F7652D3ECB6AC - buildConfigurationList - 887FF3DE9B693555FDBFD5F7 - buildPhases - - 89D78DCB2EE8F38FF875B65C - B858869AB5751CEC8DED0AC1 - F0821CAE1FA1B245ECAE5B2A - - buildRules - - dependencies - - 8D2D86B2ECB46A7A7AEAD18A - + fileRef + F64C6DA18420219E5FB7D7AB isa - PBXNativeTarget + PBXBuildFile + + C40F824DD468E21AF91CE7A5 + + includeInIndex + 1 + isa + PBXFileReference + lastKnownFileType + text.xcconfig + path + Pods-NSDictionary-ANDYSafeValue-Private.xcconfig + sourceTree + <group> + + C4336C7F098B4BF8F98B96E3 + + baseConfigurationReference + 935A6B04F2DD08D3FDE77A4E + buildSettings + + ALWAYS_SEARCH_USER_PATHS + NO + COPY_PHASE_STRIP + NO + DSTROOT + /tmp/xcodeproj.dst + GCC_DYNAMIC_NO_PIC + NO + GCC_OPTIMIZATION_LEVEL + 0 + GCC_PRECOMPILE_PREFIX_HEADER + YES + GCC_PREFIX_HEADER + Target Support Files/Pods-NSManagedObject-HYPPropertyMapper/Pods-NSManagedObject-HYPPropertyMapper-prefix.pch + GCC_PREPROCESSOR_DEFINITIONS + + DEBUG=1 + $(inherited) + + GCC_SYMBOLS_PRIVATE_EXTERN + NO + INSTALL_PATH + $(BUILT_PRODUCTS_DIR) + IPHONEOS_DEPLOYMENT_TARGET + 7.0 + OTHER_LDFLAGS + + OTHER_LIBTOOLFLAGS + + PRODUCT_NAME + $(TARGET_NAME) + PUBLIC_HEADERS_FOLDER_PATH + $(TARGET_NAME) + SDKROOT + iphoneos + SKIP_INSTALL + YES + + isa + XCBuildConfiguration name - Pods-NSManagedObject-HYPPropertyMapper - productName - Pods-NSManagedObject-HYPPropertyMapper - productReference - 659F01103280FB2A1CE7BF05 - productType - com.apple.product-type.library.static + Debug - 9E07DC2CEAE24A9CBDA886B1 + C48F124ACD2BED50992C2A8B includeInIndex 1 @@ -2363,16 +2567,80 @@ lastKnownFileType sourcecode.c.objc name - NSManagedObject+ANDYMapChanges.m + NSString+HYPNetworking.m path - Source/NSManagedObject+ANDYMapChanges.m + Source/NSString+HYPNetworking.m + sourceTree + <group> + + CAA66222B30C2A2AAB4FB529 + + includeInIndex + 1 + isa + PBXFileReference + lastKnownFileType + sourcecode.c.h + name + NSDictionary+ANDYSafeValue.h + path + Source/NSDictionary+ANDYSafeValue.h sourceTree <group> - 9E36D21464142212DFC7D653 + CAE5403626BCDA85A4A72E9D + + baseConfigurationReference + 37A2F6E0AA89AF282C757AB3 + buildSettings + + ALWAYS_SEARCH_USER_PATHS + NO + COPY_PHASE_STRIP + NO + DSTROOT + /tmp/xcodeproj.dst + GCC_DYNAMIC_NO_PIC + NO + GCC_OPTIMIZATION_LEVEL + 0 + GCC_PRECOMPILE_PREFIX_HEADER + YES + GCC_PREFIX_HEADER + Target Support Files/Pods-ANDYFetchedResultsTableDataSource/Pods-ANDYFetchedResultsTableDataSource-prefix.pch + GCC_PREPROCESSOR_DEFINITIONS + + DEBUG=1 + $(inherited) + + GCC_SYMBOLS_PRIVATE_EXTERN + NO + INSTALL_PATH + $(BUILT_PRODUCTS_DIR) + IPHONEOS_DEPLOYMENT_TARGET + 7.0 + OTHER_LDFLAGS + + OTHER_LIBTOOLFLAGS + + PRODUCT_NAME + $(TARGET_NAME) + PUBLIC_HEADERS_FOLDER_PATH + $(TARGET_NAME) + SDKROOT + iphoneos + SKIP_INSTALL + YES + + isa + XCBuildConfiguration + name + Debug + + CBC06B7C7E3B20D57C43CCA8 baseConfigurationReference - 4CE51D09A781A346BC3222E0 + 0948C72ECADB116EB5F97061 buildSettings ALWAYS_SEARCH_USER_PATHS @@ -2388,7 +2656,7 @@ GCC_PRECOMPILE_PREFIX_HEADER YES GCC_PREFIX_HEADER - Target Support Files/Pods-NSManagedObject-HYPPropertyMapper/Pods-NSManagedObject-HYPPropertyMapper-prefix.pch + Target Support Files/Pods-NSString-HYPNetworking/Pods-NSString-HYPNetworking-prefix.pch GCC_PREPROCESSOR_DEFINITIONS DEBUG=1 @@ -2418,155 +2686,131 @@ name Debug - 9E40661F69A84BF7542CD58E - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - text.script.sh - path - Pods-resources.sh - sourceTree - <group> - - 9EC58E8E78CBC66B7F49A323 + CCD5ECBDAABD03FF182D4665 includeInIndex 1 isa PBXFileReference lastKnownFileType - text.xcconfig + sourcecode.c.h + name + Kipu.h path - Pods-ANDYDataStack.xcconfig + Source/Kipu.h sourceTree <group> - A26D71B62188D66739AB1F90 + CD1C87EAC2FCB489FE81491F + buildSettings + + ALWAYS_SEARCH_USER_PATHS + NO + 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 + CLANG_WARN_EMPTY_BODY + YES + CLANG_WARN_ENUM_CONVERSION + YES + CLANG_WARN_INT_CONVERSION + YES + CLANG_WARN_OBJC_ROOT_CLASS + YES + COPY_PHASE_STRIP + YES + 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 + 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 + STRIP_INSTALLED_PRODUCT + NO + isa - PBXTargetDependency + XCBuildConfiguration name - Pods-NSDictionary-ANDYSafeValue - target - FAA1133EB8A8B86A5517DFAE - targetProxy - 78C8C00045C74EC27D97343E - - A4D49CE0C5C16AFC970CF60B - - buildActionMask - 2147483647 - files - - 8F70923A0E846043CB6F26A3 - - isa - PBXFrameworksBuildPhase - runOnlyForDeploymentPostprocessing - 0 + Debug - A51F03A0D3146345352D8A88 + CDDC3C677722991375A17718 - includeInIndex - 1 isa PBXFileReference lastKnownFileType - text.xcconfig - path - Pods-ANDYFetchedResultsTableDataSource.xcconfig - sourceTree - <group> - - A75CEE5C3254C0A1EF3D3AD5 - - buildConfigurations - - AA96BD1D2EEA1BE5C996D51B - 574823C8978825989027D859 - - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release - isa - XCConfigurationList - - A8319C51787B9DE818143F21 - - buildActionMask - 2147483647 - files - - 7EF3C17F46B39961EB16BDEE - BBD902C4686D39561E1A3BB1 - - isa - PBXFrameworksBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - A892E27585BB997D3498FCF5 - - buildConfigurations - - D04BD35A6420FEF736D4BA10 - 346B187ABA5DC54D61CA812F - - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release - isa - XCConfigurationList - - A995D8D7809EEFB01FC8158C - - explicitFileType - archive.ar - includeInIndex - 0 - isa - PBXFileReference + wrapper.framework + name + UIKit.framework path - libPods-Kipu.a + Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/System/Library/Frameworks/UIKit.framework sourceTree - BUILT_PRODUCTS_DIR + DEVELOPER_DIR - AA96BD1D2EEA1BE5C996D51B + CF08C6E1F76668CEAEEFC3F6 baseConfigurationReference - 7B76EC74AA8D995EB078286D + 5028C2F052729C929EE43EC6 buildSettings ALWAYS_SEARCH_USER_PATHS NO COPY_PHASE_STRIP - NO + YES DSTROOT /tmp/xcodeproj.dst - GCC_DYNAMIC_NO_PIC - NO - GCC_OPTIMIZATION_LEVEL - 0 GCC_PRECOMPILE_PREFIX_HEADER YES GCC_PREFIX_HEADER - Target Support Files/Pods-ANDYFetchedResultsTableDataSource/Pods-ANDYFetchedResultsTableDataSource-prefix.pch - GCC_PREPROCESSOR_DEFINITIONS - - DEBUG=1 - $(inherited) - - GCC_SYMBOLS_PRIVATE_EXTERN - NO + Target Support Files/Pods-DATAStack/Pods-DATAStack-prefix.pch INSTALL_PATH $(BUILT_PRODUCTS_DIR) IPHONEOS_DEPLOYMENT_TARGET 7.0 + OTHER_CFLAGS + + -DNS_BLOCK_ASSERTIONS=1 + $(inherited) + + OTHER_CPLUSPLUSFLAGS + + -DNS_BLOCK_ASSERTIONS=1 + $(inherited) + OTHER_LDFLAGS OTHER_LIBTOOLFLAGS @@ -2579,111 +2823,62 @@ iphoneos SKIP_INSTALL YES + VALIDATE_PRODUCT + YES isa XCBuildConfiguration name - Debug - - ABC7A91639091324FABAB319 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - name - ANDYDataStack.m - path - ANDYDataStack/ANDYDataStack.m - sourceTree - <group> - - AFA887D829850CEFFBBD266D - - children - - 0236D99A7061EF1A4BBA7EA5 - 7CBC70681EBB70F3DFBC15D2 - 4D15E50491C570B01E230EB7 - 804E478B9309A5BBB030CB9E - 9E40661F69A84BF7542CD58E - D3BF78401078B931DFEED093 - F7DA5E6DD33CD63C8C55739A - - isa - PBXGroup - name - Pods - path - Target Support Files/Pods - sourceTree - <group> + Release - B0B5DA0B8514AA818C6D68A9 + D02ED7479CC7644A18A8700A children - B95F1273A330451C100B5FFE - 245DAF6B020542F075CA6E77 - 574C6268044B51799DA0639D - 2FD6824FBFAD9D82458DC6D1 + 8846ED0317E172344163160C + 6751CD42CD2D854890DF1E9A + 626E2BA28B54E64908552049 isa PBXGroup name - Support Files + NSManagedObject-ANDYObjectIDs path - ../Target Support Files/Pods-Kipu + NSManagedObject-ANDYObjectIDs sourceTree <group> - B4439BE9BBB5255F920934CB + D1D267316B602649C1ACDBA1 children - 9EC58E8E78CBC66B7F49A323 - C20C9CFC5B13EB3C9DC41695 - 6F97E50A64ED08F8C048BE21 - C63B2A422FC15A85B7E9D2EB + CAA66222B30C2A2AAB4FB529 + 256E14414F9B56096317ADC9 + 6AAE0AFE420FF654692BBF4A isa PBXGroup name - Support Files + NSDictionary-ANDYSafeValue path - ../Target Support Files/Pods-ANDYDataStack + NSDictionary-ANDYSafeValue sourceTree <group> - B5E6886D5D73C0C5C8F3FE46 - - buildActionMask - 2147483647 - files - - 1613FEDBA61DD7E56899F5FF - - isa - PBXFrameworksBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - B858869AB5751CEC8DED0AC1 + D3D82CC440BCCA218E55B571 buildActionMask 2147483647 files - 85FBEF2AD9A1ADDC72A55F22 + 6ACEFA437F76C2AA612A5443 isa - PBXFrameworksBuildPhase + PBXHeadersBuildPhase runOnlyForDeploymentPostprocessing 0 - B95F1273A330451C100B5FFE + D4ADA36ADE72E9C5675CFC90 includeInIndex 1 @@ -2692,91 +2887,67 @@ lastKnownFileType text.xcconfig path - Pods-Kipu.xcconfig + Pods-NSManagedObject-ANDYMapChanges.xcconfig sourceTree <group> - BBB32CFE06A94658F1E01585 + D63A34F97BB178F1E15AE867 - children + buildActionMask + 2147483647 + files - 1DC621BA686696ED8BC193C8 - 2786731F87F1240C1A153C19 - 1D8C513C40390EE39B218269 + 712EAB7CC30C7B2D2E07E5A0 + 75663ABE562E8B3544F2A7B4 isa - PBXGroup - name - iOS - sourceTree - <group> - - BBB71483C83B3419A47F3CC4 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - name - ANDYFetchedResultsTableDataSource.m - path - ANDYFetchedResultsTableDataSource/ANDYFetchedResultsTableDataSource.m - sourceTree - <group> - - BBD902C4686D39561E1A3BB1 - - fileRef - 2786731F87F1240C1A153C19 - isa - PBXBuildFile + PBXFrameworksBuildPhase + runOnlyForDeploymentPostprocessing + 0 - BC10BA6BF8B373F2E0BA7FBF + D837CA1F2D50A9BE325176D0 includeInIndex 1 isa PBXFileReference lastKnownFileType - sourcecode.c.h + text.xcconfig path - Pods-ANDYFetchedResultsTableDataSource-prefix.pch + Pods.release.xcconfig sourceTree <group> - BD08C0770B9B8C0987BB4F50 + D9519A0AA785391B7662658A baseConfigurationReference - 31FA66883B802EC3A5790ED6 + 0948C72ECADB116EB5F97061 buildSettings ALWAYS_SEARCH_USER_PATHS NO COPY_PHASE_STRIP - NO + YES DSTROOT /tmp/xcodeproj.dst - GCC_DYNAMIC_NO_PIC - NO - GCC_OPTIMIZATION_LEVEL - 0 GCC_PRECOMPILE_PREFIX_HEADER YES GCC_PREFIX_HEADER Target Support Files/Pods-NSString-HYPNetworking/Pods-NSString-HYPNetworking-prefix.pch - GCC_PREPROCESSOR_DEFINITIONS - - DEBUG=1 - $(inherited) - - GCC_SYMBOLS_PRIVATE_EXTERN - NO INSTALL_PATH $(BUILT_PRODUCTS_DIR) IPHONEOS_DEPLOYMENT_TARGET 7.0 + OTHER_CFLAGS + + -DNS_BLOCK_ASSERTIONS=1 + $(inherited) + + OTHER_CPLUSPLUSFLAGS + + -DNS_BLOCK_ASSERTIONS=1 + $(inherited) + OTHER_LDFLAGS OTHER_LIBTOOLFLAGS @@ -2789,48 +2960,36 @@ iphoneos SKIP_INSTALL YES + VALIDATE_PRODUCT + YES isa XCBuildConfiguration name - Debug - - BD26D886616D891094106B7F - - fileRef - 65298DCAEFCC3429191826DB - isa - PBXBuildFile - - BDCF86D337D2686A20D36B1B - - fileRef - 1DC621BA686696ED8BC193C8 - isa - PBXBuildFile - - BE3CDC49CFDB6D175936992F - - fileRef - 6007764D9EFA2060967EB2C4 - isa - PBXBuildFile + Release - BF34A2D05D1E6300AF9F3EB4 + D9D4D2BCF59F72F3266746C5 - fileRef - C2F483F6C2314961797AFCC0 + buildConfigurations + + CBC06B7C7E3B20D57C43CCA8 + D9519A0AA785391B7662658A + + defaultConfigurationIsVisible + 0 + defaultConfigurationName + Release isa - PBXBuildFile + XCConfigurationList - BF852829E93C29A3FA7EA62D + DA11633AA3963CD977446F30 children - E7A1D585733F30E1E8869F7A - 31FA66883B802EC3A5790ED6 - CAF2B26DAA798E79A45735C0 - D358D72E946C2AAE22327983 + 46FEF83E7393C51A45CC880B + 0948C72ECADB116EB5F97061 + 92CF453052FFFF01B5B2926D + F64D64D214372C1B5D53EF83 isa PBXGroup @@ -2841,40 +3000,58 @@ sourceTree <group> - C0F3FEA1ED28A870B0600DCB - - buildActionMask - 2147483647 - files - - FDB1DE4C5F5C451263B47D84 - - isa - PBXHeadersBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - C20C9CFC5B13EB3C9DC41695 + DB912EA1C259165EE31C09DA + explicitFileType + archive.ar includeInIndex - 1 + 0 isa PBXFileReference - lastKnownFileType - text.xcconfig path - Pods-ANDYDataStack-Private.xcconfig + libPods-NSManagedObject-ANDYObjectIDs.a sourceTree - <group> + BUILT_PRODUCTS_DIR + + DD5A9E8A2BF2A1001D783CDB + + fileRef + CAA66222B30C2A2AAB4FB529 + isa + PBXBuildFile - C288EF7799E129A886ED13DE + DDE77A3ED2121C256935B6FC fileRef - 6F97E50A64ED08F8C048BE21 + 8317D771463BD5F223EAE29C isa PBXBuildFile - C2F483F6C2314961797AFCC0 + DE54F433B61F5283D0141654 + + isa + PBXTargetDependency + name + Pods-NSManagedObject-HYPPropertyMapper + target + 60324F134C7FAE9F8F81667D + targetProxy + E9FE28054F1AE31C3ADD6CE0 + + DE8EC870A178E8B41D91F2C3 + + containerPortal + 8D79E56B046AABFF6D8EDAA6 + isa + PBXContainerItemProxy + proxyType + 1 + remoteGlobalIDString + 09B1008E3A88C80B8947AFAC + remoteInfo + Pods-DATAStack + + DFAC2BEA7D1E687B289E0483 includeInIndex 1 @@ -2883,28 +3060,18 @@ lastKnownFileType sourcecode.c.objc path - Pods-NSManagedObject-ANDYMapChanges-dummy.m + Pods-NSDictionary-ANDYSafeValue-dummy.m sourceTree <group> - C633CDF09248302A179C3FA3 + E1506B821B38937C1C687E7F - children - - 41F6B62ACD2342BB22D08D95 - BBB71483C83B3419A47F3CC4 - 8B8F7AA6DD6CB37E2B909624 - + fileRef + EFBC814FD97803088ABED12F isa - PBXGroup - name - ANDYFetchedResultsTableDataSource - path - ANDYFetchedResultsTableDataSource - sourceTree - <group> + PBXBuildFile - C63B2A422FC15A85B7E9D2EB + E286CBE043167B3730C87775 includeInIndex 1 @@ -2913,70 +3080,70 @@ lastKnownFileType sourcecode.c.h path - Pods-ANDYDataStack-prefix.pch + Pods-NSManagedObject-ANDYObjectIDs-prefix.pch sourceTree <group> - CA35E54E8495A64D6C4FB709 + E2A39BF61FFDFED693C1B42C + + fileRef + EFBC814FD97803088ABED12F + isa + PBXBuildFile + + E3090F6AFCF7ECF1AFD605B0 isa PBXTargetDependency name - Pods-NSManagedObject-ANDYObjectIDs + Pods-NSString-HYPNetworking target - D07E79983DC7726433D146C5 + FFFB891266CB349666491206 targetProxy - 1999280087BDCD150F5D2280 + 5218F63CCC0CC28B7C0A3A79 - CAF2B26DAA798E79A45735C0 + E342ED631CDF2156B221E63C + explicitFileType + archive.ar includeInIndex - 1 + 0 isa PBXFileReference - lastKnownFileType - sourcecode.c.objc path - Pods-NSString-HYPNetworking-dummy.m + libPods-Kipu.a sourceTree - <group> - - CAF61FB474DEDFEB55E897C7 - - fileRef - 2786731F87F1240C1A153C19 - isa - PBXBuildFile + BUILT_PRODUCTS_DIR - CE76CB8205282A08947261FD + E353F961401ACB32C8B8EDC4 - children + buildConfigurationList + 3107890B17B0B67123D340FC + buildPhases - 27861836AA97C3F0DE283281 - 4CE51D09A781A346BC3222E0 - 4D1C3932CF617886AF6400CF - 9135B94B7F72231BDBBBCDBB + 226C5A2CB6CACC8EAC557653 + 32F3E232D09212E0D0958A6D + 6F7928118F8C4B6BDF8337AF + buildRules + + dependencies + isa - PBXGroup + PBXNativeTarget name - Support Files - path - ../Target Support Files/Pods-NSManagedObject-HYPPropertyMapper - sourceTree - <group> - - CF978BF32F535D2902A5BA18 - - fileRef - F19375751057A468E9EF7DCC - isa - PBXBuildFile + Pods-ANDYFetchedResultsTableDataSource + productName + Pods-ANDYFetchedResultsTableDataSource + productReference + 712D87C307AC1375A0472635 + productType + com.apple.product-type.library.static - D04BD35A6420FEF736D4BA10 + E588BF0B639A8CBD857C4ACF baseConfigurationReference - 8FD1BA2DE0CBAAF0366124A7 + 6E85110A0A73F70678C13A1E buildSettings ALWAYS_SEARCH_USER_PATHS @@ -3014,263 +3181,120 @@ $(TARGET_NAME) SDKROOT iphoneos - SKIP_INSTALL - YES - - isa - XCBuildConfiguration - name - Debug - - D0648CEBC2C4B1BA2C8BBB2D - - buildSettings - - ALWAYS_SEARCH_USER_PATHS - NO - 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 - CLANG_WARN_EMPTY_BODY - YES - CLANG_WARN_ENUM_CONVERSION - YES - CLANG_WARN_INT_CONVERSION - YES - CLANG_WARN_OBJC_ROOT_CLASS - YES - COPY_PHASE_STRIP - YES - 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 - 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 - STRIP_INSTALLED_PRODUCT - NO - - isa - XCBuildConfiguration - name - Debug - - D07E79983DC7726433D146C5 - - buildConfigurationList - A892E27585BB997D3498FCF5 - buildPhases - - 4FB83FDD27E8300C343230A4 - E9219A176C08C4B2A365D8E1 - 000CAF7DDC26AAA207948A5D - - buildRules - - dependencies - - isa - PBXNativeTarget - name - Pods-NSManagedObject-ANDYObjectIDs - productName - Pods-NSManagedObject-ANDYObjectIDs - productReference - 981BB0846BF99007BBBE26C3 - productType - com.apple.product-type.library.static - - D32C85FA812F7BDC8930B716 - + SKIP_INSTALL + YES + isa - PBXTargetDependency + XCBuildConfiguration name - Pods-NSString-HYPNetworking - target - EE5EC13232EFB00823B5B8B1 - targetProxy - 849992A4B12F99639DD01D54 + Debug - D358D72E946C2AAE22327983 + E68F6A75BF2EC18E465479BF - includeInIndex - 1 + children + + 64B46115D1BB248366702F53 + 0C6B8282A6E5778B585D89EF + 594F90DC1EAE4DEB2E96F2F7 + 46350F2016CC8DDF5CE5EC23 + isa - PBXFileReference - lastKnownFileType - sourcecode.c.h + PBXGroup + name + Support Files path - Pods-NSString-HYPNetworking-prefix.pch + ../Target Support Files/Pods-Kipu sourceTree <group> - D3BF78401078B931DFEED093 + E69FC130A31F2E142CA5BF32 includeInIndex 1 isa PBXFileReference lastKnownFileType - text.xcconfig + sourcecode.c.objc + name + NSManagedObject+HYPPropertyMapper.m path - Pods.debug.xcconfig + Source/NSManagedObject+HYPPropertyMapper.m sourceTree <group> - D70C672922AC82135E1DE9FD + E79C0D1554C3AEDAE93177C3 - buildActionMask - 2147483647 - files - - DD02A06720268141110D434B - BF34A2D05D1E6300AF9F3EB4 - + fileRef + ECB57FB8FD0FB29862714438 isa - PBXSourcesBuildPhase - runOnlyForDeploymentPostprocessing - 0 + PBXBuildFile + settings + + COMPILER_FLAGS + -DOS_OBJECT_USE_OBJC=0 + - D8EB51FB0099AEE0697960CC + E9A762425CDBB52DCB11B840 fileRef - F5F8F04091D6CF3877BD92D8 + EFBC814FD97803088ABED12F isa PBXBuildFile - D8EE1123E045BF98D81FF018 + E9FE28054F1AE31C3ADD6CE0 - buildConfigurations - - 4FF187A4F98B4F5BC4C3211C - 748D7D68456D6372EC664958 - - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release + containerPortal + 8D79E56B046AABFF6D8EDAA6 isa - XCConfigurationList + PBXContainerItemProxy + proxyType + 1 + remoteGlobalIDString + 60324F134C7FAE9F8F81667D + remoteInfo + Pods-NSManagedObject-HYPPropertyMapper - DA438A58D5D205C799D92B38 + EBD342E6F9ADC4942D23BBB4 - attributes - - LastUpgradeCheck - 0510 - buildConfigurationList - 209EC356A978CB7BFD5952A2 - compatibilityVersion - Xcode 3.2 - developmentRegion - English - hasScannedForEncodings - 0 - isa - PBXProject - knownRegions + 011304229B83A05D40155BB7 + buildPhases - en + 89156ED2C3774B9D82878DB6 + 8B114A690628881B70B8BC57 + BCA9A587EDD1CEA9BE163997 - mainGroup - 6D4830368BF7E638304698D7 - productRefGroup - 669B01D1375A2B77A3AFE232 - projectDirPath - - projectReferences + buildRules + + dependencies - projectRoot - - targets - - 376CF328FA2386FDC97B7CAD - 47B29EC3D1BC7E0F879BFA56 - 304027FA021A1EC769869536 - 904FB5AD28120D0EACBC90C4 - FAA1133EB8A8B86A5517DFAE - 34695AD7AC6ED5FDE425923F - D07E79983DC7726433D146C5 - 9BC24AC1AEE75F7DD2EEC72F - EE5EC13232EFB00823B5B8B1 - - - DC14BC211FE892C2FB39FBE1 - - buildActionMask - 2147483647 - files - - 575CBA81540B0E6F7130DCD5 - - isa - PBXSourcesBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - DC87C224D53CFB07F5D60FF7 - - fileRef - 40DAEFC86DC7F068B46D2ABE - isa - PBXBuildFile - - DD02A06720268141110D434B - - fileRef - 9E07DC2CEAE24A9CBDA886B1 isa - PBXBuildFile + PBXNativeTarget + name + Pods-NSDictionary-ANDYSafeValue + productName + Pods-NSDictionary-ANDYSafeValue + productReference + 87B376A1A64AFC68448EFF8D + productType + com.apple.product-type.library.static - E0CAF802FEA7CDD1E286DBFA + ECB57FB8FD0FB29862714438 - explicitFileType - archive.ar includeInIndex - 0 + 1 isa PBXFileReference + lastKnownFileType + sourcecode.c.objc + name + DATAStack.m path - libPods.a + Source/DATAStack.m sourceTree - BUILT_PRODUCTS_DIR + <group> - E2B156A0BEE4B144AF0B8425 + EDB9FCC0D4687F3D9CE039E3 includeInIndex 1 @@ -3279,53 +3303,43 @@ lastKnownFileType sourcecode.c.objc name - NSDictionary+ANDYSafeValue.m + Kipu.m path - Source/NSDictionary+ANDYSafeValue.m + Source/Kipu.m sourceTree <group> - E5409149226E41C969B6E218 - - isa - PBXTargetDependency - name - Pods-NSManagedObject-HYPPropertyMapper - target - 9BC24AC1AEE75F7DD2EEC72F - targetProxy - 85116F143F495ABE4FF927A8 - - E674D74DBB68C1EE350F7CF5 + EF607D616713B9823918EE85 baseConfigurationReference - 245DAF6B020542F075CA6E77 + 5028C2F052729C929EE43EC6 buildSettings ALWAYS_SEARCH_USER_PATHS NO COPY_PHASE_STRIP - YES + NO DSTROOT /tmp/xcodeproj.dst + GCC_DYNAMIC_NO_PIC + NO + GCC_OPTIMIZATION_LEVEL + 0 GCC_PRECOMPILE_PREFIX_HEADER YES GCC_PREFIX_HEADER - Target Support Files/Pods-Kipu/Pods-Kipu-prefix.pch + Target Support Files/Pods-DATAStack/Pods-DATAStack-prefix.pch + GCC_PREPROCESSOR_DEFINITIONS + + DEBUG=1 + $(inherited) + + GCC_SYMBOLS_PRIVATE_EXTERN + NO INSTALL_PATH $(BUILT_PRODUCTS_DIR) IPHONEOS_DEPLOYMENT_TARGET 7.0 - OTHER_CFLAGS - - -DNS_BLOCK_ASSERTIONS=1 - $(inherited) - - OTHER_CPLUSPLUSFLAGS - - -DNS_BLOCK_ASSERTIONS=1 - $(inherited) - OTHER_LDFLAGS OTHER_LIBTOOLFLAGS @@ -3338,92 +3352,218 @@ iphoneos SKIP_INSTALL YES - VALIDATE_PRODUCT - YES isa XCBuildConfiguration name - Release + Debug + + EFBC814FD97803088ABED12F + + isa + PBXFileReference + lastKnownFileType + wrapper.framework + name + Foundation.framework + path + Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/System/Library/Frameworks/Foundation.framework + sourceTree + DEVELOPER_DIR + + F30675F4F4C6F48DCB496695 + + isa + PBXTargetDependency + name + Pods-NSManagedObject-ANDYMapChanges + target + 0507BBFFC3A4625072DB836B + targetProxy + 175449D7B206A7818776DC9F + + F3403A625AA147D0861D7DDC + + buildActionMask + 2147483647 + files + + 1D482A635C9A47482F73F6E7 + A34BEDE02A23C7A84ECFA83F + + isa + PBXSourcesBuildPhase + runOnlyForDeploymentPostprocessing + 0 + + F5B49E34BBB74AF0019A7350 + + children + + 8A63EE6E4F3F1D7746A5C1C2 + 25C3877DD5A8A016159CC322 + 0ED9811C4E5B29D8965C9F3E + + isa + PBXGroup + name + NSManagedObject-ANDYMapChanges + path + NSManagedObject-ANDYMapChanges + sourceTree + <group> + + F64C6DA18420219E5FB7D7AB + + isa + PBXFileReference + lastKnownFileType + wrapper.framework + name + CoreData.framework + path + Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/System/Library/Frameworks/CoreData.framework + sourceTree + DEVELOPER_DIR - E7A1D585733F30E1E8869F7A + F64D64D214372C1B5D53EF83 includeInIndex 1 isa PBXFileReference lastKnownFileType - text.xcconfig + sourcecode.c.h path - Pods-NSString-HYPNetworking.xcconfig + Pods-NSString-HYPNetworking-prefix.pch + sourceTree + <group> + + F6E66C8AB60ECB1AAB7DB9B6 + + includeInIndex + 1 + isa + PBXFileReference + lastKnownFileType + text + name + Podfile + path + ../Podfile + sourceTree + SOURCE_ROOT + xcLanguageSpecificationIdentifier + xcode.lang.ruby + + F72E84E7881154435623BA97 + + includeInIndex + 1 + isa + PBXFileReference + lastKnownFileType + text.script.sh + path + Pods-resources.sh sourceTree <group> - E9219A176C08C4B2A365D8E1 + F9B086BB7A51E0343F261213 + + fileRef + F64C6DA18420219E5FB7D7AB + isa + PBXBuildFile + + F9D9436E439F470DF7539844 + + fileRef + F64C6DA18420219E5FB7D7AB + isa + PBXBuildFile + + FA97B9625C51C64F1838BB1A buildActionMask 2147483647 files - BDCF86D337D2686A20D36B1B - 5BC45C9D6B57ABC8BF8DB482 + 6DF8BF9D08D9E2ED36205129 + 377B22FF91993504C33DD598 isa - PBXFrameworksBuildPhase + PBXSourcesBuildPhase runOnlyForDeploymentPostprocessing 0 - E9C346B1585C3105C4C0783F + FAF8F7C17E3C20BE236A22E9 - fileRef - 0819C531A7492FFF8446FBB7 + children + + 1C179C97F2A609D6A070EB21 + 45FE5ACF8355A4414831E1AC + 44EE90F3E8E19A9F1078CD40 + isa - PBXBuildFile + PBXGroup + name + ANDYFetchedResultsTableDataSource + path + ANDYFetchedResultsTableDataSource + sourceTree + <group> - EC2D009924E761B6FAD82DA6 + FB7944C7F0BB249EE44ED222 includeInIndex 1 isa PBXFileReference lastKnownFileType - text.xcconfig + sourcecode.c.objc path - Pods-NSManagedObject-ANDYMapChanges.xcconfig + Pods-NSManagedObject-HYPPropertyMapper-dummy.m sourceTree <group> - EC8558B4618B7C9F2F7E64B0 + FB84356A257CF5F9084FFE69 + + fileRef + 621137F22494CC59E655D29E + isa + PBXBuildFile + + FBA6F7206FEB04A9626F4859 baseConfigurationReference - 6DF1B4562E15263BDA9F522F + 0C6B8282A6E5778B585D89EF buildSettings ALWAYS_SEARCH_USER_PATHS NO COPY_PHASE_STRIP - NO + YES DSTROOT /tmp/xcodeproj.dst - GCC_DYNAMIC_NO_PIC - NO - GCC_OPTIMIZATION_LEVEL - 0 GCC_PRECOMPILE_PREFIX_HEADER YES GCC_PREFIX_HEADER - Target Support Files/Pods-NSDictionary-ANDYSafeValue/Pods-NSDictionary-ANDYSafeValue-prefix.pch - GCC_PREPROCESSOR_DEFINITIONS - - DEBUG=1 - $(inherited) - - GCC_SYMBOLS_PRIVATE_EXTERN - NO + Target Support Files/Pods-Kipu/Pods-Kipu-prefix.pch INSTALL_PATH $(BUILT_PRODUCTS_DIR) IPHONEOS_DEPLOYMENT_TARGET 7.0 + OTHER_CFLAGS + + -DNS_BLOCK_ASSERTIONS=1 + $(inherited) + + OTHER_CPLUSPLUSFLAGS + + -DNS_BLOCK_ASSERTIONS=1 + $(inherited) + OTHER_LDFLAGS OTHER_LIBTOOLFLAGS @@ -3436,212 +3576,133 @@ iphoneos SKIP_INSTALL YES + VALIDATE_PRODUCT + YES isa XCBuildConfiguration name - Debug + Release + + FD617A87C404C569579F7ADD + + fileRef + 256E14414F9B56096317ADC9 + isa + PBXBuildFile - EE5EC13232EFB00823B5B8B1 + FD6F3FAA264CCB6B99A263F7 buildConfigurationList - 9BAD4FBCCBD00B7978832D4C + 20E614113C30EE37879FFDD8 buildPhases - F29AC8E4E53005CF5609E5B9 - A4D49CE0C5C16AFC970CF60B - 424C6C9A3F9E47C9BD390EEE + FA97B9625C51C64F1838BB1A + 2C0D8828094112557AE98AFA + B85A244DE225AACD3D1E46D3 buildRules dependencies - + + 86E028B41527881F662D35E6 + 52BCF5CB9D61B49952335353 + 28F7A57239439A611F57F8B3 + 24BA6D6374B9595B4F092566 + isa PBXNativeTarget name - Pods-NSString-HYPNetworking + Pods-Kipu productName - Pods-NSString-HYPNetworking + Pods-Kipu productReference - EF4ECD71388ABA64F1D617ED + E342ED631CDF2156B221E63C productType com.apple.product-type.library.static - EF4ECD71388ABA64F1D617ED - - explicitFileType - archive.ar - includeInIndex - 0 - isa - PBXFileReference - path - libPods-NSString-HYPNetworking.a - sourceTree - BUILT_PRODUCTS_DIR - - F01D688E1398213777610238 - - fileRef - 41F6B62ACD2342BB22D08D95 - isa - PBXBuildFile - - F04DB3E40051BD1EDBCA6CB0 + FD8F2E996A2454CA0D782E65 fileRef - ABC7A91639091324FABAB319 + EFBC814FD97803088ABED12F isa PBXBuildFile - settings - - COMPILER_FLAGS - -DOS_OBJECT_USE_OBJC=0 - - F0821CAE1FA1B245ECAE5B2A + FE8A7A354CEFF4E31908A8F4 buildActionMask 2147483647 files - 587BADF208A5955533561EFD + 645788CCC259C081F3470BB5 isa PBXHeadersBuildPhase runOnlyForDeploymentPostprocessing 0 - F19375751057A468E9EF7DCC - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - Pods-NSManagedObject-ANDYObjectIDs-dummy.m - sourceTree - <group> - - F29AC8E4E53005CF5609E5B9 + FEAE97BE4D25A41001040C18 - buildActionMask - 2147483647 - files - - 93507F6752FD725090A1EA26 - 2AE750C7472236ED98A3E093 - isa - PBXSourcesBuildPhase - runOnlyForDeploymentPostprocessing - 0 + PBXTargetDependency + name + Pods-ANDYFetchedResultsTableDataSource + target + E353F961401ACB32C8B8EDC4 + targetProxy + 9EC6C7EEC571CEA1EE476F10 - F586601C66DE5E013F8AFA90 + FF5D49258C18A14EC2113894 children - 0819C531A7492FFF8446FBB7 - FD11EC6DF953E8B635B96B08 - 6B42314F4E8BAE2F560D9F9C + 96EB0B0CED98C32E498CADFC + 7318C858801BF0BC1319E8D5 + 621137F22494CC59E655D29E + 3162C46A22C0C267F358576C + F72E84E7881154435623BA97 + 7656D991F042A3CA6F0E75B7 + D837CA1F2D50A9BE325176D0 isa PBXGroup name - NSManagedObject-ANDYObjectIDs - path - NSManagedObject-ANDYObjectIDs - sourceTree - <group> - - F5BA27C9901125034D354642 - - buildActionMask - 2147483647 - files - - 1DEDA865CB56DEDB83857FC2 - 61036BCBA733B36CAEE43352 - - isa - PBXFrameworksBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - F5CAFE15C3A3189F7ADAD4C5 - - explicitFileType - archive.ar - includeInIndex - 0 - isa - PBXFileReference - path - libPods-ANDYDataStack.a - sourceTree - BUILT_PRODUCTS_DIR - - F5F8F04091D6CF3877BD92D8 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - name - NSManagedObject+ANDYMapChanges.h - path - Source/NSManagedObject+ANDYMapChanges.h - sourceTree - <group> - - F7DA5E6DD33CD63C8C55739A - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - text.xcconfig + Pods path - Pods.release.xcconfig + Target Support Files/Pods sourceTree <group> - F833999F3688FECE81D9BF04 + FF823A360C853BE5423D283B baseConfigurationReference - 245DAF6B020542F075CA6E77 + 6E85110A0A73F70678C13A1E buildSettings ALWAYS_SEARCH_USER_PATHS NO COPY_PHASE_STRIP - NO + YES DSTROOT /tmp/xcodeproj.dst - GCC_DYNAMIC_NO_PIC - NO - GCC_OPTIMIZATION_LEVEL - 0 GCC_PRECOMPILE_PREFIX_HEADER YES GCC_PREFIX_HEADER - Target Support Files/Pods-Kipu/Pods-Kipu-prefix.pch - GCC_PREPROCESSOR_DEFINITIONS - - DEBUG=1 - $(inherited) - - GCC_SYMBOLS_PRIVATE_EXTERN - NO + Target Support Files/Pods-NSManagedObject-ANDYObjectIDs/Pods-NSManagedObject-ANDYObjectIDs-prefix.pch INSTALL_PATH $(BUILT_PRODUCTS_DIR) IPHONEOS_DEPLOYMENT_TARGET 7.0 + OTHER_CFLAGS + + -DNS_BLOCK_ASSERTIONS=1 + $(inherited) + + OTHER_CPLUSPLUSFLAGS + + -DNS_BLOCK_ASSERTIONS=1 + $(inherited) + OTHER_LDFLAGS OTHER_LIBTOOLFLAGS @@ -3654,38 +3715,23 @@ iphoneos SKIP_INSTALL YES + VALIDATE_PRODUCT + YES isa XCBuildConfiguration name - Debug - - F8FE8D8B5520F515B1DD1FB6 - - children - - 6007764D9EFA2060967EB2C4 - 97AD9A79D8405B93F3B18888 - B0B5DA0B8514AA818C6D68A9 - - isa - PBXGroup - name - Kipu - path - Kipu - sourceTree - <group> + Release - FAA1133EB8A8B86A5517DFAE + FFFB891266CB349666491206 buildConfigurationList - 5C3767C8232221BDB1742B09 + D9D4D2BCF59F72F3266746C5 buildPhases - 7209D07E8E1E52C7AE616E83 - B5E6886D5D73C0C5C8F3FE46 - 0D2B2A8AB3C33575E12A4AC9 + 8BF5337B5422CBB8B127DA06 + 283D39D83B26FF8248A76D83 + 157D0C4BE6F7386CCDF6F395 buildRules @@ -3694,62 +3740,16 @@ isa PBXNativeTarget name - Pods-NSDictionary-ANDYSafeValue + Pods-NSString-HYPNetworking productName - Pods-NSDictionary-ANDYSafeValue + Pods-NSString-HYPNetworking productReference - 1AED60199AFCEB15C3C6153F + 37EAF970372A9DA0C19E8CC9 productType com.apple.product-type.library.static - FD11EC6DF953E8B635B96B08 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - name - NSManagedObject+ANDYObjectIDs.m - path - Source/NSManagedObject+ANDYObjectIDs.m - sourceTree - <group> - - FDB1DE4C5F5C451263B47D84 - - fileRef - 471935CEB15CA0F760E99913 - isa - PBXBuildFile - - FDBCCC8A7A90697FED5895F7 - - fileRef - 73AD3AFD295F215F805ABF6C - isa - PBXBuildFile - - FFFBB9C88C58F6CA6325A003 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - text - name - Podfile - path - ../Podfile - sourceTree - SOURCE_ROOT - xcLanguageSpecificationIdentifier - xcode.lang.ruby - rootObject - DA438A58D5D205C799D92B38 + 8D79E56B046AABFF6D8EDAA6 diff --git a/Example/Pods/Target Support Files/Pods-ANDYDataStack/Pods-ANDYDataStack-Private.xcconfig b/Example/Pods/Target Support Files/Pods-ANDYDataStack/Pods-ANDYDataStack-Private.xcconfig deleted file mode 100644 index bc8bd2c6..00000000 --- a/Example/Pods/Target Support Files/Pods-ANDYDataStack/Pods-ANDYDataStack-Private.xcconfig +++ /dev/null @@ -1,5 +0,0 @@ -#include "Pods-ANDYDataStack.xcconfig" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Build" "${PODS_ROOT}/Headers/Build/ANDYDataStack" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/ANDYDataStack" "${PODS_ROOT}/Headers/Public/ANDYFetchedResultsTableDataSource" "${PODS_ROOT}/Headers/Public/Kipu" "${PODS_ROOT}/Headers/Public/NSDictionary-ANDYSafeValue" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYMapChanges" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYObjectIDs" "${PODS_ROOT}/Headers/Public/NSManagedObject-HYPPropertyMapper" "${PODS_ROOT}/Headers/Public/NSString-HYPNetworking" -OTHER_LDFLAGS = ${PODS_ANDYDATASTACK_OTHER_LDFLAGS} -ObjC -PODS_ROOT = ${SRCROOT} \ No newline at end of file diff --git a/Example/Pods/Target Support Files/Pods-ANDYDataStack/Pods-ANDYDataStack-dummy.m b/Example/Pods/Target Support Files/Pods-ANDYDataStack/Pods-ANDYDataStack-dummy.m deleted file mode 100644 index 29bf98f2..00000000 --- a/Example/Pods/Target Support Files/Pods-ANDYDataStack/Pods-ANDYDataStack-dummy.m +++ /dev/null @@ -1,5 +0,0 @@ -#import -@interface PodsDummy_Pods_ANDYDataStack : NSObject -@end -@implementation PodsDummy_Pods_ANDYDataStack -@end diff --git a/Example/Pods/Target Support Files/Pods-ANDYDataStack/Pods-ANDYDataStack.xcconfig b/Example/Pods/Target Support Files/Pods-ANDYDataStack/Pods-ANDYDataStack.xcconfig deleted file mode 100644 index eb6096d0..00000000 --- a/Example/Pods/Target Support Files/Pods-ANDYDataStack/Pods-ANDYDataStack.xcconfig +++ /dev/null @@ -1 +0,0 @@ -PODS_ANDYDATASTACK_OTHER_LDFLAGS = -framework "CoreData" -framework "Foundation" \ No newline at end of file diff --git a/Example/Pods/Target Support Files/Pods-ANDYFetchedResultsTableDataSource/Pods-ANDYFetchedResultsTableDataSource-Private.xcconfig b/Example/Pods/Target Support Files/Pods-ANDYFetchedResultsTableDataSource/Pods-ANDYFetchedResultsTableDataSource-Private.xcconfig index a071629a..45ba6343 100644 --- a/Example/Pods/Target Support Files/Pods-ANDYFetchedResultsTableDataSource/Pods-ANDYFetchedResultsTableDataSource-Private.xcconfig +++ b/Example/Pods/Target Support Files/Pods-ANDYFetchedResultsTableDataSource/Pods-ANDYFetchedResultsTableDataSource-Private.xcconfig @@ -1,5 +1,5 @@ #include "Pods-ANDYFetchedResultsTableDataSource.xcconfig" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Build" "${PODS_ROOT}/Headers/Build/ANDYFetchedResultsTableDataSource" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/ANDYDataStack" "${PODS_ROOT}/Headers/Public/ANDYFetchedResultsTableDataSource" "${PODS_ROOT}/Headers/Public/Kipu" "${PODS_ROOT}/Headers/Public/NSDictionary-ANDYSafeValue" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYMapChanges" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYObjectIDs" "${PODS_ROOT}/Headers/Public/NSManagedObject-HYPPropertyMapper" "${PODS_ROOT}/Headers/Public/NSString-HYPNetworking" +HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Build" "${PODS_ROOT}/Headers/Build/ANDYFetchedResultsTableDataSource" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/ANDYFetchedResultsTableDataSource" "${PODS_ROOT}/Headers/Public/DATAStack" "${PODS_ROOT}/Headers/Public/Kipu" "${PODS_ROOT}/Headers/Public/NSDictionary-ANDYSafeValue" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYMapChanges" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYObjectIDs" "${PODS_ROOT}/Headers/Public/NSManagedObject-HYPPropertyMapper" "${PODS_ROOT}/Headers/Public/NSString-HYPNetworking" OTHER_LDFLAGS = ${PODS_ANDYFETCHEDRESULTSTABLEDATASOURCE_OTHER_LDFLAGS} -ObjC PODS_ROOT = ${SRCROOT} \ No newline at end of file diff --git a/Example/Pods/Target Support Files/Pods-DATAStack/Pods-DATAStack-Private.xcconfig b/Example/Pods/Target Support Files/Pods-DATAStack/Pods-DATAStack-Private.xcconfig new file mode 100644 index 00000000..3afa9c44 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-DATAStack/Pods-DATAStack-Private.xcconfig @@ -0,0 +1,5 @@ +#include "Pods-DATAStack.xcconfig" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Build" "${PODS_ROOT}/Headers/Build/DATAStack" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/ANDYFetchedResultsTableDataSource" "${PODS_ROOT}/Headers/Public/DATAStack" "${PODS_ROOT}/Headers/Public/Kipu" "${PODS_ROOT}/Headers/Public/NSDictionary-ANDYSafeValue" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYMapChanges" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYObjectIDs" "${PODS_ROOT}/Headers/Public/NSManagedObject-HYPPropertyMapper" "${PODS_ROOT}/Headers/Public/NSString-HYPNetworking" +OTHER_LDFLAGS = ${PODS_DATASTACK_OTHER_LDFLAGS} -ObjC +PODS_ROOT = ${SRCROOT} \ No newline at end of file diff --git a/Example/Pods/Target Support Files/Pods-DATAStack/Pods-DATAStack-dummy.m b/Example/Pods/Target Support Files/Pods-DATAStack/Pods-DATAStack-dummy.m new file mode 100644 index 00000000..8de990aa --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-DATAStack/Pods-DATAStack-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_Pods_DATAStack : NSObject +@end +@implementation PodsDummy_Pods_DATAStack +@end diff --git a/Example/Pods/Target Support Files/Pods-ANDYDataStack/Pods-ANDYDataStack-prefix.pch b/Example/Pods/Target Support Files/Pods-DATAStack/Pods-DATAStack-prefix.pch similarity index 100% rename from Example/Pods/Target Support Files/Pods-ANDYDataStack/Pods-ANDYDataStack-prefix.pch rename to Example/Pods/Target Support Files/Pods-DATAStack/Pods-DATAStack-prefix.pch diff --git a/Example/Pods/Target Support Files/Pods-DATAStack/Pods-DATAStack.xcconfig b/Example/Pods/Target Support Files/Pods-DATAStack/Pods-DATAStack.xcconfig new file mode 100644 index 00000000..64c80261 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-DATAStack/Pods-DATAStack.xcconfig @@ -0,0 +1 @@ +PODS_DATASTACK_OTHER_LDFLAGS = -framework "CoreData" -framework "Foundation" \ No newline at end of file diff --git a/Example/Pods/Target Support Files/Pods-Kipu/Pods-Kipu-Private.xcconfig b/Example/Pods/Target Support Files/Pods-Kipu/Pods-Kipu-Private.xcconfig index e95e7583..38c3c7ca 100644 --- a/Example/Pods/Target Support Files/Pods-Kipu/Pods-Kipu-Private.xcconfig +++ b/Example/Pods/Target Support Files/Pods-Kipu/Pods-Kipu-Private.xcconfig @@ -1,5 +1,5 @@ #include "Pods-Kipu.xcconfig" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Build" "${PODS_ROOT}/Headers/Build/Kipu" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/ANDYDataStack" "${PODS_ROOT}/Headers/Public/ANDYFetchedResultsTableDataSource" "${PODS_ROOT}/Headers/Public/Kipu" "${PODS_ROOT}/Headers/Public/NSDictionary-ANDYSafeValue" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYMapChanges" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYObjectIDs" "${PODS_ROOT}/Headers/Public/NSManagedObject-HYPPropertyMapper" "${PODS_ROOT}/Headers/Public/NSString-HYPNetworking" +HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Build" "${PODS_ROOT}/Headers/Build/Kipu" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/ANDYFetchedResultsTableDataSource" "${PODS_ROOT}/Headers/Public/DATAStack" "${PODS_ROOT}/Headers/Public/Kipu" "${PODS_ROOT}/Headers/Public/NSDictionary-ANDYSafeValue" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYMapChanges" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYObjectIDs" "${PODS_ROOT}/Headers/Public/NSManagedObject-HYPPropertyMapper" "${PODS_ROOT}/Headers/Public/NSString-HYPNetworking" OTHER_LDFLAGS = ${PODS_KIPU_OTHER_LDFLAGS} -ObjC PODS_ROOT = ${SRCROOT} \ No newline at end of file diff --git a/Example/Pods/Target Support Files/Pods-NSDictionary-ANDYSafeValue/Pods-NSDictionary-ANDYSafeValue-Private.xcconfig b/Example/Pods/Target Support Files/Pods-NSDictionary-ANDYSafeValue/Pods-NSDictionary-ANDYSafeValue-Private.xcconfig index eb9432d9..0b1e1c94 100644 --- a/Example/Pods/Target Support Files/Pods-NSDictionary-ANDYSafeValue/Pods-NSDictionary-ANDYSafeValue-Private.xcconfig +++ b/Example/Pods/Target Support Files/Pods-NSDictionary-ANDYSafeValue/Pods-NSDictionary-ANDYSafeValue-Private.xcconfig @@ -1,5 +1,5 @@ #include "Pods-NSDictionary-ANDYSafeValue.xcconfig" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Build" "${PODS_ROOT}/Headers/Build/NSDictionary-ANDYSafeValue" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/ANDYDataStack" "${PODS_ROOT}/Headers/Public/ANDYFetchedResultsTableDataSource" "${PODS_ROOT}/Headers/Public/Kipu" "${PODS_ROOT}/Headers/Public/NSDictionary-ANDYSafeValue" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYMapChanges" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYObjectIDs" "${PODS_ROOT}/Headers/Public/NSManagedObject-HYPPropertyMapper" "${PODS_ROOT}/Headers/Public/NSString-HYPNetworking" +HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Build" "${PODS_ROOT}/Headers/Build/NSDictionary-ANDYSafeValue" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/ANDYFetchedResultsTableDataSource" "${PODS_ROOT}/Headers/Public/DATAStack" "${PODS_ROOT}/Headers/Public/Kipu" "${PODS_ROOT}/Headers/Public/NSDictionary-ANDYSafeValue" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYMapChanges" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYObjectIDs" "${PODS_ROOT}/Headers/Public/NSManagedObject-HYPPropertyMapper" "${PODS_ROOT}/Headers/Public/NSString-HYPNetworking" OTHER_LDFLAGS = ${PODS_NSDICTIONARY_ANDYSAFEVALUE_OTHER_LDFLAGS} -ObjC PODS_ROOT = ${SRCROOT} \ No newline at end of file diff --git a/Example/Pods/Target Support Files/Pods-NSManagedObject-ANDYMapChanges/Pods-NSManagedObject-ANDYMapChanges-Private.xcconfig b/Example/Pods/Target Support Files/Pods-NSManagedObject-ANDYMapChanges/Pods-NSManagedObject-ANDYMapChanges-Private.xcconfig index 44a87a81..ae921740 100644 --- a/Example/Pods/Target Support Files/Pods-NSManagedObject-ANDYMapChanges/Pods-NSManagedObject-ANDYMapChanges-Private.xcconfig +++ b/Example/Pods/Target Support Files/Pods-NSManagedObject-ANDYMapChanges/Pods-NSManagedObject-ANDYMapChanges-Private.xcconfig @@ -1,5 +1,5 @@ #include "Pods-NSManagedObject-ANDYMapChanges.xcconfig" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Build" "${PODS_ROOT}/Headers/Build/NSManagedObject-ANDYMapChanges" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/ANDYDataStack" "${PODS_ROOT}/Headers/Public/ANDYFetchedResultsTableDataSource" "${PODS_ROOT}/Headers/Public/Kipu" "${PODS_ROOT}/Headers/Public/NSDictionary-ANDYSafeValue" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYMapChanges" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYObjectIDs" "${PODS_ROOT}/Headers/Public/NSManagedObject-HYPPropertyMapper" "${PODS_ROOT}/Headers/Public/NSString-HYPNetworking" +HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Build" "${PODS_ROOT}/Headers/Build/NSManagedObject-ANDYMapChanges" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/ANDYFetchedResultsTableDataSource" "${PODS_ROOT}/Headers/Public/DATAStack" "${PODS_ROOT}/Headers/Public/Kipu" "${PODS_ROOT}/Headers/Public/NSDictionary-ANDYSafeValue" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYMapChanges" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYObjectIDs" "${PODS_ROOT}/Headers/Public/NSManagedObject-HYPPropertyMapper" "${PODS_ROOT}/Headers/Public/NSString-HYPNetworking" OTHER_LDFLAGS = ${PODS_NSMANAGEDOBJECT_ANDYMAPCHANGES_OTHER_LDFLAGS} -ObjC PODS_ROOT = ${SRCROOT} \ No newline at end of file diff --git a/Example/Pods/Target Support Files/Pods-NSManagedObject-ANDYObjectIDs/Pods-NSManagedObject-ANDYObjectIDs-Private.xcconfig b/Example/Pods/Target Support Files/Pods-NSManagedObject-ANDYObjectIDs/Pods-NSManagedObject-ANDYObjectIDs-Private.xcconfig index 8a669ebc..4a48af5b 100644 --- a/Example/Pods/Target Support Files/Pods-NSManagedObject-ANDYObjectIDs/Pods-NSManagedObject-ANDYObjectIDs-Private.xcconfig +++ b/Example/Pods/Target Support Files/Pods-NSManagedObject-ANDYObjectIDs/Pods-NSManagedObject-ANDYObjectIDs-Private.xcconfig @@ -1,5 +1,5 @@ #include "Pods-NSManagedObject-ANDYObjectIDs.xcconfig" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Build" "${PODS_ROOT}/Headers/Build/NSManagedObject-ANDYObjectIDs" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/ANDYDataStack" "${PODS_ROOT}/Headers/Public/ANDYFetchedResultsTableDataSource" "${PODS_ROOT}/Headers/Public/Kipu" "${PODS_ROOT}/Headers/Public/NSDictionary-ANDYSafeValue" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYMapChanges" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYObjectIDs" "${PODS_ROOT}/Headers/Public/NSManagedObject-HYPPropertyMapper" "${PODS_ROOT}/Headers/Public/NSString-HYPNetworking" +HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Build" "${PODS_ROOT}/Headers/Build/NSManagedObject-ANDYObjectIDs" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/ANDYFetchedResultsTableDataSource" "${PODS_ROOT}/Headers/Public/DATAStack" "${PODS_ROOT}/Headers/Public/Kipu" "${PODS_ROOT}/Headers/Public/NSDictionary-ANDYSafeValue" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYMapChanges" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYObjectIDs" "${PODS_ROOT}/Headers/Public/NSManagedObject-HYPPropertyMapper" "${PODS_ROOT}/Headers/Public/NSString-HYPNetworking" OTHER_LDFLAGS = ${PODS_NSMANAGEDOBJECT_ANDYOBJECTIDS_OTHER_LDFLAGS} -ObjC PODS_ROOT = ${SRCROOT} \ No newline at end of file diff --git a/Example/Pods/Target Support Files/Pods-NSManagedObject-HYPPropertyMapper/Pods-NSManagedObject-HYPPropertyMapper-Private.xcconfig b/Example/Pods/Target Support Files/Pods-NSManagedObject-HYPPropertyMapper/Pods-NSManagedObject-HYPPropertyMapper-Private.xcconfig index e35689d8..f291b237 100644 --- a/Example/Pods/Target Support Files/Pods-NSManagedObject-HYPPropertyMapper/Pods-NSManagedObject-HYPPropertyMapper-Private.xcconfig +++ b/Example/Pods/Target Support Files/Pods-NSManagedObject-HYPPropertyMapper/Pods-NSManagedObject-HYPPropertyMapper-Private.xcconfig @@ -1,5 +1,5 @@ #include "Pods-NSManagedObject-HYPPropertyMapper.xcconfig" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Build" "${PODS_ROOT}/Headers/Build/NSManagedObject-HYPPropertyMapper" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/ANDYDataStack" "${PODS_ROOT}/Headers/Public/ANDYFetchedResultsTableDataSource" "${PODS_ROOT}/Headers/Public/Kipu" "${PODS_ROOT}/Headers/Public/NSDictionary-ANDYSafeValue" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYMapChanges" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYObjectIDs" "${PODS_ROOT}/Headers/Public/NSManagedObject-HYPPropertyMapper" "${PODS_ROOT}/Headers/Public/NSString-HYPNetworking" +HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Build" "${PODS_ROOT}/Headers/Build/NSManagedObject-HYPPropertyMapper" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/ANDYFetchedResultsTableDataSource" "${PODS_ROOT}/Headers/Public/DATAStack" "${PODS_ROOT}/Headers/Public/Kipu" "${PODS_ROOT}/Headers/Public/NSDictionary-ANDYSafeValue" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYMapChanges" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYObjectIDs" "${PODS_ROOT}/Headers/Public/NSManagedObject-HYPPropertyMapper" "${PODS_ROOT}/Headers/Public/NSString-HYPNetworking" OTHER_LDFLAGS = ${PODS_NSMANAGEDOBJECT_HYPPROPERTYMAPPER_OTHER_LDFLAGS} -ObjC PODS_ROOT = ${SRCROOT} \ No newline at end of file diff --git a/Example/Pods/Target Support Files/Pods-NSString-HYPNetworking/Pods-NSString-HYPNetworking-Private.xcconfig b/Example/Pods/Target Support Files/Pods-NSString-HYPNetworking/Pods-NSString-HYPNetworking-Private.xcconfig index 078efa58..5a80dba7 100644 --- a/Example/Pods/Target Support Files/Pods-NSString-HYPNetworking/Pods-NSString-HYPNetworking-Private.xcconfig +++ b/Example/Pods/Target Support Files/Pods-NSString-HYPNetworking/Pods-NSString-HYPNetworking-Private.xcconfig @@ -1,5 +1,5 @@ #include "Pods-NSString-HYPNetworking.xcconfig" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Build" "${PODS_ROOT}/Headers/Build/NSString-HYPNetworking" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/ANDYDataStack" "${PODS_ROOT}/Headers/Public/ANDYFetchedResultsTableDataSource" "${PODS_ROOT}/Headers/Public/Kipu" "${PODS_ROOT}/Headers/Public/NSDictionary-ANDYSafeValue" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYMapChanges" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYObjectIDs" "${PODS_ROOT}/Headers/Public/NSManagedObject-HYPPropertyMapper" "${PODS_ROOT}/Headers/Public/NSString-HYPNetworking" +HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Build" "${PODS_ROOT}/Headers/Build/NSString-HYPNetworking" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/ANDYFetchedResultsTableDataSource" "${PODS_ROOT}/Headers/Public/DATAStack" "${PODS_ROOT}/Headers/Public/Kipu" "${PODS_ROOT}/Headers/Public/NSDictionary-ANDYSafeValue" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYMapChanges" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYObjectIDs" "${PODS_ROOT}/Headers/Public/NSManagedObject-HYPPropertyMapper" "${PODS_ROOT}/Headers/Public/NSString-HYPNetworking" OTHER_LDFLAGS = ${PODS_NSSTRING_HYPNETWORKING_OTHER_LDFLAGS} -ObjC PODS_ROOT = ${SRCROOT} \ No newline at end of file diff --git a/Example/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown b/Example/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown index d0b42f56..c2e82a31 100644 --- a/Example/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown +++ b/Example/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown @@ -1,7 +1,7 @@ # Acknowledgements This application makes use of the following third party libraries: -## ANDYDataStack +## ANDYFetchedResultsTableDataSource The MIT License (MIT) @@ -25,7 +25,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -## ANDYFetchedResultsTableDataSource +## DATAStack The MIT License (MIT) diff --git a/Example/Pods/Target Support Files/Pods/Pods-acknowledgements.plist b/Example/Pods/Target Support Files/Pods/Pods-acknowledgements.plist index 9b3993e2..3f98595b 100644 --- a/Example/Pods/Target Support Files/Pods/Pods-acknowledgements.plist +++ b/Example/Pods/Target Support Files/Pods/Pods-acknowledgements.plist @@ -36,7 +36,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Title - ANDYDataStack + ANDYFetchedResultsTableDataSource Type PSGroupSpecifier @@ -64,7 +64,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Title - ANDYFetchedResultsTableDataSource + DATAStack Type PSGroupSpecifier diff --git a/Example/Pods/Target Support Files/Pods/Pods-environment.h b/Example/Pods/Target Support Files/Pods/Pods-environment.h index 446e5f82..8127f89e 100644 --- a/Example/Pods/Target Support Files/Pods/Pods-environment.h +++ b/Example/Pods/Target Support Files/Pods/Pods-environment.h @@ -6,18 +6,18 @@ // project. -// ANDYDataStack -#define COCOAPODS_POD_AVAILABLE_ANDYDataStack -#define COCOAPODS_VERSION_MAJOR_ANDYDataStack 2 -#define COCOAPODS_VERSION_MINOR_ANDYDataStack 0 -#define COCOAPODS_VERSION_PATCH_ANDYDataStack 2 - // ANDYFetchedResultsTableDataSource #define COCOAPODS_POD_AVAILABLE_ANDYFetchedResultsTableDataSource #define COCOAPODS_VERSION_MAJOR_ANDYFetchedResultsTableDataSource 1 #define COCOAPODS_VERSION_MINOR_ANDYFetchedResultsTableDataSource 1 #define COCOAPODS_VERSION_PATCH_ANDYFetchedResultsTableDataSource 0 +// DATAStack +#define COCOAPODS_POD_AVAILABLE_DATAStack +#define COCOAPODS_VERSION_MAJOR_DATAStack 2 +#define COCOAPODS_VERSION_MINOR_DATAStack 2 +#define COCOAPODS_VERSION_PATCH_DATAStack 3 + // Kipu #define COCOAPODS_POD_AVAILABLE_Kipu #define COCOAPODS_VERSION_MAJOR_Kipu 0 @@ -33,8 +33,8 @@ // NSManagedObject-ANDYMapChanges #define COCOAPODS_POD_AVAILABLE_NSManagedObject_ANDYMapChanges #define COCOAPODS_VERSION_MAJOR_NSManagedObject_ANDYMapChanges 0 -#define COCOAPODS_VERSION_MINOR_NSManagedObject_ANDYMapChanges 5 -#define COCOAPODS_VERSION_PATCH_NSManagedObject_ANDYMapChanges 1 +#define COCOAPODS_VERSION_MINOR_NSManagedObject_ANDYMapChanges 6 +#define COCOAPODS_VERSION_PATCH_NSManagedObject_ANDYMapChanges 0 // NSManagedObject-ANDYObjectIDs #define COCOAPODS_POD_AVAILABLE_NSManagedObject_ANDYObjectIDs @@ -46,7 +46,7 @@ #define COCOAPODS_POD_AVAILABLE_NSManagedObject_HYPPropertyMapper #define COCOAPODS_VERSION_MAJOR_NSManagedObject_HYPPropertyMapper 2 #define COCOAPODS_VERSION_MINOR_NSManagedObject_HYPPropertyMapper 8 -#define COCOAPODS_VERSION_PATCH_NSManagedObject_HYPPropertyMapper 0 +#define COCOAPODS_VERSION_PATCH_NSManagedObject_HYPPropertyMapper 1 // NSString-HYPNetworking #define COCOAPODS_POD_AVAILABLE_NSString_HYPNetworking diff --git a/Example/Pods/Target Support Files/Pods/Pods.debug.xcconfig b/Example/Pods/Target Support Files/Pods/Pods.debug.xcconfig index b581a979..1ad5ebe6 100644 --- a/Example/Pods/Target Support Files/Pods/Pods.debug.xcconfig +++ b/Example/Pods/Target Support Files/Pods/Pods.debug.xcconfig @@ -1,6 +1,6 @@ GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/ANDYDataStack" "${PODS_ROOT}/Headers/Public/ANDYFetchedResultsTableDataSource" "${PODS_ROOT}/Headers/Public/Kipu" "${PODS_ROOT}/Headers/Public/NSDictionary-ANDYSafeValue" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYMapChanges" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYObjectIDs" "${PODS_ROOT}/Headers/Public/NSManagedObject-HYPPropertyMapper" "${PODS_ROOT}/Headers/Public/NSString-HYPNetworking" -OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/ANDYDataStack" -isystem "${PODS_ROOT}/Headers/Public/ANDYFetchedResultsTableDataSource" -isystem "${PODS_ROOT}/Headers/Public/Kipu" -isystem "${PODS_ROOT}/Headers/Public/NSDictionary-ANDYSafeValue" -isystem "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYMapChanges" -isystem "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYObjectIDs" -isystem "${PODS_ROOT}/Headers/Public/NSManagedObject-HYPPropertyMapper" -isystem "${PODS_ROOT}/Headers/Public/NSString-HYPNetworking" -OTHER_LDFLAGS = -ObjC -l"Pods-ANDYDataStack" -l"Pods-ANDYFetchedResultsTableDataSource" -l"Pods-Kipu" -l"Pods-NSDictionary-ANDYSafeValue" -l"Pods-NSManagedObject-ANDYMapChanges" -l"Pods-NSManagedObject-ANDYObjectIDs" -l"Pods-NSManagedObject-HYPPropertyMapper" -l"Pods-NSString-HYPNetworking" -framework "CoreData" -framework "Foundation" -framework "UIKit" +HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/ANDYFetchedResultsTableDataSource" "${PODS_ROOT}/Headers/Public/DATAStack" "${PODS_ROOT}/Headers/Public/Kipu" "${PODS_ROOT}/Headers/Public/NSDictionary-ANDYSafeValue" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYMapChanges" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYObjectIDs" "${PODS_ROOT}/Headers/Public/NSManagedObject-HYPPropertyMapper" "${PODS_ROOT}/Headers/Public/NSString-HYPNetworking" +OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/ANDYFetchedResultsTableDataSource" -isystem "${PODS_ROOT}/Headers/Public/DATAStack" -isystem "${PODS_ROOT}/Headers/Public/Kipu" -isystem "${PODS_ROOT}/Headers/Public/NSDictionary-ANDYSafeValue" -isystem "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYMapChanges" -isystem "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYObjectIDs" -isystem "${PODS_ROOT}/Headers/Public/NSManagedObject-HYPPropertyMapper" -isystem "${PODS_ROOT}/Headers/Public/NSString-HYPNetworking" +OTHER_LDFLAGS = -ObjC -l"Pods-ANDYFetchedResultsTableDataSource" -l"Pods-DATAStack" -l"Pods-Kipu" -l"Pods-NSDictionary-ANDYSafeValue" -l"Pods-NSManagedObject-ANDYMapChanges" -l"Pods-NSManagedObject-ANDYObjectIDs" -l"Pods-NSManagedObject-HYPPropertyMapper" -l"Pods-NSString-HYPNetworking" -framework "CoreData" -framework "Foundation" -framework "UIKit" OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) PODS_ROOT = ${SRCROOT}/Pods \ No newline at end of file diff --git a/Example/Pods/Target Support Files/Pods/Pods.release.xcconfig b/Example/Pods/Target Support Files/Pods/Pods.release.xcconfig index b581a979..1ad5ebe6 100644 --- a/Example/Pods/Target Support Files/Pods/Pods.release.xcconfig +++ b/Example/Pods/Target Support Files/Pods/Pods.release.xcconfig @@ -1,6 +1,6 @@ GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/ANDYDataStack" "${PODS_ROOT}/Headers/Public/ANDYFetchedResultsTableDataSource" "${PODS_ROOT}/Headers/Public/Kipu" "${PODS_ROOT}/Headers/Public/NSDictionary-ANDYSafeValue" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYMapChanges" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYObjectIDs" "${PODS_ROOT}/Headers/Public/NSManagedObject-HYPPropertyMapper" "${PODS_ROOT}/Headers/Public/NSString-HYPNetworking" -OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/ANDYDataStack" -isystem "${PODS_ROOT}/Headers/Public/ANDYFetchedResultsTableDataSource" -isystem "${PODS_ROOT}/Headers/Public/Kipu" -isystem "${PODS_ROOT}/Headers/Public/NSDictionary-ANDYSafeValue" -isystem "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYMapChanges" -isystem "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYObjectIDs" -isystem "${PODS_ROOT}/Headers/Public/NSManagedObject-HYPPropertyMapper" -isystem "${PODS_ROOT}/Headers/Public/NSString-HYPNetworking" -OTHER_LDFLAGS = -ObjC -l"Pods-ANDYDataStack" -l"Pods-ANDYFetchedResultsTableDataSource" -l"Pods-Kipu" -l"Pods-NSDictionary-ANDYSafeValue" -l"Pods-NSManagedObject-ANDYMapChanges" -l"Pods-NSManagedObject-ANDYObjectIDs" -l"Pods-NSManagedObject-HYPPropertyMapper" -l"Pods-NSString-HYPNetworking" -framework "CoreData" -framework "Foundation" -framework "UIKit" +HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/ANDYFetchedResultsTableDataSource" "${PODS_ROOT}/Headers/Public/DATAStack" "${PODS_ROOT}/Headers/Public/Kipu" "${PODS_ROOT}/Headers/Public/NSDictionary-ANDYSafeValue" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYMapChanges" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYObjectIDs" "${PODS_ROOT}/Headers/Public/NSManagedObject-HYPPropertyMapper" "${PODS_ROOT}/Headers/Public/NSString-HYPNetworking" +OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/ANDYFetchedResultsTableDataSource" -isystem "${PODS_ROOT}/Headers/Public/DATAStack" -isystem "${PODS_ROOT}/Headers/Public/Kipu" -isystem "${PODS_ROOT}/Headers/Public/NSDictionary-ANDYSafeValue" -isystem "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYMapChanges" -isystem "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYObjectIDs" -isystem "${PODS_ROOT}/Headers/Public/NSManagedObject-HYPPropertyMapper" -isystem "${PODS_ROOT}/Headers/Public/NSString-HYPNetworking" +OTHER_LDFLAGS = -ObjC -l"Pods-ANDYFetchedResultsTableDataSource" -l"Pods-DATAStack" -l"Pods-Kipu" -l"Pods-NSDictionary-ANDYSafeValue" -l"Pods-NSManagedObject-ANDYMapChanges" -l"Pods-NSManagedObject-ANDYObjectIDs" -l"Pods-NSManagedObject-HYPPropertyMapper" -l"Pods-NSString-HYPNetworking" -framework "CoreData" -framework "Foundation" -framework "UIKit" OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) PODS_ROOT = ${SRCROOT}/Pods \ No newline at end of file diff --git a/Kipu.podspec b/Kipu.podspec index 6e180e6a..6f9284fb 100755 --- a/Kipu.podspec +++ b/Kipu.podspec @@ -22,6 +22,7 @@ s.source_files = 'Source/**/*' s.frameworks = 'Foundation', 'CoreData' +s.dependency 'DATAStack' s.dependency 'NSManagedObject-HYPPropertyMapper' s.dependency 'NSManagedObject-ANDYMapChanges' s.dependency 'DATAStack' diff --git a/README.md b/README.md index 1e7e02e1..a7d3a227 100755 --- a/README.md +++ b/README.md @@ -21,13 +21,13 @@ Kipu eases your every day job of parsing a `JSON` response and getting it into C ```objc + (void)processChanges:(NSArray *)changes usingEntityName:(NSString *)entityName - dataStack:(ANDYDataStack *)dataStack + dataStack:(DATAStack *)dataStack completion:(void (^)(NSError *error))completion ``` * `changes`: JSON response * `entityName`: Core Data's Model Entity Name (such as User, Note, Task) -* `dataStack`: Your [ANDYDataStack](https://github.com/NSElvis/ANDYDataStack) instance, usually from your `AppDelegate` +* `dataStack`: Your [DATAStack](https://github.com/NSElvis/DATAStack) instance, usually from your AppDelegate ## Real World Example @@ -80,7 +80,7 @@ Kipu eases your every day job of parsing a `JSON` response and getting it into C **Kipu** wouldn't be possible without the help of this *fully tested* components: -* [**ANDYDataStack**](https://github.com/NSElvis/ANDYDataStack): Core Data stack and thread safe saving +* [**DATAStack**](https://github.com/NSElvis/DATAStack): CoreData stack and thread safe saving * [**NSManagedObject-ANDYMapChanges**](https://github.com/NSElvis/NSManagedObject-ANDYMapChanges): Helps you purge deleted objects, internally we use it to diff inserts, updates and deletes. Also it's used for uniquing Core Data does this based on objectIDs, ANDYMapChanges uses your remote keys (such as id) for this @@ -96,9 +96,9 @@ Kipu eases your every day job of parsing a `JSON` response and getting it into C pod 'Kipu', '~> 0.4' ``` -### ANDYDataStack +### DATAStack -Replace your Core Data Stack with [an instance of ANDYDataStack](https://github.com/NSElvis/ANDYDataStack/blob/master/Demo/Demo/AppDelegate/ANDYAppDelegate.m#L27): +Replace your Core Data Stack with [an instance of DATAStack](https://github.com/NSElvis/DATAStack/blob/master/Demo/Demo/AppDelegate/ANDYAppDelegate.m#L27): ```objc - (void)applicationWillTerminate:(UIApplication *)application @@ -119,7 +119,7 @@ Your fields should match their JSON counterparts. For example `first_name` maps There are only two exceptions to this rule: -* `id`s should match `entityNameID`, for example for an entity user the `id` should match `userID` +* `id`s should match `entityNameID`, for example for an entity user the `id` should match `remoteID` * `created_at` and `updated_at` should match `createdDate` and `updatedDate` ### Networking diff --git a/Source/Kipu.h b/Source/Kipu.h index e1ead573..8e820897 100644 --- a/Source/Kipu.h +++ b/Source/Kipu.h @@ -1,24 +1,24 @@ @import CoreData; -@class ANDYDataStack; +@class DATAStack; @interface Kipu : NSObject + (void)processChanges:(NSArray *)changes usingEntityName:(NSString *)entityName - dataStack:(ANDYDataStack *)dataStack + dataStack:(DATAStack *)dataStack completion:(void (^)(NSError *error))completion; + (void)processChanges:(NSArray *)changes usingEntityName:(NSString *)entityName predicate:(NSPredicate *)predicate - dataStack:(ANDYDataStack *)dataStack + dataStack:(DATAStack *)dataStack completion:(void (^)(NSError *error))completion; + (void)processChanges:(NSArray *)changes usingEntityName:(NSString *)entityName parent:(NSManagedObject *)parent - dataStack:(ANDYDataStack *)dataStack + dataStack:(DATAStack *)dataStack completion:(void (^)(NSError *error))completion; + (void)processChanges:(NSArray *)changes diff --git a/Source/Kipu.m b/Source/Kipu.m index 3bd01215..38416ddf 100644 --- a/Source/Kipu.m +++ b/Source/Kipu.m @@ -3,7 +3,7 @@ #import "NSDictionary+ANDYSafeValue.h" #import "NSManagedObject+HYPPropertyMapper.h" #import "NSManagedObject+ANDYMapChanges.h" -#import "ANDYDataStack.h" +#import "DATAStack.h" @interface NSManagedObject (Kipu) @@ -27,7 +27,7 @@ @implementation Kipu + (void)processChanges:(NSArray *)changes usingEntityName:(NSString *)entityName - dataStack:(ANDYDataStack *)dataStack + dataStack:(DATAStack *)dataStack completion:(void (^)(NSError *error))completion { [self processChanges:changes @@ -40,10 +40,10 @@ + (void)processChanges:(NSArray *)changes + (void)processChanges:(NSArray *)changes usingEntityName:(NSString *)entityName predicate:(NSPredicate *)predicate - dataStack:(ANDYDataStack *)dataStack + dataStack:(DATAStack *)dataStack completion:(void (^)(NSError *error))completion { - [dataStack performInBackgroundThreadContext:^(NSManagedObjectContext *context) { + [dataStack performInNewBackgroundThreadContext:^(NSManagedObjectContext *context) { [self processChanges:changes usingEntityName:entityName @@ -57,10 +57,10 @@ + (void)processChanges:(NSArray *)changes + (void)processChanges:(NSArray *)changes usingEntityName:(NSString *)entityName parent:(NSManagedObject *)parent - dataStack:(ANDYDataStack *)dataStack + dataStack:(DATAStack *)dataStack completion:(void (^)(NSError *error))completion { - [dataStack performInBackgroundThreadContext:^(NSManagedObjectContext *context) { + [dataStack performInNewBackgroundThreadContext:^(NSManagedObjectContext *context) { NSManagedObject *safeParent = [parent kipu_copyInContext:context]; NSPredicate *predicate = [NSPredicate predicateWithFormat:@"%K = %@", parent.entity.name, safeParent]; @@ -112,7 +112,7 @@ + (NSManagedObject *)safeObjectInContext:(NSManagedObjectContext *)context { NSError *error = nil; NSFetchRequest *request = [[NSFetchRequest alloc] initWithEntityName:entityName]; - NSString *localKey = [NSString stringWithFormat:@"%@ID", [entityName lowercaseString]]; + NSString *localKey = @"remoteID"; request.predicate = [NSPredicate predicateWithFormat:@"%K = %@", localKey, remoteID]; NSArray *objects = [context executeFetchRequest:request error:&error]; @@ -126,7 +126,7 @@ @implementation NSManagedObject (Kipu) - (NSManagedObject *)kipu_copyInContext:(NSManagedObjectContext *)context { - NSString *localKey = [NSString stringWithFormat:@"%@ID", [self.entity.name lowercaseString]]; + NSString *localKey = @"remoteID"; NSString *remoteID = [self valueForKey:localKey]; return [Kipu safeObjectInContext:context entityName:self.entity.name remoteID:remoteID]; @@ -192,7 +192,7 @@ - (void)kipu_processToManyRelationship:(NSRelationshipDescription *)relationship if (inverseIsToMany) { NSArray *childIDs = [childs valueForKey:@"id"]; - NSString *destinationKey = [NSString stringWithFormat:@"%@ID", [childEntityName lowercaseString]]; + NSString *destinationKey = @"remoteID"; if (childIDs.count == 1) { childPredicate = [NSPredicate predicateWithFormat:@"%K = %@", destinationKey, [[childs valueForKey:@"id"] firstObject]]; } else { diff --git a/Tests/DemoTests/Model.xcdatamodeld/Demo.xcdatamodel/contents b/Tests/DemoTests/Model.xcdatamodeld/Demo.xcdatamodel/contents index 26057c8b..93df05e5 100644 --- a/Tests/DemoTests/Model.xcdatamodeld/Demo.xcdatamodel/contents +++ b/Tests/DemoTests/Model.xcdatamodeld/Demo.xcdatamodel/contents @@ -1,34 +1,34 @@ - + - + - + - + + - - - + + + - \ No newline at end of file diff --git a/Tests/DemoTests/Tests.m b/Tests/DemoTests/Tests.m index bd31673e..823f761f 100755 --- a/Tests/DemoTests/Tests.m +++ b/Tests/DemoTests/Tests.m @@ -4,23 +4,23 @@ #import "Kipu.h" #import "NSJSONSerialization+ANDYJSONFile.h" -#import "ANDYDataStack.h" +#import "DATAStack.h" @interface Tests : XCTestCase -@property (nonatomic, strong) ANDYDataStack *dataStack; +@property (nonatomic, strong) DATAStack *dataStack; @end @implementation Tests -- (ANDYDataStack *)dataStack +- (DATAStack *)dataStack { if (_dataStack) return _dataStack; - _dataStack = [[ANDYDataStack alloc] initWithModelName:@"Model" - bundle:[NSBundle bundleForClass:[self class]] - storeType:ANDYDataInMemoryStoreType]; + _dataStack = [[DATAStack alloc] initWithModelName:@"Model" + bundle:[NSBundle bundleForClass:[self class]] + storeType:DATAStackInMemoryStoreType]; return _dataStack; } @@ -29,7 +29,7 @@ - (ANDYDataStack *)dataStack - (void)tearDown { - [self.dataStack destroy]; + [self.dataStack drop]; self.dataStack = nil; [super tearDown]; @@ -95,7 +95,7 @@ - (void)testLoadAndUpdateUsers return; } - request.predicate = [NSPredicate predicateWithFormat:@"userID == %@", @7]; + request.predicate = [NSPredicate predicateWithFormat:@"remoteID == %@", @7]; NSArray *results = [mainContext executeFetchRequest:request error:nil]; NSManagedObject *result = [results firstObject]; XCTAssertEqualObjects([result valueForKey:@"email"], @"secondupdated@ovium.com"); @@ -136,7 +136,7 @@ - (void)testRelationships XCTAssertEqual(usersCount, 4); NSError *userFetchError = nil; - userRequest.predicate = [NSPredicate predicateWithFormat:@"userID = %@", @6]; + userRequest.predicate = [NSPredicate predicateWithFormat:@"remoteID = %@", @6]; NSArray *users = [mainThreadContext executeFetchRequest:userRequest error:&userFetchError]; if (userFetchError) NSLog(@"userFetchError: %@", userFetchError); NSManagedObject *user = [users firstObject]; @@ -163,12 +163,12 @@ - (void)testObjectsForParent NSArray *objects = [NSJSONSerialization JSONObjectWithContentsOfFile:@"notes_for_user_a.json" inBundle:bundle]; - NSManagedObjectContext *background = [self.dataStack backgroundThreadContext]; + NSManagedObjectContext *background = [self.dataStack newBackgroundThreadContext]; [background performBlock:^{ NSManagedObject *user = [NSEntityDescription insertNewObjectForEntityForName:@"User" inManagedObjectContext:background]; - [user setValue:@6 forKey:@"userID"]; + [user setValue:@6 forKey:@"remoteID"]; [user setValue:@"Shawn Merrill" forKey:@"name"]; [user setValue:@"firstupdate@ovium.com" forKey:@"email"]; @@ -178,37 +178,37 @@ - (void)testObjectsForParent NSManagedObjectContext *mainThreadContext = [self.dataStack mainThreadContext]; [mainThreadContext performBlockAndWait:^{ - [self.dataStack persistContext]; - - NSFetchRequest *userRequest = [[NSFetchRequest alloc] initWithEntityName:@"User"]; - userRequest.predicate = [NSPredicate predicateWithFormat:@"userID = %@", @6]; - NSArray *users = [mainThreadContext executeFetchRequest:userRequest error:nil]; - if (users.count != 1) abort(); - - [Kipu processChanges:objects - usingEntityName:@"Note" - parent:[users firstObject] - dataStack:self.dataStack - completion:^(NSError *error) { - NSManagedObjectContext *mainThreadContext = [self.dataStack mainThreadContext]; - - NSError *userFetchError = nil; - NSFetchRequest *userRequest = [[NSFetchRequest alloc] initWithEntityName:@"User"]; - userRequest.predicate = [NSPredicate predicateWithFormat:@"userID = %@", @6]; - NSArray *users = [mainThreadContext executeFetchRequest:userRequest error:&userFetchError]; - if (userFetchError) NSLog(@"userFetchError: %@", userFetchError); - NSManagedObject *user = [users firstObject]; - XCTAssertEqualObjects([user valueForKey:@"name"], @"Shawn Merrill"); - - NSError *notesError = nil; - NSFetchRequest *noteRequest = [[NSFetchRequest alloc] initWithEntityName:@"Note"]; - noteRequest.predicate = [NSPredicate predicateWithFormat:@"user = %@", user]; - NSInteger notesCount = [mainThreadContext countForFetchRequest:noteRequest error:¬esError]; - if (notesError) NSLog(@"notesError: %@", notesError); - XCTAssertEqual(notesCount, 5); - - [expectation fulfill]; - }]; + [self.dataStack persistWithCompletion:^{ + NSFetchRequest *userRequest = [[NSFetchRequest alloc] initWithEntityName:@"User"]; + userRequest.predicate = [NSPredicate predicateWithFormat:@"remoteID = %@", @6]; + NSArray *users = [mainThreadContext executeFetchRequest:userRequest error:nil]; + if (users.count != 1) abort(); + + [Kipu processChanges:objects + usingEntityName:@"Note" + parent:[users firstObject] + dataStack:self.dataStack + completion:^(NSError *error) { + NSManagedObjectContext *mainThreadContext = [self.dataStack mainThreadContext]; + + NSError *userFetchError = nil; + NSFetchRequest *userRequest = [[NSFetchRequest alloc] initWithEntityName:@"User"]; + userRequest.predicate = [NSPredicate predicateWithFormat:@"remoteID = %@", @6]; + NSArray *users = [mainThreadContext executeFetchRequest:userRequest error:&userFetchError]; + if (userFetchError) NSLog(@"userFetchError: %@", userFetchError); + NSManagedObject *user = [users firstObject]; + XCTAssertEqualObjects([user valueForKey:@"name"], @"Shawn Merrill"); + + NSError *notesError = nil; + NSFetchRequest *noteRequest = [[NSFetchRequest alloc] initWithEntityName:@"Note"]; + noteRequest.predicate = [NSPredicate predicateWithFormat:@"user = %@", user]; + NSInteger notesCount = [mainThreadContext countForFetchRequest:noteRequest error:¬esError]; + if (notesError) NSLog(@"notesError: %@", notesError); + XCTAssertEqual(notesCount, 5); + + [expectation fulfill]; + }]; + }]; }]; }]; @@ -237,7 +237,7 @@ - (void)testTaggedNotesForUser XCTAssertEqual(numberOfNotes, 5); NSError *notesFetchError = nil; - notesRequest.predicate = [NSPredicate predicateWithFormat:@"noteID = %@", @0]; + notesRequest.predicate = [NSPredicate predicateWithFormat:@"remoteID = %@", @0]; NSArray *notes = [mainThreadContext executeFetchRequest:notesRequest error:¬esFetchError]; if (notesFetchError) NSLog(@"notesFetchError: %@", notesFetchError); NSManagedObject *note = [notes firstObject]; @@ -251,7 +251,7 @@ - (void)testTaggedNotesForUser XCTAssertEqual(numberOfTags, 2); NSError *tagsFetchError = nil; - tagsRequest.predicate = [NSPredicate predicateWithFormat:@"tagID = %@", @1]; + tagsRequest.predicate = [NSPredicate predicateWithFormat:@"remoteID = %@", @1]; NSArray *tags = [mainThreadContext executeFetchRequest:tagsRequest error:&tagsFetchError]; if (tagsFetchError) NSLog(@"tagsFetchError: %@", tagsFetchError); NSManagedObject *tag = [tags firstObject]; @@ -286,7 +286,7 @@ - (void)testUsersAndCompanies XCTAssertEqual(numberOfUsers, 5); NSError *usersFetchError = nil; - usersRequest.predicate = [NSPredicate predicateWithFormat:@"userID = %@", @0]; + usersRequest.predicate = [NSPredicate predicateWithFormat:@"remoteID = %@", @0]; NSArray *users = [mainThreadContext executeFetchRequest:usersRequest error:&usersFetchError]; if (usersFetchError) NSLog(@"usersFetchError: %@", usersFetchError); NSManagedObject *user = [users firstObject]; @@ -299,7 +299,7 @@ - (void)testUsersAndCompanies XCTAssertEqual(numberOfCompanies, 2); NSError *companiesFetchError = nil; - companiesRequest.predicate = [NSPredicate predicateWithFormat:@"companyID = %@", @1]; + companiesRequest.predicate = [NSPredicate predicateWithFormat:@"remoteID = %@", @1]; NSArray *companies = [mainThreadContext executeFetchRequest:companiesRequest error:&companiesFetchError]; if (companiesFetchError) NSLog(@"companiesFetchError: %@", companiesFetchError); NSManagedObject *company = [companies firstObject]; diff --git a/Tests/Podfile b/Tests/Podfile index f3aeff9d..286ff44b 100644 --- a/Tests/Podfile +++ b/Tests/Podfile @@ -2,7 +2,7 @@ source 'https://github.com/CocoaPods/Specs.git' platform :ios, '7.0' -pod 'ANDYDataStack' +pod 'DATAStack' # Categories pod 'NSJSONSerialization-ANDYJSONFile' diff --git a/Tests/Podfile.lock b/Tests/Podfile.lock index c19a74ed..6820f323 100644 --- a/Tests/Podfile.lock +++ b/Tests/Podfile.lock @@ -1,28 +1,28 @@ PODS: - - ANDYDataStack (2.0.2) + - DATAStack (2.2.3) - NSDictionary-ANDYSafeValue (0.3) - NSJSONSerialization-ANDYJSONFile (1.1) - - NSManagedObject-ANDYMapChanges (0.5.1): + - NSManagedObject-ANDYMapChanges (0.6): - NSManagedObject-ANDYObjectIDs - NSManagedObject-ANDYObjectIDs (0.1) - - NSManagedObject-HYPPropertyMapper (2.8): + - NSManagedObject-HYPPropertyMapper (2.8.1): - NSString-HYPNetworking - NSString-HYPNetworking (0.1) DEPENDENCIES: - - ANDYDataStack + - DATAStack - NSDictionary-ANDYSafeValue - NSJSONSerialization-ANDYJSONFile - NSManagedObject-ANDYMapChanges - NSManagedObject-HYPPropertyMapper SPEC CHECKSUMS: - ANDYDataStack: 381f77da0875647cdc64d53c17dd01291ea00e02 + DATAStack: 0dc349315b3416d1347f6b45dd571d812c8dff6c NSDictionary-ANDYSafeValue: ddd983e316a52201a40c70f4ab9ead8a63c569b6 NSJSONSerialization-ANDYJSONFile: 238ae79c050f8ed5a735448db8b0e1c9e9b0f587 - NSManagedObject-ANDYMapChanges: 224cd299f56bbcb8466f495a22666aac877a4301 + NSManagedObject-ANDYMapChanges: f5d20e903eafecb844adfa1a7e355a1f8cf083a8 NSManagedObject-ANDYObjectIDs: d27bb3014026506848a8d164f3019ecaa2a4baca - NSManagedObject-HYPPropertyMapper: 1ad1837dc3e6e7e8a046010adacfd3fad8f084cd + NSManagedObject-HYPPropertyMapper: 13abcf971f00cf098ed5e148b1aa7fa2801f9e6a NSString-HYPNetworking: 941953383edbba2abd72014e4bfdd55fa4af8dff COCOAPODS: 0.35.0 diff --git a/Tests/Pods/ANDYDataStack/ANDYDataStack/ANDYDataStack.h b/Tests/Pods/ANDYDataStack/ANDYDataStack/ANDYDataStack.h deleted file mode 100644 index ea575301..00000000 --- a/Tests/Pods/ANDYDataStack/ANDYDataStack/ANDYDataStack.h +++ /dev/null @@ -1,65 +0,0 @@ -@import Foundation; -@import CoreData; - - -typedef NS_ENUM(NSInteger, ANDYDataStoreType) { - ANDYDataInMemoryStoreType = 0, - ANDYDataSQLiteStoreType -}; - -@interface ANDYDataStack : NSObject - -/*! - * @discussion Creates an instance of ANDYDataStack with SQLiteStoreType using the app's name as a Core Data model name. - * @return An instance of @c ANDYDataStack or @c nil if the model is not found. - */ -- (instancetype)init; - -/*! - * @discussion Creates an instance of ANDYDataStack with SQLiteStoreType. - * @param modelName The name of the Core Data model. - * @return An instance of @c ANDYDataStack or @c nil if the model is not found. - */ -- (instancetype)initWithModelName:(NSString *)modelName; - -/*! - * @discussion Creates an instance of ANDYDataStack with SQLiteStoreType. - * @param modelName The name of the Core Data model. - * @param bundle The bundle where the Core Data model is located. - * @param storeType The store type, either @c SQLite or @c InMemory. - * @return An instance of @c ANDYDataStack or @c nil if the model is not found. - */ -- (instancetype)initWithModelName:(NSString *)modelName - bundle:(NSBundle *)bundle - storeType:(ANDYDataStoreType)storeType NS_DESIGNATED_INITIALIZER; - -/*! - * Provides a NSManagedObjectContext appropriate for use on the main - * thread. - */ -@property (strong, nonatomic, readonly) NSManagedObjectContext *mainThreadContext; - -/*! - * Provides a safe way to perform an operation in a background - * operation by using a context. - */ -- (void)performInBackgroundThreadContext:(void (^)(NSManagedObjectContext *context))operation; - -/*! - * Provides a new private context bound to the mainThreadContext for a - * performant background operation. - * \returns A background NSManagedObjectContext. - */ -- (NSManagedObjectContext *)backgroundThreadContext; - -/*! - * Saves current state of mainContext into the database. - */ -- (void)persistContext; - -/*! - * Destroys state of ANDYDataStack. - */ -- (void)destroy; - -@end diff --git a/Tests/Pods/ANDYDataStack/LICENSE b/Tests/Pods/DATAStack/LICENSE.md similarity index 100% rename from Tests/Pods/ANDYDataStack/LICENSE rename to Tests/Pods/DATAStack/LICENSE.md diff --git a/Tests/Pods/ANDYDataStack/README.md b/Tests/Pods/DATAStack/README.md similarity index 69% rename from Tests/Pods/ANDYDataStack/README.md rename to Tests/Pods/DATAStack/README.md index 9389f89b..e31ebc06 100644 --- a/Tests/Pods/ANDYDataStack/README.md +++ b/Tests/Pods/DATAStack/README.md @@ -1,12 +1,11 @@ -ANDYDataStack -=================== +![DATAStack](https://github.com/NSElvis/DATAStack/blob/master/Images/datastack-logo.png) -This is class that helps you to aliviate the Core Data boilerplate. Now you can go to your AppDelegate remove all the Core Data related code and replace it [with an instance of ANDYDataStack](https://github.com/NSElvis/ANDYDataStack/blob/master/Demo/Demo/AppDelegate/ANDYAppDelegate.m#L38). +This is class that helps you to aliviate the Core Data boilerplate. Now you can go to your AppDelegate remove all the Core Data related code and replace it with [an instance of DATAStack](https://github.com/NSElvis/DATAStack/blob/master/Demo/Demo/AppDelegate/ANDYAppDelegate.m#L27). ``` objc - (void)applicationWillTerminate:(UIApplication *)application { - [self.dataStack persistContext]; + [self.dataStack persistWithCompletion:nil]; } ``` @@ -17,7 +16,7 @@ Then in your NSFetchedResultsController backed app (attached to your main contex - (void)createTask { - [self.dataStack performInBackgroundContext:^(NSManagedObjectContext *context) { + [self.dataStack performInNewBackgroundThreadContext:^(NSManagedObjectContext *context) { Task *task = [Task insertInManagedObjectContext:context]; task.title = @"Hello!"; task.date = [NSDate date]; diff --git a/Tests/Pods/DATAStack/Source/DATAStack.h b/Tests/Pods/DATAStack/Source/DATAStack.h new file mode 100644 index 00000000..3f4c6d87 --- /dev/null +++ b/Tests/Pods/DATAStack/Source/DATAStack.h @@ -0,0 +1,65 @@ +@import Foundation; +@import CoreData; + + +typedef NS_ENUM(NSInteger, DATAStackStoreType) { + DATAStackInMemoryStoreType = 0, + DATAStackSQLiteStoreType +}; + +@interface DATAStack : NSObject + +/*! + * @discussion Creates an instance of DATAStack with SQLiteStoreType using the app's name as a Core Data model name. + * @return An instance of @c DATAStack or @c nil if the model is not found. + */ +- (instancetype)init; + +/*! + * @discussion Creates an instance of DATAStack with SQLiteStoreType. + * @param modelName The name of the Core Data model. + * @return An instance of @c DATAStack or @c nil if the model is not found. + */ +- (instancetype)initWithModelName:(NSString *)modelName; + +/*! + * @discussion Creates an instance of DATAStack with SQLiteStoreType. + * @param modelName The name of the Core Data model. + * @param bundle The bundle where the Core Data model is located. + * @param storeType The store type, either @c SQLite or @c InMemory. + * @return An instance of @c DATAStack or @c nil if the model is not found. + */ +- (instancetype)initWithModelName:(NSString *)modelName + bundle:(NSBundle *)bundle + storeType:(DATAStackStoreType)storeType NS_DESIGNATED_INITIALIZER; + +/*! + * Provides a NSManagedObjectContext appropriate for use on the main + * thread. + */ +@property (strong, nonatomic, readonly) NSManagedObjectContext *mainThreadContext; + +/*! + * Provides a safe way to perform an operation in a background + * operation by using a context. + */ +- (void)performInNewBackgroundThreadContext:(void (^)(NSManagedObjectContext *context))operation; + +/*! + * Provides a new private context bound to the mainThreadContext for a + * performant background operation. + * \returns A background NSManagedObjectContext. + */ +- (NSManagedObjectContext *)newBackgroundThreadContext; + +/*! + * Persists the current in-memory state into the database. + */ +- (void)persistWithCompletion:(void (^)())completion; + +/*! + * Destroys state of DATAStack and deletes the SQLite file. + */ +- (void)drop; + +@end diff --git a/Example/Pods/ANDYDataStack/ANDYDataStack/ANDYDataStack.m b/Tests/Pods/DATAStack/Source/DATAStack.m similarity index 60% rename from Example/Pods/ANDYDataStack/ANDYDataStack/ANDYDataStack.m rename to Tests/Pods/DATAStack/Source/DATAStack.m index 53ad6e4c..1a2360e5 100644 --- a/Example/Pods/ANDYDataStack/ANDYDataStack/ANDYDataStack.m +++ b/Tests/Pods/DATAStack/Source/DATAStack.m @@ -1,21 +1,22 @@ -#import "ANDYDataStack.h" +#import "DATAStack.h" @import UIKit; -@interface ANDYDataStack () +@interface DATAStack () @property (strong, nonatomic, readwrite) NSManagedObjectContext *mainThreadContext; @property (strong, nonatomic) NSManagedObjectContext *writerContext; -@property (strong, nonatomic) NSManagedObjectModel *managedObjectModel; @property (strong, nonatomic) NSPersistentStoreCoordinator *persistentStoreCoordinator; -@property (nonatomic) ANDYDataStoreType storeType; +@property (nonatomic) DATAStackStoreType storeType; @property (nonatomic, copy) NSString *modelName; @property (nonatomic, strong) NSBundle *modelBundle; @end -@implementation ANDYDataStack +@implementation DATAStack + +#pragma mark - Initializers - (instancetype)init { @@ -31,12 +32,12 @@ - (instancetype)initWithModelName:(NSString *)modelName return [self initWithModelName:modelName bundle:bundle - storeType:ANDYDataSQLiteStoreType]; + storeType:DATAStackSQLiteStoreType]; } - (instancetype)initWithModelName:(NSString *)modelName bundle:(NSBundle *)bundle - storeType:(ANDYDataStoreType)storeType + storeType:(DATAStackStoreType)storeType { self = [super init]; if (!self) return nil; @@ -45,87 +46,12 @@ - (instancetype)initWithModelName:(NSString *)modelName _modelBundle = bundle; _storeType = storeType; - return self; -} - -#pragma mark - Private methods - -- (void)setUpSaveNotificationForContext:(NSManagedObjectContext *)context -{ - [[NSNotificationCenter defaultCenter] addObserverForName:NSManagedObjectContextDidSaveNotification - object:context - queue:nil - usingBlock:^(NSNotification *notification) { - if (![NSThread isMainThread]) { - [NSException raise:@"ANDY_MAIN_THREAD_CREATION_EXCEPTION" - format:@"Main context saved in background thread. Use context's `performBlock`"]; - } else { - if (![notification.object isEqual:context]) { - [context performBlock:^(){ - [context mergeChangesFromContextDidSaveNotification:notification]; - }]; - } - } - }]; -} - -- (void)saveContext -{ - NSManagedObjectContext *managedObjectContext = self.mainThreadContext; - [managedObjectContext performBlock:^{ - if (managedObjectContext != nil) { - NSError *error = nil; - if ([managedObjectContext hasChanges] && ![managedObjectContext save:&error]) { - NSLog(@"Unresolved error %@, %@", error, [error userInfo]); - abort(); - } - } - }]; -} - -- (void)persistContext -{ - NSManagedObjectContext *writerManagedObjectContext = self.writerContext; - NSManagedObjectContext *managedObjectContext = self.mainThreadContext; - - [managedObjectContext performBlock:^{ - NSError *error = nil; - if ([managedObjectContext save:&error]) { - [writerManagedObjectContext performBlock:^{ - NSError *parentError = nil; - if (![writerManagedObjectContext save:&parentError]) { - NSLog(@"Unresolved error saving parent managed object context %@, %@", error, [error userInfo]); - abort(); - } - }]; - } else { - NSLog(@"Unresolved error saving managed object context %@, %@", error, [error userInfo]); - abort(); - } - }]; -} - -- (void)resetContext -{ - NSManagedObjectContext *writerManagedObjectContext = self.writerContext; - NSManagedObjectContext *managedObjectContext = self.mainThreadContext; - - [managedObjectContext performBlock:^{ - [managedObjectContext reset]; - [writerManagedObjectContext performBlock:^{ - [writerManagedObjectContext reset]; - }]; - }]; -} + if (!self.persistentStoreCoordinator) NSLog(@"Error setting up data stack"); -#if !TARGET_IPHONE_SIMULATOR -- (BOOL)addSkipBackupAttributeToItemAtURL:(NSURL *)URL -{ - return [URL setResourceValue:[NSNumber numberWithBool:YES] forKey:NSURLIsExcludedFromBackupKey error:nil]; + return self; } -#endif -#pragma mark - Core Data stack +#pragma mark - Getters - (NSManagedObjectContext *)mainThreadContext { @@ -136,8 +62,6 @@ - (NSManagedObjectContext *)mainThreadContext _mainThreadContext.parentContext = self.writerContext; _mainThreadContext.mergePolicy = NSMergeByPropertyStoreTrumpMergePolicy; - [self setUpSaveNotificationForContext:_mainThreadContext]; - return _mainThreadContext; } @@ -153,17 +77,6 @@ - (NSManagedObjectContext *)writerContext return _writerContext; } -- (NSManagedObjectModel *)managedObjectModel -{ - if (_managedObjectModel) return _managedObjectModel; - - NSBundle *bundle = (self.modelBundle) ?: [NSBundle mainBundle]; - NSURL *modelURL = [bundle URLForResource:self.modelName withExtension:@"momd"]; - _managedObjectModel = [[NSManagedObjectModel alloc] initWithContentsOfURL:modelURL]; - - return _managedObjectModel; -} - - (NSPersistentStoreCoordinator *)persistentStoreCoordinator { if (_persistentStoreCoordinator) return _persistentStoreCoordinator; @@ -173,36 +86,45 @@ - (NSPersistentStoreCoordinator *)persistentStoreCoordinator NSString *filePath = [NSString stringWithFormat:@"%@.sqlite", self.modelName]; storeURL = [[self applicationDocumentsDirectory] URLByAppendingPathComponent:filePath]; - NSDictionary *options = @{NSMigratePersistentStoresAutomaticallyOption: @YES, NSInferMappingModelAutomaticallyOption: @YES}; + NSDictionary *options = @{ NSMigratePersistentStoresAutomaticallyOption: @YES, + NSInferMappingModelAutomaticallyOption: @YES }; NSString *storeType; switch (self.storeType) { - case ANDYDataInMemoryStoreType: + case DATAStackInMemoryStoreType: storeType = NSInMemoryStoreType; break; - case ANDYDataSQLiteStoreType: + case DATAStackSQLiteStoreType: storeType = NSSQLiteStoreType; break; } - NSError *error = nil; + NSBundle *bundle = (self.modelBundle) ?: [NSBundle mainBundle]; + NSURL *modelURL = [bundle URLForResource:self.modelName withExtension:@"momd"]; + if (!modelURL) { + NSLog(@"Model with model name {%@} not found in bundle {%@}", self.modelName, bundle); + abort(); + } + + NSManagedObjectModel *model = [[NSManagedObjectModel alloc] initWithContentsOfURL:modelURL]; - _persistentStoreCoordinator = [[NSPersistentStoreCoordinator alloc] initWithManagedObjectModel:[self managedObjectModel]]; + _persistentStoreCoordinator = [[NSPersistentStoreCoordinator alloc] initWithManagedObjectModel:model]; + NSError *addPersistentStoreError = nil; if (![_persistentStoreCoordinator addPersistentStoreWithType:storeType configuration:nil URL:storeURL options:options - error:&error]) { + error:&addPersistentStoreError]) { [[NSFileManager defaultManager] removeItemAtPath:storeURL.path error:nil]; if (![_persistentStoreCoordinator addPersistentStoreWithType:storeType configuration:nil URL:storeURL options:options - error:&error]) { - NSLog(@"Unresolved error %@, %@", error, [error userInfo]); + error:&addPersistentStoreError]) { + NSLog(@"Unresolved error %@, %@", addPersistentStoreError, [addPersistentStoreError userInfo]); abort(); } @@ -215,12 +137,45 @@ - (NSPersistentStoreCoordinator *)persistentStoreCoordinator } #if !TARGET_IPHONE_SIMULATOR - [self addSkipBackupAttributeToItemAtURL:storeURL]; + NSError *excludeSQLiteFileFromBackupsError = nil; + if (![storeURL setResourceValue:@YES + forKey:NSURLIsExcludedFromBackupKey + error:&excludeSQLiteFileFromBackupsError]) { + NSLog(@"Excluding SQLite file from backup caused an error: %@", [excludeSQLiteFileFromBackupsError description]); + }; #endif return _persistentStoreCoordinator; } +#pragma mark - Private methods + +- (void)persistWithCompletion:(void (^)())completion +{ + NSManagedObjectContext *writerManagedObjectContext = self.writerContext; + NSManagedObjectContext *managedObjectContext = self.mainThreadContext; + + [managedObjectContext performBlock:^{ + NSError *error = nil; + if ([managedObjectContext save:&error]) { + [writerManagedObjectContext performBlock:^{ + NSError *parentError = nil; + if ([writerManagedObjectContext save:&parentError]) { + dispatch_async(dispatch_get_main_queue(), ^{ + if (completion) completion(); + }); + } else { + NSLog(@"Unresolved error saving parent managed object context %@, %@", error, [error userInfo]); + abort(); + } + }]; + } else { + NSLog(@"Unresolved error saving managed object context %@, %@", error, [error userInfo]); + abort(); + } + }]; +} + #pragma mark - Application's Documents directory - (NSURL *)applicationDocumentsDirectory @@ -231,17 +186,15 @@ - (NSURL *)applicationDocumentsDirectory #pragma mark - Public methods -- (void)performInBackgroundThreadContext:(void (^)(NSManagedObjectContext *context))operation +- (void)performInNewBackgroundThreadContext:(void (^)(NSManagedObjectContext *context))operation { - NSManagedObjectContext *context = [self backgroundThreadContext]; + NSManagedObjectContext *context = [self newBackgroundThreadContext]; [context performBlock:^{ - if (operation) { - operation(context); - } + if (operation) operation(context); }]; } -- (NSManagedObjectContext *)backgroundThreadContext +- (NSManagedObjectContext *)newBackgroundThreadContext { NSManagedObjectContext *context = [[NSManagedObjectContext alloc] initWithConcurrencyType:NSPrivateQueueConcurrencyType]; context.persistentStoreCoordinator = self.persistentStoreCoordinator; @@ -252,34 +205,33 @@ - (NSManagedObjectContext *)backgroundThreadContext selector:@selector(backgroundThreadDidSave:) name:NSManagedObjectContextDidSaveNotification object:context]; + return context; } #pragma mark - Observers -- (void)backgroundThreadDidSave:(NSNotification *)notification +- (void)backgroundThreadDidSave:(NSNotification *)backgroundThreadNotification { if ([NSThread isMainThread]) { - [NSException raise:@"ANDY_BACKGROUND_THREAD_CREATION_EXCEPTION" + [NSException raise:@"DATASTACK_BACKGROUND_THREAD_CREATION_EXCEPTION" format:@"Background context saved in the main thread. Use context's `performBlock`"]; } else { - // sync changes made on the background thread's context to the main thread's context - [self.mainThreadContext performBlock:^(){ - [self.mainThreadContext mergeChangesFromContextDidSaveNotification:notification]; + [self.mainThreadContext performBlock:^{ + [self.mainThreadContext mergeChangesFromContextDidSaveNotification:backgroundThreadNotification]; }]; } } #pragma mark - Test -- (void)destroy +- (void)drop { NSPersistentStore *store = [self.persistentStoreCoordinator.persistentStores lastObject]; NSURL *storeURL = store.URL; self.writerContext = nil; self.mainThreadContext = nil; - self.managedObjectModel = nil; self.persistentStoreCoordinator = nil; NSFileManager *fileManager = [NSFileManager defaultManager]; diff --git a/Tests/Pods/Headers/Public/ANDYDataStack/ANDYDataStack.h b/Tests/Pods/Headers/Public/ANDYDataStack/ANDYDataStack.h deleted file mode 120000 index 498e0551..00000000 --- a/Tests/Pods/Headers/Public/ANDYDataStack/ANDYDataStack.h +++ /dev/null @@ -1 +0,0 @@ -../../../ANDYDataStack/ANDYDataStack/ANDYDataStack.h \ No newline at end of file diff --git a/Tests/Pods/Headers/Public/DATAStack/DATAStack.h b/Tests/Pods/Headers/Public/DATAStack/DATAStack.h new file mode 120000 index 00000000..6621332e --- /dev/null +++ b/Tests/Pods/Headers/Public/DATAStack/DATAStack.h @@ -0,0 +1 @@ +../../../DATAStack/Source/DATAStack.h \ No newline at end of file diff --git a/Tests/Pods/Manifest.lock b/Tests/Pods/Manifest.lock index c19a74ed..6820f323 100644 --- a/Tests/Pods/Manifest.lock +++ b/Tests/Pods/Manifest.lock @@ -1,28 +1,28 @@ PODS: - - ANDYDataStack (2.0.2) + - DATAStack (2.2.3) - NSDictionary-ANDYSafeValue (0.3) - NSJSONSerialization-ANDYJSONFile (1.1) - - NSManagedObject-ANDYMapChanges (0.5.1): + - NSManagedObject-ANDYMapChanges (0.6): - NSManagedObject-ANDYObjectIDs - NSManagedObject-ANDYObjectIDs (0.1) - - NSManagedObject-HYPPropertyMapper (2.8): + - NSManagedObject-HYPPropertyMapper (2.8.1): - NSString-HYPNetworking - NSString-HYPNetworking (0.1) DEPENDENCIES: - - ANDYDataStack + - DATAStack - NSDictionary-ANDYSafeValue - NSJSONSerialization-ANDYJSONFile - NSManagedObject-ANDYMapChanges - NSManagedObject-HYPPropertyMapper SPEC CHECKSUMS: - ANDYDataStack: 381f77da0875647cdc64d53c17dd01291ea00e02 + DATAStack: 0dc349315b3416d1347f6b45dd571d812c8dff6c NSDictionary-ANDYSafeValue: ddd983e316a52201a40c70f4ab9ead8a63c569b6 NSJSONSerialization-ANDYJSONFile: 238ae79c050f8ed5a735448db8b0e1c9e9b0f587 - NSManagedObject-ANDYMapChanges: 224cd299f56bbcb8466f495a22666aac877a4301 + NSManagedObject-ANDYMapChanges: f5d20e903eafecb844adfa1a7e355a1f8cf083a8 NSManagedObject-ANDYObjectIDs: d27bb3014026506848a8d164f3019ecaa2a4baca - NSManagedObject-HYPPropertyMapper: 1ad1837dc3e6e7e8a046010adacfd3fad8f084cd + NSManagedObject-HYPPropertyMapper: 13abcf971f00cf098ed5e148b1aa7fa2801f9e6a NSString-HYPNetworking: 941953383edbba2abd72014e4bfdd55fa4af8dff COCOAPODS: 0.35.0 diff --git a/Tests/Pods/NSManagedObject-ANDYMapChanges/README.md b/Tests/Pods/NSManagedObject-ANDYMapChanges/README.md index f1f4a830..9de4f022 100644 --- a/Tests/Pods/NSManagedObject-ANDYMapChanges/README.md +++ b/Tests/Pods/NSManagedObject-ANDYMapChanges/README.md @@ -39,10 +39,10 @@ This is a category on NSManagedObject that helps you to evaluate insertions, del ## Local and Remote keys -`localKey` is the name of the local primaryKey, if it's a user it could be `userID`. +`localKey` is the name of the local primaryKey, if it's a user it could be `remoteID`. `remoteKey` is the name of the key from JSON, if it's a user it could be just `id`. -The convenience method that doesn't contain this attributes, fallsback to `modelNameID`(`userID`) for the `localKey` and `id` for the `remoteKey`. +The convenience method that doesn't contain this attributes, fallsback to `remoteID` for the `localKey` and `id` for the `remoteKey`. ## Predicate @@ -69,7 +69,9 @@ To run the example project, clone the repo, and open the `.xcodeproj` from the D **NSManagedObject-ANDYMapChanges** is available through [CocoaPods](http://cocoapods.org). To install it, simply add the following line to your Podfile: -`pod 'NSManagedObject-ANDYMapChanges'` +```ruby +pod 'NSManagedObject-ANDYMapChanges' +``` ## Author diff --git a/Tests/Pods/NSManagedObject-ANDYMapChanges/Source/NSManagedObject+ANDYMapChanges.m b/Tests/Pods/NSManagedObject-ANDYMapChanges/Source/NSManagedObject+ANDYMapChanges.m index 7f069013..43937522 100644 --- a/Tests/Pods/NSManagedObject-ANDYMapChanges/Source/NSManagedObject+ANDYMapChanges.m +++ b/Tests/Pods/NSManagedObject-ANDYMapChanges/Source/NSManagedObject+ANDYMapChanges.m @@ -26,7 +26,7 @@ + (void)andy_mapChanges:(NSArray *)changes updated:(void (^)(NSDictionary *objectDict, NSManagedObject *object))updated { [self andy_mapChanges:changes - localKey:[NSString stringWithFormat:@"%@ID", [entityName lowercaseString]] + localKey:@"remoteID" remoteKey:@"id" usingPredicate:predicate inContext:context diff --git a/Tests/Pods/NSManagedObject-HYPPropertyMapper/Source/NSManagedObject+HYPPropertyMapper.m b/Tests/Pods/NSManagedObject-HYPPropertyMapper/Source/NSManagedObject+HYPPropertyMapper.m index 898b0f68..1101d06b 100644 --- a/Tests/Pods/NSManagedObject-HYPPropertyMapper/Source/NSManagedObject+HYPPropertyMapper.m +++ b/Tests/Pods/NSManagedObject-HYPPropertyMapper/Source/NSManagedObject+HYPPropertyMapper.m @@ -58,30 +58,27 @@ @implementation NSManagedObject (HYPPropertyMapper) - (void)hyp_fillWithDictionary:(NSDictionary *)dictionary { - for (__strong NSString *remoteKey in dictionary) { + for (__strong NSString *key in dictionary) { - id value = [dictionary objectForKey:remoteKey]; + id value = [dictionary objectForKey:key]; - BOOL isReservedKey = ([[NSManagedObject reservedAttributes] containsObject:remoteKey]); - if (isReservedKey) { - remoteKey = [self prefixedAttribute:remoteKey]; - } + BOOL isReservedKey = ([[NSManagedObject reservedAttributes] containsObject:key]); + if (isReservedKey) key = [self prefixedAttribute:key]; - id propertyDescription = [self propertyDescriptionForKey:remoteKey]; + id propertyDescription = [self propertyDescriptionForKey:key]; if (!propertyDescription) continue; NSString *localKey = [propertyDescription name]; - if (value && ![value isKindOfClass:[NSNull class]]) { - + BOOL valueExists = (value && ![value isKindOfClass:[NSNull class]]); + if (valueExists) { id processedValue = [self valueForPropertyDescription:propertyDescription usingRemoteValue:value]; BOOL valueHasChanged = (![[self valueForKey:localKey] isEqual:processedValue]); if (valueHasChanged) [self setValue:processedValue forKey:localKey]; - - } else { - if ([self valueForKey:localKey]) [self setValue:nil forKey:localKey]; + } else if ([self valueForKey:localKey]) { + [self setValue:nil forKey:localKey]; } } } @@ -140,13 +137,16 @@ - (NSDictionary *)hyp_dictionary if (nilOrNullValue) { mutableDictionary[key] = [NSNull null]; } else { - NSMutableString *key = [[[propertyDescription name] hyp_remoteString] mutableCopy]; BOOL isReservedKey = ([[self reservedKeys] containsObject:key]); if (isReservedKey) { - [key replaceOccurrencesOfString:[self remotePrefix] - withString:@"" - options:NSCaseInsensitiveSearch - range:NSMakeRange(0, key.length)]; + if ([key isEqualToString:@"remote_id"]) { + key = [@"id" mutableCopy]; + } else { + [key replaceOccurrencesOfString:[self remotePrefix] + withString:@"" + options:NSCaseInsensitiveSearch + range:NSMakeRange(0, key.length)]; + } } mutableDictionary[key] = value; } @@ -176,7 +176,7 @@ - (NSDictionary *)hyp_dictionary } NSString *attribute = [propertyDescription name]; - NSString *localKey = [NSString stringWithFormat:@"%@ID", [relation.entity.name lowercaseString]]; + NSString *localKey = @"remoteID"; BOOL attributeIsKey = ([localKey isEqualToString:attribute]); NSString *key; @@ -216,7 +216,15 @@ - (NSString *)remotePrefix - (NSString *)prefixedAttribute:(NSString *)attribute { - return [NSString stringWithFormat:@"%@%@", [self remotePrefix], attribute]; + NSString *prefixedAttribute; + + if ([attribute isEqualToString:@"id"]) { + prefixedAttribute = @"remote_id"; + } else { + prefixedAttribute = [NSString stringWithFormat:@"%@%@", [self remotePrefix], attribute]; + } + + return prefixedAttribute; } - (NSArray *)reservedKeys @@ -228,6 +236,8 @@ - (NSArray *)reservedKeys [keys addObject:[self prefixedAttribute:attribute]]; } + [keys addObject:@"remote_id"]; + return keys; } diff --git a/Tests/Pods/Pods.xcodeproj/project.pbxproj b/Tests/Pods/Pods.xcodeproj/project.pbxproj index 269abb17..258dd9ad 100644 --- a/Tests/Pods/Pods.xcodeproj/project.pbxproj +++ b/Tests/Pods/Pods.xcodeproj/project.pbxproj @@ -10,102 +10,27 @@ 46 objects - 045B13196C04B846FA28A5B5 + 00B9D0FF8FEA26A4241442E5 - buildActionMask - 2147483647 - files - - 3635E6497B86A2B0E84F033E - - isa - PBXFrameworksBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - 04A7728680D259C7F2EF882C - - buildConfigurationList - FA7BB144586D0A0D518C123D - buildPhases - - E450A09B713573A05A834248 - 075AD99E9524B61B18EDFAA7 - 40458BB89126AC5A6680816F - - buildRules - - dependencies - - isa - PBXNativeTarget - name - Pods-ANDYDataStack - productName - Pods-ANDYDataStack - productReference - ADB8A54A7710BB67AD62CA99 - productType - com.apple.product-type.library.static - - 05D2F9D0754F85AC42876C12 - - baseConfigurationReference - 57A4C28FA0E881506C553A5B - buildSettings - - ALWAYS_SEARCH_USER_PATHS - NO - COPY_PHASE_STRIP - YES - DSTROOT - /tmp/xcodeproj.dst - GCC_PRECOMPILE_PREFIX_HEADER - YES - GCC_PREFIX_HEADER - Target Support Files/Pods-NSDictionary-ANDYSafeValue/Pods-NSDictionary-ANDYSafeValue-prefix.pch - INSTALL_PATH - $(BUILT_PRODUCTS_DIR) - IPHONEOS_DEPLOYMENT_TARGET - 7.0 - OTHER_CFLAGS - - -DNS_BLOCK_ASSERTIONS=1 - $(inherited) - - OTHER_CPLUSPLUSFLAGS - - -DNS_BLOCK_ASSERTIONS=1 - $(inherited) - - OTHER_LDFLAGS - - OTHER_LIBTOOLFLAGS - - PRODUCT_NAME - $(TARGET_NAME) - PUBLIC_HEADERS_FOLDER_PATH - $(TARGET_NAME) - SDKROOT - iphoneos - SKIP_INSTALL - YES - VALIDATE_PRODUCT - YES - + includeInIndex + 1 isa - XCBuildConfiguration - name - Release + PBXFileReference + lastKnownFileType + text.xcconfig + path + Pods.debug.xcconfig + sourceTree + <group> - 0678A80431A9EF26811C156E + 0113F4C5D90A3A792E1BA461 fileRef - 4533BAD452ACBDB1E066DF83 + B6F5461ED9A8D4E6D6CD1C63 isa PBXBuildFile - 0692C0C4F5B4F036C39C8959 + 01CB2B0136FEC36338E8F90A includeInIndex 1 @@ -114,76 +39,72 @@ lastKnownFileType sourcecode.c.h path - Pods-ANDYDataStack-prefix.pch + Pods-NSManagedObject-HYPPropertyMapper-prefix.pch sourceTree <group> - 075AD99E9524B61B18EDFAA7 + 028F03FC7124D4F5D4623514 buildActionMask 2147483647 files - 32D9DA1D5B3BD2BB3CBCA918 - F3FC7AC9BE3E5DA97C98B869 + 1DCC9885B18FD2F915BE92EA isa PBXFrameworksBuildPhase runOnlyForDeploymentPostprocessing 0 - 085CD5B0C0FC484907F981E9 - - fileRef - 9B917938EE03D6D04EDD636A - isa - PBXBuildFile - - 0881B8CF4B24E5396A95AC57 + 03157B8DB7EAFDD4FD7C44C1 + explicitFileType + archive.ar includeInIndex - 1 + 0 isa PBXFileReference - lastKnownFileType - text.script.sh path - Pods-resources.sh + libPods-NSDictionary-ANDYSafeValue.a sourceTree - <group> + BUILT_PRODUCTS_DIR + + 04343217C8788D7319A9F9D7 + + buildConfigurations + + E8590931FAF0DC9A45DFA72D + 130BD467BD6A551F9A101D66 + + defaultConfigurationIsVisible + 0 + defaultConfigurationName + Release + isa + XCConfigurationList - 08B2992A6DE2E70071AC8842 + 048038B0CC1BA63B3C8A4F81 buildActionMask 2147483647 files - D385552845713519707D4935 - FAC18D9395167AA0CD8A4C8D + A92181E1ACDF08D8EC3E742E + 5EE84B07AA119CB024C22238 isa - PBXFrameworksBuildPhase + PBXSourcesBuildPhase runOnlyForDeploymentPostprocessing 0 - 09246B7B4C0E69CDCCFBD632 + 04D858713E576F286A4CEAA1 - children - - 63B4D407F041125F7B3AD8A1 - 2334988B7DE8379D7EDE6E3D - 29C4117CE1544A081A263E9D - + fileRef + 446799038F4A057CAA6818AE isa - PBXGroup - name - NSManagedObject-HYPPropertyMapper - path - NSManagedObject-HYPPropertyMapper - sourceTree - <group> + PBXBuildFile - 0B44E3834CAEFA39111426E0 + 063C93E3FAE8BA8761176D03 includeInIndex 1 @@ -192,86 +113,95 @@ lastKnownFileType text.xcconfig path - Pods-NSManagedObject-HYPPropertyMapper.xcconfig + Pods-NSDictionary-ANDYSafeValue-Private.xcconfig sourceTree <group> - 0F4433D080AB897281E9F1CF + 086A601741ACF826DFC71551 - fileRef - C28830958346540031462A25 + buildActionMask + 2147483647 + files + + DE0766A0E60801CAE465380A + 5155FB30E628A461D5424EB4 + isa - PBXBuildFile + PBXSourcesBuildPhase + runOnlyForDeploymentPostprocessing + 0 - 100AF025CD78BBE16D966EC2 + 0D3E321D479EBA602E5B9A4F - includeInIndex - 1 + children + + C87C0CADA9CA9177E26F6A98 + B43DDAF5670237B2469646D5 + B5C677822D29E52BF66D6E04 + A2666241A53E25947DF5818A + isa - PBXFileReference - lastKnownFileType - sourcecode.c.h + PBXGroup name - NSString+HYPNetworking.h + Support Files path - Source/NSString+HYPNetworking.h + ../Target Support Files/Pods-NSManagedObject-ANDYObjectIDs sourceTree <group> - 1041727467AB22C147398904 + 0E69A7370F39B07F09502A1D + + isa + PBXTargetDependency + name + Pods-NSManagedObject-ANDYMapChanges + target + AD6E5DC4DAEEE90B3AC7C8E0 + targetProxy + 1DC092F734A22D2F5536B81D + + 10C4D091CC78AA685AE7233B + baseConfigurationReference + 5D8373916645D7DDC4A768DF buildSettings ALWAYS_SEARCH_USER_PATHS NO - 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 - CLANG_WARN_EMPTY_BODY - YES - CLANG_WARN_ENUM_CONVERSION - YES - CLANG_WARN_INT_CONVERSION - YES - CLANG_WARN_OBJC_ROOT_CLASS - YES COPY_PHASE_STRIP - NO - ENABLE_NS_ASSERTIONS - NO - GCC_C_LANGUAGE_STANDARD - gnu99 - GCC_PREPROCESSOR_DEFINITIONS - - RELEASE=1 - - GCC_WARN_64_TO_32_BIT_CONVERSION - YES - GCC_WARN_ABOUT_RETURN_TYPE - YES - GCC_WARN_UNDECLARED_SELECTOR - YES - GCC_WARN_UNINITIALIZED_AUTOS - YES - GCC_WARN_UNUSED_FUNCTION YES - GCC_WARN_UNUSED_VARIABLE + DSTROOT + /tmp/xcodeproj.dst + GCC_PRECOMPILE_PREFIX_HEADER YES + GCC_PREFIX_HEADER + Target Support Files/Pods-NSString-HYPNetworking/Pods-NSString-HYPNetworking-prefix.pch + INSTALL_PATH + $(BUILT_PRODUCTS_DIR) IPHONEOS_DEPLOYMENT_TARGET 7.0 - STRIP_INSTALLED_PRODUCT - NO + OTHER_CFLAGS + + -DNS_BLOCK_ASSERTIONS=1 + $(inherited) + + OTHER_CPLUSPLUSFLAGS + + -DNS_BLOCK_ASSERTIONS=1 + $(inherited) + + OTHER_LDFLAGS + + OTHER_LIBTOOLFLAGS + + PRODUCT_NAME + $(TARGET_NAME) + PUBLIC_HEADERS_FOLDER_PATH + $(TARGET_NAME) + SDKROOT + iphoneos + SKIP_INSTALL + YES VALIDATE_PRODUCT YES @@ -280,75 +210,47 @@ name Release - 1093553A1218E79DCECDB5AB + 1285F87D0334B00CFC02AC78 isa PBXTargetDependency name - Pods-ANDYDataStack + Pods-NSDictionary-ANDYSafeValue target - 04A7728680D259C7F2EF882C + F2A2DCC8E231E828FF92C6F6 targetProxy - 460E4A41C7F12FBFF24F3735 - - 127AC47A6E7D4AA490D3CA29 - - fileRef - E46AC30D25CDFC28DBB0C447 - isa - PBXBuildFile - - 141A984B6CB8536A3819F767 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - Pods-NSManagedObject-ANDYMapChanges-dummy.m - sourceTree - <group> - - 169238BC0A61EDD9C08908F5 - - fileRef - 2334988B7DE8379D7EDE6E3D - isa - PBXBuildFile + 3DFF9E22A00CA19A94E142A1 - 171F113A3095B27E3778A8C2 + 130BD467BD6A551F9A101D66 baseConfigurationReference - 5B0628028ACEAA3B7831D6D5 + C1CFB5C8D29B0BC6156AAFA4 buildSettings ALWAYS_SEARCH_USER_PATHS NO COPY_PHASE_STRIP - NO + YES DSTROOT /tmp/xcodeproj.dst - GCC_DYNAMIC_NO_PIC - NO - GCC_OPTIMIZATION_LEVEL - 0 GCC_PRECOMPILE_PREFIX_HEADER YES GCC_PREFIX_HEADER - Target Support Files/Pods-NSManagedObject-ANDYObjectIDs/Pods-NSManagedObject-ANDYObjectIDs-prefix.pch - GCC_PREPROCESSOR_DEFINITIONS - - DEBUG=1 - $(inherited) - - GCC_SYMBOLS_PRIVATE_EXTERN - NO + Target Support Files/Pods-NSJSONSerialization-ANDYJSONFile/Pods-NSJSONSerialization-ANDYJSONFile-prefix.pch INSTALL_PATH $(BUILT_PRODUCTS_DIR) IPHONEOS_DEPLOYMENT_TARGET 7.0 + OTHER_CFLAGS + + -DNS_BLOCK_ASSERTIONS=1 + $(inherited) + + OTHER_CPLUSPLUSFLAGS + + -DNS_BLOCK_ASSERTIONS=1 + $(inherited) + OTHER_LDFLAGS OTHER_LIBTOOLFLAGS @@ -361,89 +263,106 @@ iphoneos SKIP_INSTALL YES + VALIDATE_PRODUCT + YES isa XCBuildConfiguration name - Debug + Release - 1A01CBA65B6AE5C0BDE39B86 + 1573754F57DAAB947CBD8212 - containerPortal - 2C50A3D28AD5A5B018CBEFA0 + buildConfigurations + + F28CB14667D1CC9E2001BFA0 + 561215609B615E1B52E836D8 + + defaultConfigurationIsVisible + 0 + defaultConfigurationName + Release isa - PBXContainerItemProxy - proxyType - 1 - remoteGlobalIDString - 53A8623F7943ECA9D048418B - remoteInfo - Pods-NSManagedObject-ANDYObjectIDs + XCConfigurationList - 1B4EAE3E57D1C2498467F148 + 159D3323583F21095EDEDFD9 children - C4BBA5973525B9373735512E - A7D81AD8CB1920F46BC44117 - 6DBEF35026D965BE59A2841B + C330788A70DB123E18E991BE + 5659C4F60D9E22C99295BAF9 + EECCDCCA431C90169D592BED isa PBXGroup name - NSManagedObject-ANDYObjectIDs + NSDictionary-ANDYSafeValue path - NSManagedObject-ANDYObjectIDs + NSDictionary-ANDYSafeValue sourceTree <group> - 1C2E261312AB5E7C50B6832C - - buildActionMask - 2147483647 - files - - 8773A3F8F3C6D4C41571DD82 - - isa - PBXFrameworksBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - 1E8792517193B180DB688F03 + 16C77840DA561770BA67A1AA children - 310B3F5489816714BFD8B77B - 378DD55393B03706D9EFED87 - B5CE74E430E0171157CD63DB + D0A2A2970FB5FCF445690462 + EB11E861FB199B78BDB9D979 + 584B43EA865BB22E61766C99 + 5393E4AE96A191AA045F8995 isa PBXGroup name - ANDYDataStack + Support Files path - ANDYDataStack + ../Target Support Files/Pods-NSManagedObject-ANDYMapChanges sourceTree <group> - 1F42B7326FE99B95E5847A3E + 17317EAA0D8F24355A84CB7D - includeInIndex - 1 + fileRef + 484E27B86AC378D66D209DC5 isa - PBXFileReference - lastKnownFileType - text.xcconfig - path - Pods.release.xcconfig - sourceTree - <group> + PBXBuildFile + + 1852400A9DB141E3BEBD6511 + + buildConfigurationList + 1573754F57DAAB947CBD8212 + buildPhases + + BE59987E13A68706EFDE93FF + 24A1F2BA646292B46579D47D + + buildRules + + dependencies + + C0972A3DFE690056F3DAE6B3 + 1285F87D0334B00CFC02AC78 + F70BDAC64A158FBD1F0C4AA9 + 0E69A7370F39B07F09502A1D + 9CC751198DE0E853E8917A4C + 3A1FBD4375F1D0BC997F7A52 + 4E950E0E30A3A975E9CE32B3 + + isa + PBXNativeTarget + name + Pods + productName + Pods + productReference + B6EA9ABB21E47D2BF9DEB5AD + productType + com.apple.product-type.library.static - 22BAC71DA96068E0E71A2E58 + 18CD0AD1255AEC9B56DC43CE baseConfigurationReference - BA6ADCB016CFFF6CE0D1A22E + 063C93E3FAE8BA8761176D03 buildSettings ALWAYS_SEARCH_USER_PATHS @@ -455,7 +374,7 @@ GCC_PRECOMPILE_PREFIX_HEADER YES GCC_PREFIX_HEADER - Target Support Files/Pods-NSManagedObject-HYPPropertyMapper/Pods-NSManagedObject-HYPPropertyMapper-prefix.pch + Target Support Files/Pods-NSDictionary-ANDYSafeValue/Pods-NSDictionary-ANDYSafeValue-prefix.pch INSTALL_PATH $(BUILT_PRODUCTS_DIR) IPHONEOS_DEPLOYMENT_TARGET @@ -490,68 +409,65 @@ name Release - 2334988B7DE8379D7EDE6E3D + 1A1D38CF988D6EDB37409BD0 includeInIndex 1 isa PBXFileReference lastKnownFileType - sourcecode.c.objc - name - NSManagedObject+HYPPropertyMapper.m + sourcecode.c.h path - Source/NSManagedObject+HYPPropertyMapper.m + Pods-NSDictionary-ANDYSafeValue-prefix.pch sourceTree <group> - 26C2F92A313782230312378E + 1BA279B1EB42DE7A8618D24B - buildConfigurationList - 8F5E210254D93E9E5EA6058B - buildPhases - - 9658E555C14345CBC52CDBCE - E7D5EA7E105FF884E44BAC0D - 5C662A4E6F4E9F133072C4B1 - - buildRules - - dependencies - + fileRef + AAFB79C7812F7F57924FE2AF isa - PBXNativeTarget - name - Pods-NSString-HYPNetworking - productName - Pods-NSString-HYPNetworking - productReference - EBA53DE0CE8BCD4FEFECEA0C - productType - com.apple.product-type.library.static + PBXBuildFile - 29C4117CE1544A081A263E9D + 1C6394A5D27A6C2A58B9EE99 children - 0B44E3834CAEFA39111426E0 - BA6ADCB016CFFF6CE0D1A22E - 4533BAD452ACBDB1E066DF83 - C18C78A69A469DB60C480F3A + 9776C897F93E8F2CC57B49A9 + 3CA2228B8E65713E4C42E2E7 + 9E4171A620CDD9A3228F8AC2 + 3833A5698A3D95C8A96DD116 + 373149BB72D1CE69A3CE7436 isa PBXGroup - name - Support Files - path - ../Target Support Files/Pods-NSManagedObject-HYPPropertyMapper sourceTree <group> - 29CA43208F6E159F782B9942 + 1DC092F734A22D2F5536B81D + + containerPortal + CEFCB0026FE52E16CB98B492 + isa + PBXContainerItemProxy + proxyType + 1 + remoteGlobalIDString + AD6E5DC4DAEEE90B3AC7C8E0 + remoteInfo + Pods-NSManagedObject-ANDYMapChanges + + 1DCC9885B18FD2F915BE92EA + + fileRef + AAFB79C7812F7F57924FE2AF + isa + PBXBuildFile + + 1EB5C971A38F758D860D85AC baseConfigurationReference - B414D376C7CA8B6A8C98C552 + 5D8373916645D7DDC4A768DF buildSettings ALWAYS_SEARCH_USER_PATHS @@ -567,7 +483,7 @@ GCC_PRECOMPILE_PREFIX_HEADER YES GCC_PREFIX_HEADER - Target Support Files/Pods-NSManagedObject-ANDYMapChanges/Pods-NSManagedObject-ANDYMapChanges-prefix.pch + Target Support Files/Pods-NSString-HYPNetworking/Pods-NSString-HYPNetworking-prefix.pch GCC_PREPROCESSOR_DEFINITIONS DEBUG=1 @@ -597,148 +513,71 @@ name Debug - 2BD3A2FB4416F8949C2E7F37 + 22900189F1A80D4555B5E593 - buildConfigurationList - 2D135CC93A335FC1F48634AE - buildPhases - - 50FD3ED9364A57C4961A3E53 - 1C2E261312AB5E7C50B6832C - EE76BDFAC3A905C446ADE281 - - buildRules - - dependencies - + includeInIndex + 1 isa - PBXNativeTarget + PBXFileReference + lastKnownFileType + sourcecode.c.h name - Pods-NSDictionary-ANDYSafeValue - productName - Pods-NSDictionary-ANDYSafeValue - productReference - 7C460D0DC9FDB6A24EC853B5 - productType - com.apple.product-type.library.static - - 2C50A3D28AD5A5B018CBEFA0 - - attributes - - LastUpgradeCheck - 0510 - - buildConfigurationList - FC53BA6648240FC73E12FCC2 - compatibilityVersion - Xcode 3.2 - developmentRegion - English - hasScannedForEncodings - 0 - isa - PBXProject - knownRegions - - en - - mainGroup - FEDF391FAB72754840E5900B - productRefGroup - D49B7846768A0BB37629A77B - projectDirPath - - projectReferences - - projectRoot - - targets - - 7FBD877E8D3B91198D86D02A - 04A7728680D259C7F2EF882C - 2BD3A2FB4416F8949C2E7F37 - 971A3ED229C482F44B1E7E9E - E6AF751A17DAC3A4FEDF7BF1 - 53A8623F7943ECA9D048418B - 3ADDC5F877CC377F73C980F1 - 26C2F92A313782230312378E - - - 2D135CC93A335FC1F48634AE - - buildConfigurations - - 84500D6FD09DCD2B3E32903F - 05D2F9D0754F85AC42876C12 - - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release - isa - XCConfigurationList + NSManagedObject+ANDYMapChanges.h + path + Source/NSManagedObject+ANDYMapChanges.h + sourceTree + <group> - 2DD20EC64A49AA2851974CE4 + 24A1F2BA646292B46579D47D buildActionMask 2147483647 files - 127AC47A6E7D4AA490D3CA29 - 658AC8D197BD9F1E1FB83998 + 974722A8AA002120B2C44FA3 isa - PBXSourcesBuildPhase + PBXFrameworksBuildPhase runOnlyForDeploymentPostprocessing 0 - 3089E189CC9C83F8353350A8 + 25C56EE050E125A34D981422 buildActionMask 2147483647 files - 4B801115567648509B06C5CE - EB7D94755FD0BD5741407CED + 4EA7692DBAC216B08FDAC01F isa - PBXSourcesBuildPhase + PBXHeadersBuildPhase runOnlyForDeploymentPostprocessing 0 - 310B3F5489816714BFD8B77B + 26C9E7E981C94AA447AD729F + explicitFileType + archive.ar includeInIndex - 1 + 0 isa PBXFileReference - lastKnownFileType - sourcecode.c.h - name - ANDYDataStack.h path - ANDYDataStack/ANDYDataStack.h + libPods-NSManagedObject-HYPPropertyMapper.a sourceTree - <group> + BUILT_PRODUCTS_DIR - 3111A76EB90A80361F14C302 + 27A6E98BB3E06AB67FC32D28 - includeInIndex - 1 + fileRef + AAFB79C7812F7F57924FE2AF isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - Pods-environment.h - sourceTree - <group> + PBXBuildFile - 3286A1606B008D339AD0A3B7 + 2955AD58ECEB2226167867F6 baseConfigurationReference - FA8CED37B42620ADB9AD7988 + 063C93E3FAE8BA8761176D03 buildSettings ALWAYS_SEARCH_USER_PATHS @@ -754,7 +593,7 @@ GCC_PRECOMPILE_PREFIX_HEADER YES GCC_PREFIX_HEADER - Target Support Files/Pods-NSJSONSerialization-ANDYJSONFile/Pods-NSJSONSerialization-ANDYJSONFile-prefix.pch + Target Support Files/Pods-NSDictionary-ANDYSafeValue/Pods-NSDictionary-ANDYSafeValue-prefix.pch GCC_PREPROCESSOR_DEFINITIONS DEBUG=1 @@ -784,479 +623,492 @@ name Debug - 32D9DA1D5B3BD2BB3CBCA918 - - fileRef - ABC3B2DDED0E2D99AA213D38 - isa - PBXBuildFile - - 33BD3D018345823DDAF5A13D - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - text.xcconfig - path - Pods-ANDYDataStack-Private.xcconfig - sourceTree - <group> - - 33CFFEA3ACC8FDC11801C584 + 2969C2F34484F68A4B42F6DD children - C737C5FA2BC3AFC2DC7DD372 + F46AAAA8259CDC0755CE3B92 + AAFB79C7812F7F57924FE2AF isa PBXGroup name - Targets Support Files + iOS sourceTree <group> - 3597FE76DB0E37B340379989 + 2A42DF54AEDCBC6B1EA3D516 - children + buildActionMask + 2147483647 + files - FD97B1C4167A754DDDBB6A3B - FA8CED37B42620ADB9AD7988 - B16CD69EC3CE821B8090FCD2 - 65ED6ECE4D62D1B706A00EA3 + 51D77D75CC0E8A548225819A isa - PBXGroup - name - Support Files - path - ../Target Support Files/Pods-NSJSONSerialization-ANDYJSONFile - sourceTree - <group> + PBXHeadersBuildPhase + runOnlyForDeploymentPostprocessing + 0 + + 2ACCB1714764FDA78733D983 + + buildConfigurationList + 558038CC8F0D5F352C5085A7 + buildPhases + + 048038B0CC1BA63B3C8A4F81 + F0CC5700C2959BC83D435C8C + 5D2CF081A44CE775E5E721C0 + + buildRules + + dependencies + + isa + PBXNativeTarget + name + Pods-DATAStack + productName + Pods-DATAStack + productReference + EF7206069565986A55B7D745 + productType + com.apple.product-type.library.static - 3635E6497B86A2B0E84F033E + 2D271C701C663AB6F45130B4 fileRef - E7286FC5A450D2D758FE82DF + 5FADF492F55335A60D618D2A isa PBXBuildFile - 378DD55393B03706D9EFED87 + 2D5965A435DB84F7FD8EB52F - includeInIndex - 1 + children + + 98CA290AC8EA4E1FE9BE56AF + C1CFB5C8D29B0BC6156AAFA4 + B6F5461ED9A8D4E6D6CD1C63 + C547D60451823D1B1A7F7357 + isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc + PBXGroup name - ANDYDataStack.m + Support Files path - ANDYDataStack/ANDYDataStack.m + ../Target Support Files/Pods-NSJSONSerialization-ANDYJSONFile sourceTree <group> - 3829A747000AE8FA3F577581 + 2EDE59DCFE5985E74B54A8C6 + explicitFileType + archive.ar includeInIndex - 1 + 0 isa PBXFileReference - lastKnownFileType - sourcecode.c.h path - Pods-NSDictionary-ANDYSafeValue-prefix.pch + libPods-NSManagedObject-ANDYMapChanges.a sourceTree - <group> + BUILT_PRODUCTS_DIR - 38419B0786D409F54103C22C + 31AF880181F7C0DD7BFDECB8 - children - - A790C1A23FA2F1412FDBCACE - E2F0D2D6829BDB34647AF3EA - E53BF253B7BCE7AED844E688 - isa - PBXGroup + PBXTargetDependency name - NSDictionary-ANDYSafeValue - path - NSDictionary-ANDYSafeValue - sourceTree - <group> + Pods-NSManagedObject-ANDYObjectIDs + target + BC262CB06B7D29C51FA93E1D + targetProxy + 428EAA7B44ECE8D6FF41E3AF - 392FBDF27E49BB8833D052C4 + 322286581A0B9FDB46CE3462 - baseConfigurationReference - FA8CED37B42620ADB9AD7988 - buildSettings - - ALWAYS_SEARCH_USER_PATHS - NO - COPY_PHASE_STRIP - YES - DSTROOT - /tmp/xcodeproj.dst - GCC_PRECOMPILE_PREFIX_HEADER - YES - GCC_PREFIX_HEADER - Target Support Files/Pods-NSJSONSerialization-ANDYJSONFile/Pods-NSJSONSerialization-ANDYJSONFile-prefix.pch - INSTALL_PATH - $(BUILT_PRODUCTS_DIR) - IPHONEOS_DEPLOYMENT_TARGET - 7.0 - OTHER_CFLAGS - - -DNS_BLOCK_ASSERTIONS=1 - $(inherited) - - OTHER_CPLUSPLUSFLAGS - - -DNS_BLOCK_ASSERTIONS=1 - $(inherited) - - OTHER_LDFLAGS - - OTHER_LIBTOOLFLAGS - - PRODUCT_NAME - $(TARGET_NAME) - PUBLIC_HEADERS_FOLDER_PATH - $(TARGET_NAME) - SDKROOT - iphoneos - SKIP_INSTALL - YES - VALIDATE_PRODUCT - YES - + buildActionMask + 2147483647 + files + + F2FD51F588E26476DA0941F1 + 0113F4C5D90A3A792E1BA461 + isa - XCBuildConfiguration - name - Release + PBXSourcesBuildPhase + runOnlyForDeploymentPostprocessing + 0 - 3A2D3DDBE10CC2BFA72D306A + 373149BB72D1CE69A3CE7436 children - 100AF025CD78BBE16D966EC2 - 506F201D9CA04675165C4619 - AFC041EC18F7AB525D5C9BAF + D20D3273BE1ACE9A91610DC1 isa PBXGroup name - NSString-HYPNetworking - path - NSString-HYPNetworking + Targets Support Files sourceTree <group> - 3ADDC5F877CC377F73C980F1 - - buildConfigurationList - 62EF24CF0AC65D8B0003BF64 - buildPhases - - 570D373743807A5E552F8A59 - E392BF0A022CB56C19FF09C4 - E3E7393633D7B37DD92D1BD6 - - buildRules - - dependencies - - D197A6C622EE1B29B58EEBE5 - - isa - PBXNativeTarget - name - Pods-NSManagedObject-HYPPropertyMapper - productName - Pods-NSManagedObject-HYPPropertyMapper - productReference - E3E5C4F3172CFF66DDF621A9 - productType - com.apple.product-type.library.static - - 3B8ABB1CF19DFDFD1F745C06 + 37BDA25956BF3767F78AF388 includeInIndex 1 isa PBXFileReference lastKnownFileType - text + sourcecode.c.h name - Podfile + NSJSONSerialization+ANDYJSONFile.h path - ../Podfile + NSJSONSerialization-ANDYJSONFile/NSJSONSerialization+ANDYJSONFile.h sourceTree - SOURCE_ROOT - xcLanguageSpecificationIdentifier - xcode.lang.ruby - - 3B94F078DCB71843A6D603D0 - - fileRef - 100AF025CD78BBE16D966EC2 - isa - PBXBuildFile + <group> - 3D11B42E033FF23547488113 + 3833A5698A3D95C8A96DD116 children - 1E8792517193B180DB688F03 - 38419B0786D409F54103C22C - 5D9385C6D569C50937994DE3 - 5BA297019531DF6CAF8F2BC5 - 1B4EAE3E57D1C2498467F148 - 09246B7B4C0E69CDCCFBD632 - 3A2D3DDBE10CC2BFA72D306A + B6EA9ABB21E47D2BF9DEB5AD + EF7206069565986A55B7D745 + 03157B8DB7EAFDD4FD7C44C1 + 6B33AFE59CE2A6B7BFB58405 + 2EDE59DCFE5985E74B54A8C6 + 945ADC814CF3EA256D9709A7 + 26C9E7E981C94AA447AD729F + 48D2355B29135D8B66A09E71 isa PBXGroup name - Pods + Products sourceTree <group> - 3FD5DAB0EBCCB8E44907119B + 3A1FBD4375F1D0BC997F7A52 - baseConfigurationReference - 72FF29991CABE5869F8C67BA - buildSettings - - ALWAYS_SEARCH_USER_PATHS - NO - COPY_PHASE_STRIP - NO - DSTROOT - /tmp/xcodeproj.dst - GCC_DYNAMIC_NO_PIC - NO - GCC_OPTIMIZATION_LEVEL - 0 - GCC_PRECOMPILE_PREFIX_HEADER - YES - GCC_PREPROCESSOR_DEFINITIONS - - DEBUG=1 - $(inherited) - - GCC_SYMBOLS_PRIVATE_EXTERN - NO - INSTALL_PATH - $(BUILT_PRODUCTS_DIR) - IPHONEOS_DEPLOYMENT_TARGET - 7.0 - OTHER_LDFLAGS - - OTHER_LIBTOOLFLAGS - - PRODUCT_NAME - $(TARGET_NAME) - PUBLIC_HEADERS_FOLDER_PATH - $(TARGET_NAME) - SDKROOT - iphoneos - SKIP_INSTALL - YES - isa - XCBuildConfiguration + PBXTargetDependency name - Debug + Pods-NSManagedObject-HYPPropertyMapper + target + 46CB544D0ADD5D47603B1E18 + targetProxy + 43015CC88211A79CF125F270 - 40458BB89126AC5A6680816F + 3BC862F1DE084F261E05FCC1 buildActionMask 2147483647 files - D12CB5BD1D7A2EA9925BC027 + 17317EAA0D8F24355A84CB7D isa PBXHeadersBuildPhase runOnlyForDeploymentPostprocessing 0 - 414C7B606C3F03971C3F4E66 + 3CA2228B8E65713E4C42E2E7 - buildActionMask - 2147483647 - files + children - 0F4433D080AB897281E9F1CF + 2969C2F34484F68A4B42F6DD isa - PBXHeadersBuildPhase - runOnlyForDeploymentPostprocessing + PBXGroup + name + Frameworks + sourceTree + <group> + + 3CF0ADD1AC8EE085194A6493 + + buildConfigurations + + FF8800F113EA45487E819F0D + 89F42E155B4EBD6B497EBED4 + + defaultConfigurationIsVisible 0 + defaultConfigurationName + Release + isa + XCConfigurationList - 435AC1402CBF95808C2FB54B + 3DFF9E22A00CA19A94E142A1 + containerPortal + CEFCB0026FE52E16CB98B492 isa - PBXTargetDependency - name - Pods-NSManagedObject-ANDYObjectIDs - target - 53A8623F7943ECA9D048418B - targetProxy - BD928CBBF51DC841A8ED3F13 + PBXContainerItemProxy + proxyType + 1 + remoteGlobalIDString + F2A2DCC8E231E828FF92C6F6 + remoteInfo + Pods-NSDictionary-ANDYSafeValue - 4401BEB721A1C93D8632F527 + 3F370197E01F4189DDB58400 includeInIndex 1 isa PBXFileReference lastKnownFileType - sourcecode.c.h + text.plist.xml path - Pods-NSString-HYPNetworking-prefix.pch + Pods-acknowledgements.plist sourceTree <group> - 441854C5BCD46CD3A37D6F63 + 3F517E2479A28FAD535C8BF3 - baseConfigurationReference - E0643ACAA819A596A4615FBA - buildSettings - - ALWAYS_SEARCH_USER_PATHS - NO - COPY_PHASE_STRIP - YES - DSTROOT - /tmp/xcodeproj.dst - GCC_PRECOMPILE_PREFIX_HEADER - YES - GCC_PREFIX_HEADER - Target Support Files/Pods-NSString-HYPNetworking/Pods-NSString-HYPNetworking-prefix.pch - INSTALL_PATH - $(BUILT_PRODUCTS_DIR) - IPHONEOS_DEPLOYMENT_TARGET - 7.0 - OTHER_CFLAGS - - -DNS_BLOCK_ASSERTIONS=1 - $(inherited) - - OTHER_CPLUSPLUSFLAGS - - -DNS_BLOCK_ASSERTIONS=1 - $(inherited) - - OTHER_LDFLAGS - - OTHER_LIBTOOLFLAGS - - PRODUCT_NAME - $(TARGET_NAME) - PUBLIC_HEADERS_FOLDER_PATH - $(TARGET_NAME) - SDKROOT - iphoneos - SKIP_INSTALL - YES - VALIDATE_PRODUCT - YES - - isa - XCBuildConfiguration - name + buildConfigurations + + F3C8673D376AC56616434F23 + 8B06752554F40AC56AFE07B6 + + defaultConfigurationIsVisible + 0 + defaultConfigurationName Release + isa + XCConfigurationList - 4533BAD452ACBDB1E066DF83 + 3FA6A2A71FC1CE30287EE9F5 - includeInIndex - 1 + children + + E1B6B28C17FE79D8137F1F29 + 5D8373916645D7DDC4A768DF + F44F08F6DB0AC633091E7B77 + FC33922D8DDED885FC4B70B0 + isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc + PBXGroup + name + Support Files path - Pods-NSManagedObject-HYPPropertyMapper-dummy.m + ../Target Support Files/Pods-NSString-HYPNetworking sourceTree <group> - 45B948315332B2B56E87F05D + 40E79B56C52C99413784777C - fileRef - E7286FC5A450D2D758FE82DF + buildActionMask + 2147483647 + files + + 1BA279B1EB42DE7A8618D24B + isa - PBXBuildFile + PBXFrameworksBuildPhase + runOnlyForDeploymentPostprocessing + 0 - 460E4A41C7F12FBFF24F3735 + 428EAA7B44ECE8D6FF41E3AF containerPortal - 2C50A3D28AD5A5B018CBEFA0 + CEFCB0026FE52E16CB98B492 isa PBXContainerItemProxy proxyType 1 remoteGlobalIDString - 04A7728680D259C7F2EF882C + BC262CB06B7D29C51FA93E1D remoteInfo - Pods-ANDYDataStack + Pods-NSManagedObject-ANDYObjectIDs - 46ED8EF4AD78E653FCA67FC7 + 429E8987E7944D68642F719D fileRef - E7286FC5A450D2D758FE82DF + 37BDA25956BF3767F78AF388 isa PBXBuildFile - 47768373F86CC82509EF7B93 + 43015CC88211A79CF125F270 - fileRef - E7286FC5A450D2D758FE82DF + containerPortal + CEFCB0026FE52E16CB98B492 isa - PBXBuildFile + PBXContainerItemProxy + proxyType + 1 + remoteGlobalIDString + 46CB544D0ADD5D47603B1E18 + remoteInfo + Pods-NSManagedObject-HYPPropertyMapper + + 4403C69944ACBEACCA808579 + + children + + 5FADF492F55335A60D618D2A + 446799038F4A057CAA6818AE + B180D7C6F35812F99EECF4F8 + + isa + PBXGroup + name + NSManagedObject-HYPPropertyMapper + path + NSManagedObject-HYPPropertyMapper + sourceTree + <group> + + 446799038F4A057CAA6818AE + + includeInIndex + 1 + isa + PBXFileReference + lastKnownFileType + sourcecode.c.objc + name + NSManagedObject+HYPPropertyMapper.m + path + Source/NSManagedObject+HYPPropertyMapper.m + sourceTree + <group> + + 46CB544D0ADD5D47603B1E18 + + buildConfigurationList + A4D7536AAA433E8D23C98FAA + buildPhases + + 77BAED97995A1B24E0AAE4AF + 5A566A7E184E990010B4E698 + EE57871B227469EDBC2225AB + + buildRules + + dependencies + + 7856EA3D5CD067A38B56BE5F + + isa + PBXNativeTarget + name + Pods-NSManagedObject-HYPPropertyMapper + productName + Pods-NSManagedObject-HYPPropertyMapper + productReference + 26C9E7E981C94AA447AD729F + productType + com.apple.product-type.library.static + + 484E27B86AC378D66D209DC5 + + includeInIndex + 1 + isa + PBXFileReference + lastKnownFileType + sourcecode.c.h + name + NSManagedObject+ANDYObjectIDs.h + path + Source/NSManagedObject+ANDYObjectIDs.h + sourceTree + <group> + + 48D2355B29135D8B66A09E71 + + explicitFileType + archive.ar + includeInIndex + 0 + isa + PBXFileReference + path + libPods-NSString-HYPNetworking.a + sourceTree + BUILT_PRODUCTS_DIR + + 499B0D2567F5B806A946424E + + includeInIndex + 1 + isa + PBXFileReference + lastKnownFileType + sourcecode.c.h + name + DATAStack.h + path + Source/DATAStack.h + sourceTree + <group> - 49501B0055269E08AC21A4F2 + 4E950E0E30A3A975E9CE32B3 isa PBXTargetDependency name - Pods-NSJSONSerialization-ANDYJSONFile + Pods-NSString-HYPNetworking target - 971A3ED229C482F44B1E7E9E + 6D6ADAAAAC37C23DB40F340B targetProxy - 95813FFF8AE056013939F4D1 + E28EDB4D31A8655F3F7BA832 + + 4EA7692DBAC216B08FDAC01F + + fileRef + C3D260C2CE9DD529B98ACEBB + isa + PBXBuildFile + + 5044C32E73DE1044F6C97BC9 + + includeInIndex + 1 + isa + PBXFileReference + lastKnownFileType + text.xcconfig + path + Pods-DATAStack.xcconfig + sourceTree + <group> - 4B801115567648509B06C5CE + 5155FB30E628A461D5424EB4 fileRef - DCF6BB349551407F7FB0F81A + B5C677822D29E52BF66D6E04 isa PBXBuildFile - 4C1E0D0033FAEB84CBE4940F + 51D77D75CC0E8A548225819A fileRef - E7286FC5A450D2D758FE82DF + C330788A70DB123E18E991BE isa PBXBuildFile - 4CBC54272419075DFEBEAD1A + 534F09BD4D0BB3A64DE829E5 - containerPortal - 2C50A3D28AD5A5B018CBEFA0 + fileRef + 22900189F1A80D4555B5E593 isa - PBXContainerItemProxy - proxyType + PBXBuildFile + + 5393E4AE96A191AA045F8995 + + includeInIndex 1 - remoteGlobalIDString - 2BD3A2FB4416F8949C2E7F37 - remoteInfo - Pods-NSDictionary-ANDYSafeValue + isa + PBXFileReference + lastKnownFileType + sourcecode.c.h + path + Pods-NSManagedObject-ANDYMapChanges-prefix.pch + sourceTree + <group> - 506F201D9CA04675165C4619 + 53A33DB506370958E57EB999 includeInIndex 1 @@ -1265,55 +1117,45 @@ lastKnownFileType sourcecode.c.objc name - NSString+HYPNetworking.m + NSManagedObject+ANDYObjectIDs.m path - Source/NSString+HYPNetworking.m + Source/NSManagedObject+ANDYObjectIDs.m sourceTree <group> - 50FD3ED9364A57C4961A3E53 + 54A3C2B617271E12A863FA17 - buildActionMask - 2147483647 - files - - 7A0806DC61C5DB7B7D9C8884 - B8C879F683BA9F0FA5C8EC63 - + includeInIndex + 1 isa - PBXSourcesBuildPhase - runOnlyForDeploymentPostprocessing - 0 + PBXFileReference + lastKnownFileType + sourcecode.c.objc + name + NSString+HYPNetworking.m + path + Source/NSString+HYPNetworking.m + sourceTree + <group> - 53A8623F7943ECA9D048418B + 558038CC8F0D5F352C5085A7 - buildConfigurationList - 9C0AA947E9492BFBCB92DC12 - buildPhases + buildConfigurations - EFED5433184D13BAC2836C7D - 9F183F537A5405EEC8901C6D - D841181111C4604BAD028F52 + E0F8B7A34C3578B46F2E9D6B + 89768098950990554F201F85 - buildRules - - dependencies - + defaultConfigurationIsVisible + 0 + defaultConfigurationName + Release isa - PBXNativeTarget - name - Pods-NSManagedObject-ANDYObjectIDs - productName - Pods-NSManagedObject-ANDYObjectIDs - productReference - BD0C618EB89BAB5B056C10B6 - productType - com.apple.product-type.library.static + XCConfigurationList - 56EE69DA34289AA2CD3A6FA1 + 561215609B615E1B52E836D8 baseConfigurationReference - 33BD3D018345823DDAF5A13D + DB37069B76AFF3C4DB90452B buildSettings ALWAYS_SEARCH_USER_PATHS @@ -1324,8 +1166,6 @@ /tmp/xcodeproj.dst GCC_PRECOMPILE_PREFIX_HEADER YES - GCC_PREFIX_HEADER - Target Support Files/Pods-ANDYDataStack/Pods-ANDYDataStack-prefix.pch INSTALL_PATH $(BUILT_PRODUCTS_DIR) IPHONEOS_DEPLOYMENT_TARGET @@ -1360,34 +1200,88 @@ name Release - 570D373743807A5E552F8A59 + 5659C4F60D9E22C99295BAF9 + + includeInIndex + 1 + isa + PBXFileReference + lastKnownFileType + sourcecode.c.objc + name + NSDictionary+ANDYSafeValue.m + path + Source/NSDictionary+ANDYSafeValue.m + sourceTree + <group> + + 580E2E245F61AC316B501012 + + fileRef + CB9D4CD4AF1DD50189675EF8 + isa + PBXBuildFile + + 5810898416EFCAAAA3E571E0 buildActionMask 2147483647 files - 169238BC0A61EDD9C08908F5 - 0678A80431A9EF26811C156E + 429E8987E7944D68642F719D isa - PBXSourcesBuildPhase + PBXHeadersBuildPhase runOnlyForDeploymentPostprocessing 0 - 57A4C28FA0E881506C553A5B + 5813B3EC1491E039F2F3944C + + fileRef + FF126F397C4AD20985142A81 + isa + PBXBuildFile + + 584B43EA865BB22E61766C99 includeInIndex 1 isa PBXFileReference lastKnownFileType - text.xcconfig + sourcecode.c.objc path - Pods-NSDictionary-ANDYSafeValue-Private.xcconfig + Pods-NSManagedObject-ANDYMapChanges-dummy.m sourceTree <group> - 5B0628028ACEAA3B7831D6D5 + 5A566A7E184E990010B4E698 + + buildActionMask + 2147483647 + files + + 99CBDADBA4FD94EF91658094 + + isa + PBXFrameworksBuildPhase + runOnlyForDeploymentPostprocessing + 0 + + 5D2CF081A44CE775E5E721C0 + + buildActionMask + 2147483647 + files + + D72584FBA96760C1F29B97A2 + + isa + PBXHeadersBuildPhase + runOnlyForDeploymentPostprocessing + 0 + + 5D8373916645D7DDC4A768DF includeInIndex 1 @@ -1396,24 +1290,18 @@ lastKnownFileType text.xcconfig path - Pods-NSManagedObject-ANDYObjectIDs-Private.xcconfig + Pods-NSString-HYPNetworking-Private.xcconfig sourceTree <group> - 5B9EA7126AE80A29455E9E8A + 5EE84B07AA119CB024C22238 - explicitFileType - archive.ar - includeInIndex - 0 + fileRef + E3DA54B916EB1A3B45EB758D isa - PBXFileReference - path - libPods.a - sourceTree - BUILT_PRODUCTS_DIR + PBXBuildFile - 5BA2916E38D36977F8C7FB52 + 5FADF492F55335A60D618D2A includeInIndex 1 @@ -1421,73 +1309,161 @@ PBXFileReference lastKnownFileType sourcecode.c.h + name + NSManagedObject+HYPPropertyMapper.h path - Pods-NSManagedObject-ANDYMapChanges-prefix.pch + Source/NSManagedObject+HYPPropertyMapper.h sourceTree <group> - 5BA297019531DF6CAF8F2BC5 + 5FD9483945BC5E58858F8A6A - children + buildConfigurations - C28830958346540031462A25 - DCF6BB349551407F7FB0F81A - 6097ADE85874555D75311522 + 6F3BB3D56B040ACB6C7D0166 + 66E1D74C06BE373DCD08D133 + defaultConfigurationIsVisible + 0 + defaultConfigurationName + Release isa - PBXGroup + XCConfigurationList + + 5FE1AE403F7027A165AECE27 + + includeInIndex + 1 + isa + PBXFileReference + lastKnownFileType + sourcecode.c.objc name - NSManagedObject-ANDYMapChanges + NSJSONSerialization+ANDYJSONFile.m path - NSManagedObject-ANDYMapChanges + NSJSONSerialization-ANDYJSONFile/NSJSONSerialization+ANDYJSONFile.m sourceTree <group> - 5C662A4E6F4E9F133072C4B1 + 64BC46AA9774D79CDD00CB0D - buildActionMask - 2147483647 - files - - 3B94F078DCB71843A6D603D0 - + fileRef + F46AAAA8259CDC0755CE3B92 isa - PBXHeadersBuildPhase - runOnlyForDeploymentPostprocessing - 0 + PBXBuildFile - 5D9385C6D569C50937994DE3 + 66E1D74C06BE373DCD08D133 - children - - 9B917938EE03D6D04EDD636A - E46AC30D25CDFC28DBB0C447 - 3597FE76DB0E37B340379989 - + buildSettings + + ALWAYS_SEARCH_USER_PATHS + NO + 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 + CLANG_WARN_EMPTY_BODY + YES + CLANG_WARN_ENUM_CONVERSION + YES + CLANG_WARN_INT_CONVERSION + YES + CLANG_WARN_OBJC_ROOT_CLASS + YES + COPY_PHASE_STRIP + NO + ENABLE_NS_ASSERTIONS + NO + GCC_C_LANGUAGE_STANDARD + gnu99 + GCC_PREPROCESSOR_DEFINITIONS + + RELEASE=1 + + GCC_WARN_64_TO_32_BIT_CONVERSION + YES + GCC_WARN_ABOUT_RETURN_TYPE + YES + 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 + STRIP_INSTALLED_PRODUCT + NO + VALIDATE_PRODUCT + YES + isa - PBXGroup + XCBuildConfiguration name - NSJSONSerialization-ANDYJSONFile - path - NSJSONSerialization-ANDYJSONFile - sourceTree - <group> + Release - 5E4333614A659A9DEA36F993 + 6AC12D1AD78539823AE76C3D - buildConfigurations - - 3286A1606B008D339AD0A3B7 - 392FBDF27E49BB8833D052C4 - - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release + baseConfigurationReference + 700E8411D1E766A4B2AB432F + buildSettings + + ALWAYS_SEARCH_USER_PATHS + NO + COPY_PHASE_STRIP + NO + DSTROOT + /tmp/xcodeproj.dst + GCC_DYNAMIC_NO_PIC + NO + GCC_OPTIMIZATION_LEVEL + 0 + GCC_PRECOMPILE_PREFIX_HEADER + YES + GCC_PREFIX_HEADER + Target Support Files/Pods-NSManagedObject-HYPPropertyMapper/Pods-NSManagedObject-HYPPropertyMapper-prefix.pch + GCC_PREPROCESSOR_DEFINITIONS + + DEBUG=1 + $(inherited) + + GCC_SYMBOLS_PRIVATE_EXTERN + NO + INSTALL_PATH + $(BUILT_PRODUCTS_DIR) + IPHONEOS_DEPLOYMENT_TARGET + 7.0 + OTHER_LDFLAGS + + OTHER_LIBTOOLFLAGS + + PRODUCT_NAME + $(TARGET_NAME) + PUBLIC_HEADERS_FOLDER_PATH + $(TARGET_NAME) + SDKROOT + iphoneos + SKIP_INSTALL + YES + isa - XCConfigurationList + XCBuildConfiguration + name + Debug - 5F3637940A9A12082F0A4708 + 6B33AFE59CE2A6B7BFB58405 explicitFileType archive.ar @@ -1500,199 +1476,310 @@ sourceTree BUILT_PRODUCTS_DIR - 6097ADE85874555D75311522 + 6D26AC53EDC3C2A2C456B6D7 - children - - C58E90C5A22D442C2FE8927E - B414D376C7CA8B6A8C98C552 - 141A984B6CB8536A3819F767 - 5BA2916E38D36977F8C7FB52 - + fileRef + AAFB79C7812F7F57924FE2AF isa - PBXGroup - name - Support Files - path - ../Target Support Files/Pods-NSManagedObject-ANDYMapChanges - sourceTree - <group> + PBXBuildFile - 62EF24CF0AC65D8B0003BF64 + 6D6ADAAAAC37C23DB40F340B - buildConfigurations + buildConfigurationList + 9734FF221F4BCB4AA1CE3AFC + buildPhases - D19C2E0FDAADF91388EF1C91 - 22BAC71DA96068E0E71A2E58 + 7C98AAAAB61C5FEA6C4C6FAF + 028F03FC7124D4F5D4623514 + 25C56EE050E125A34D981422 - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release + buildRules + + dependencies + isa - XCConfigurationList + PBXNativeTarget + name + Pods-NSString-HYPNetworking + productName + Pods-NSString-HYPNetworking + productReference + 48D2355B29135D8B66A09E71 + productType + com.apple.product-type.library.static - 63369DD8FD7E3DD832DD1071 + 6F3BB3D56B040ACB6C7D0166 + buildSettings + + ALWAYS_SEARCH_USER_PATHS + NO + 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 + CLANG_WARN_EMPTY_BODY + YES + CLANG_WARN_ENUM_CONVERSION + YES + CLANG_WARN_INT_CONVERSION + YES + CLANG_WARN_OBJC_ROOT_CLASS + YES + COPY_PHASE_STRIP + YES + 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 + 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 + STRIP_INSTALLED_PRODUCT + NO + isa - PBXTargetDependency + XCBuildConfiguration name - Pods-NSManagedObject-HYPPropertyMapper - target - 3ADDC5F877CC377F73C980F1 - targetProxy - FDA82B41FF97896A3ABD0791 + Debug - 63B4D407F041125F7B3AD8A1 + 700E8411D1E766A4B2AB432F includeInIndex 1 isa PBXFileReference lastKnownFileType - sourcecode.c.h - name - NSManagedObject+HYPPropertyMapper.h + text.xcconfig path - Source/NSManagedObject+HYPPropertyMapper.h + Pods-NSManagedObject-HYPPropertyMapper-Private.xcconfig sourceTree <group> - 658AC8D197BD9F1E1FB83998 - - fileRef - B16CD69EC3CE821B8090FCD2 - isa - PBXBuildFile - - 65ED6ECE4D62D1B706A00EA3 + 75420D4BABA33E46A6D32374 includeInIndex 1 isa PBXFileReference lastKnownFileType - sourcecode.c.h + text.xcconfig path - Pods-NSJSONSerialization-ANDYJSONFile-prefix.pch + Pods-DATAStack-Private.xcconfig sourceTree <group> - 6681C58B0CF9A5AB980E71D7 + 77BAED97995A1B24E0AAE4AF - explicitFileType - archive.ar - includeInIndex + buildActionMask + 2147483647 + files + + 04D858713E576F286A4CEAA1 + 5813B3EC1491E039F2F3944C + + isa + PBXSourcesBuildPhase + runOnlyForDeploymentPostprocessing 0 + + 7856EA3D5CD067A38B56BE5F + isa - PBXFileReference - path - libPods-NSManagedObject-ANDYMapChanges.a - sourceTree - BUILT_PRODUCTS_DIR + PBXTargetDependency + name + Pods-NSString-HYPNetworking + target + 6D6ADAAAAC37C23DB40F340B + targetProxy + 88640FA675CC7FE169C8BFF9 - 6DBEF35026D965BE59A2841B + 7A7F2E760113ACE7A3C3A514 - children + fileRef + D0BB136FCEB01DEF98E207CE + isa + PBXBuildFile + + 7C98AAAAB61C5FEA6C4C6FAF + + buildActionMask + 2147483647 + files - B5C9D78653026848E0823DDB - 5B0628028ACEAA3B7831D6D5 - BAA8D2912FEE5DEBE9DD256D - EA85FD91BE7E1C608C0DA4F4 + 90B62B85CEFC82BB24977DF2 + 9EF5A4C159C7C4830A2961E2 isa - PBXGroup - name - Support Files - path - ../Target Support Files/Pods-NSManagedObject-ANDYObjectIDs - sourceTree - <group> + PBXSourcesBuildPhase + runOnlyForDeploymentPostprocessing + 0 - 72FF29991CABE5869F8C67BA + 7FD99A1F11A597FD27334956 includeInIndex 1 isa PBXFileReference lastKnownFileType - text.xcconfig + text.script.sh path - Pods.debug.xcconfig + Pods-resources.sh sourceTree <group> - 779CD1F9578E9230A9DEE427 + 87181FE98D3A558354F7F725 - fileRef - A790C1A23FA2F1412FDBCACE - isa - PBXBuildFile - - 7A0806DC61C5DB7B7D9C8884 - - fileRef - E2F0D2D6829BDB34647AF3EA + containerPortal + CEFCB0026FE52E16CB98B492 isa - PBXBuildFile + PBXContainerItemProxy + proxyType + 1 + remoteGlobalIDString + 2ACCB1714764FDA78733D983 + remoteInfo + Pods-DATAStack - 7C460D0DC9FDB6A24EC853B5 + 88640FA675CC7FE169C8BFF9 - explicitFileType - archive.ar - includeInIndex - 0 + containerPortal + CEFCB0026FE52E16CB98B492 isa - PBXFileReference - path - libPods-NSDictionary-ANDYSafeValue.a - sourceTree - BUILT_PRODUCTS_DIR + PBXContainerItemProxy + proxyType + 1 + remoteGlobalIDString + 6D6ADAAAAC37C23DB40F340B + remoteInfo + Pods-NSString-HYPNetworking - 7F1BE833DAFEC669E4ADA51F + 889F2F697888A00FEA950E1E buildActionMask 2147483647 files - CD46A35DB8D3E46F6D380AFB + 8A5ACD1045E14CD42CB6590A + B115CAD9881626160DCCCEA8 isa PBXSourcesBuildPhase runOnlyForDeploymentPostprocessing 0 - 7F32CA7F938BF0AE7A3B2360 + 89768098950990554F201F85 + + baseConfigurationReference + 75420D4BABA33E46A6D32374 + buildSettings + + ALWAYS_SEARCH_USER_PATHS + NO + COPY_PHASE_STRIP + YES + DSTROOT + /tmp/xcodeproj.dst + GCC_PRECOMPILE_PREFIX_HEADER + YES + GCC_PREFIX_HEADER + Target Support Files/Pods-DATAStack/Pods-DATAStack-prefix.pch + INSTALL_PATH + $(BUILT_PRODUCTS_DIR) + IPHONEOS_DEPLOYMENT_TARGET + 7.0 + OTHER_CFLAGS + + -DNS_BLOCK_ASSERTIONS=1 + $(inherited) + + OTHER_CPLUSPLUSFLAGS + + -DNS_BLOCK_ASSERTIONS=1 + $(inherited) + + OTHER_LDFLAGS + + OTHER_LIBTOOLFLAGS + + PRODUCT_NAME + $(TARGET_NAME) + PUBLIC_HEADERS_FOLDER_PATH + $(TARGET_NAME) + SDKROOT + iphoneos + SKIP_INSTALL + YES + VALIDATE_PRODUCT + YES + + isa + XCBuildConfiguration + name + Release + + 89F42E155B4EBD6B497EBED4 baseConfigurationReference - E0643ACAA819A596A4615FBA + B43DDAF5670237B2469646D5 buildSettings ALWAYS_SEARCH_USER_PATHS NO COPY_PHASE_STRIP - NO + YES DSTROOT /tmp/xcodeproj.dst - GCC_DYNAMIC_NO_PIC - NO - GCC_OPTIMIZATION_LEVEL - 0 GCC_PRECOMPILE_PREFIX_HEADER YES GCC_PREFIX_HEADER - Target Support Files/Pods-NSString-HYPNetworking/Pods-NSString-HYPNetworking-prefix.pch - GCC_PREPROCESSOR_DEFINITIONS - - DEBUG=1 - $(inherited) - - GCC_SYMBOLS_PRIVATE_EXTERN - NO + Target Support Files/Pods-NSManagedObject-ANDYObjectIDs/Pods-NSManagedObject-ANDYObjectIDs-prefix.pch INSTALL_PATH $(BUILT_PRODUCTS_DIR) IPHONEOS_DEPLOYMENT_TARGET 7.0 + OTHER_CFLAGS + + -DNS_BLOCK_ASSERTIONS=1 + $(inherited) + + OTHER_CPLUSPLUSFLAGS + + -DNS_BLOCK_ASSERTIONS=1 + $(inherited) + OTHER_LDFLAGS OTHER_LIBTOOLFLAGS @@ -1705,75 +1792,51 @@ iphoneos SKIP_INSTALL YES + VALIDATE_PRODUCT + YES isa XCBuildConfiguration name - Debug + Release - 7FBD877E8D3B91198D86D02A + 8A5ACD1045E14CD42CB6590A - buildConfigurationList - A5525314645ADBAC057689D3 - buildPhases - - 7F1BE833DAFEC669E4ADA51F - 9305C3FA4B2CDF911EF5ACEF - - buildRules - - dependencies - - 1093553A1218E79DCECDB5AB - F60411930E276C0B9B8D12B0 - 49501B0055269E08AC21A4F2 - 8EBACCAFC0B699D4803237B2 - 435AC1402CBF95808C2FB54B - 63369DD8FD7E3DD832DD1071 - B5D284F2AD686869B9269C2A - + fileRef + BB0812F2C49500928FEA4C87 isa - PBXNativeTarget - name - Pods - productName - Pods - productReference - 5B9EA7126AE80A29455E9E8A - productType - com.apple.product-type.library.static + PBXBuildFile - 84500D6FD09DCD2B3E32903F + 8B06752554F40AC56AFE07B6 baseConfigurationReference - 57A4C28FA0E881506C553A5B + EB11E861FB199B78BDB9D979 buildSettings ALWAYS_SEARCH_USER_PATHS NO COPY_PHASE_STRIP - NO + YES DSTROOT /tmp/xcodeproj.dst - GCC_DYNAMIC_NO_PIC - NO - GCC_OPTIMIZATION_LEVEL - 0 GCC_PRECOMPILE_PREFIX_HEADER YES GCC_PREFIX_HEADER - Target Support Files/Pods-NSDictionary-ANDYSafeValue/Pods-NSDictionary-ANDYSafeValue-prefix.pch - GCC_PREPROCESSOR_DEFINITIONS - - DEBUG=1 - $(inherited) - - GCC_SYMBOLS_PRIVATE_EXTERN - NO + Target Support Files/Pods-NSManagedObject-ANDYMapChanges/Pods-NSManagedObject-ANDYMapChanges-prefix.pch INSTALL_PATH $(BUILT_PRODUCTS_DIR) IPHONEOS_DEPLOYMENT_TARGET 7.0 + OTHER_CFLAGS + + -DNS_BLOCK_ASSERTIONS=1 + $(inherited) + + OTHER_CPLUSPLUSFLAGS + + -DNS_BLOCK_ASSERTIONS=1 + $(inherited) + OTHER_LDFLAGS OTHER_LIBTOOLFLAGS @@ -1786,111 +1849,224 @@ iphoneos SKIP_INSTALL YES + VALIDATE_PRODUCT + YES isa XCBuildConfiguration name - Debug + Release + + 8FA0168A136588FD800334EC + + buildActionMask + 2147483647 + files + + 27A6E98BB3E06AB67FC32D28 + + isa + PBXFrameworksBuildPhase + runOnlyForDeploymentPostprocessing + 0 + + 90B62B85CEFC82BB24977DF2 + + fileRef + 54A3C2B617271E12A863FA17 + isa + PBXBuildFile + + 90FEC8FED9031AFB962BCD15 + + children + + 5044C32E73DE1044F6C97BC9 + 75420D4BABA33E46A6D32374 + E3DA54B916EB1A3B45EB758D + DC23E20D721950BF752D8B12 + + isa + PBXGroup + name + Support Files + path + ../Target Support Files/Pods-DATAStack + sourceTree + <group> + + 945ADC814CF3EA256D9709A7 + + explicitFileType + archive.ar + includeInIndex + 0 + isa + PBXFileReference + path + libPods-NSManagedObject-ANDYObjectIDs.a + sourceTree + BUILT_PRODUCTS_DIR + + 96C457063987E266FFB32F6A + + children + + 484E27B86AC378D66D209DC5 + 53A33DB506370958E57EB999 + 0D3E321D479EBA602E5B9A4F + + isa + PBXGroup + name + NSManagedObject-ANDYObjectIDs + path + NSManagedObject-ANDYObjectIDs + sourceTree + <group> + + 9734FF221F4BCB4AA1CE3AFC + + buildConfigurations + + 1EB5C971A38F758D860D85AC + 10C4D091CC78AA685AE7233B + + defaultConfigurationIsVisible + 0 + defaultConfigurationName + Release + isa + XCConfigurationList + + 974722A8AA002120B2C44FA3 + + fileRef + AAFB79C7812F7F57924FE2AF + isa + PBXBuildFile - 8687022FA76C041F2A7E4AD9 + 9776C897F93E8F2CC57B49A9 includeInIndex 1 isa PBXFileReference lastKnownFileType - sourcecode.c.objc + text + name + Podfile path - Pods-NSDictionary-ANDYSafeValue-dummy.m + ../Podfile + sourceTree + SOURCE_ROOT + xcLanguageSpecificationIdentifier + xcode.lang.ruby + + 97EBE8D928C6F979DAEA9338 + + buildActionMask + 2147483647 + files + + F30CBA5B9D7A6E28C85B9E03 + E1B123584815579ABB1D2970 + + isa + PBXFrameworksBuildPhase + runOnlyForDeploymentPostprocessing + 0 + + 98CA290AC8EA4E1FE9BE56AF + + includeInIndex + 1 + isa + PBXFileReference + lastKnownFileType + text.xcconfig + path + Pods-NSJSONSerialization-ANDYJSONFile.xcconfig sourceTree <group> - 8773A3F8F3C6D4C41571DD82 + 99CBDADBA4FD94EF91658094 fileRef - E7286FC5A450D2D758FE82DF + AAFB79C7812F7F57924FE2AF isa PBXBuildFile - 8B666B1E4F416CFFA05B0D0A + 9CC751198DE0E853E8917A4C + + isa + PBXTargetDependency + name + Pods-NSManagedObject-ANDYObjectIDs + target + BC262CB06B7D29C51FA93E1D + targetProxy + FEB690D2F0F957E477961DFF + + 9E4171A620CDD9A3228F8AC2 children - CE8CFE7726B1743549755D99 + DEC484DA37CDF1E743807340 + 159D3323583F21095EDEDFD9 + EA723EBE48A4D26E314C0E77 + C08CBAD8B279E22D7CEF38AF + 96C457063987E266FFB32F6A + 4403C69944ACBEACCA808579 + EABA878DF06BC7CF43741FF4 isa PBXGroup name - Frameworks + Pods sourceTree <group> - 8D93669A4854AA4D02203452 + 9EF5A4C159C7C4830A2961E2 - baseConfigurationReference - 33BD3D018345823DDAF5A13D - buildSettings - - ALWAYS_SEARCH_USER_PATHS - NO - COPY_PHASE_STRIP - NO - DSTROOT - /tmp/xcodeproj.dst - GCC_DYNAMIC_NO_PIC - NO - GCC_OPTIMIZATION_LEVEL - 0 - GCC_PRECOMPILE_PREFIX_HEADER - YES - GCC_PREFIX_HEADER - Target Support Files/Pods-ANDYDataStack/Pods-ANDYDataStack-prefix.pch - GCC_PREPROCESSOR_DEFINITIONS - - DEBUG=1 - $(inherited) - - GCC_SYMBOLS_PRIVATE_EXTERN - NO - INSTALL_PATH - $(BUILT_PRODUCTS_DIR) - IPHONEOS_DEPLOYMENT_TARGET - 7.0 - OTHER_LDFLAGS - - OTHER_LIBTOOLFLAGS - - PRODUCT_NAME - $(TARGET_NAME) - PUBLIC_HEADERS_FOLDER_PATH - $(TARGET_NAME) - SDKROOT - iphoneos - SKIP_INSTALL - YES - + fileRef + F44F08F6DB0AC633091E7B77 isa - XCBuildConfiguration - name - Debug + PBXBuildFile - 8EBACCAFC0B699D4803237B2 + A2666241A53E25947DF5818A + includeInIndex + 1 isa - PBXTargetDependency - name - Pods-NSManagedObject-ANDYMapChanges - target - E6AF751A17DAC3A4FEDF7BF1 - targetProxy - D31E38B17CCF2B2651CBD1AB + PBXFileReference + lastKnownFileType + sourcecode.c.h + path + Pods-NSManagedObject-ANDYObjectIDs-prefix.pch + sourceTree + <group> + + A368680F7962E44A9C0B9EE3 + + buildActionMask + 2147483647 + files + + CB5474743AE260A645DFB75A + 7A7F2E760113ACE7A3C3A514 + + isa + PBXSourcesBuildPhase + runOnlyForDeploymentPostprocessing + 0 - 8F5E210254D93E9E5EA6058B + A4D7536AAA433E8D23C98FAA buildConfigurations - 7F32CA7F938BF0AE7A3B2360 - 441854C5BCD46CD3A37D6F63 + 6AC12D1AD78539823AE76C3D + D3D0B3FD93B9B74250E573AE defaultConfigurationIsVisible 0 @@ -1899,72 +2075,104 @@ isa XCConfigurationList - 9305C3FA4B2CDF911EF5ACEF + A92181E1ACDF08D8EC3E742E - buildActionMask - 2147483647 - files - - 47768373F86CC82509EF7B93 - + fileRef + CC9CB6E4731EB5FA45953D49 isa - PBXFrameworksBuildPhase - runOnlyForDeploymentPostprocessing - 0 + PBXBuildFile + settings + + COMPILER_FLAGS + -DOS_OBJECT_USE_OBJC=0 + - 95813FFF8AE056013939F4D1 + AAFB79C7812F7F57924FE2AF - containerPortal - 2C50A3D28AD5A5B018CBEFA0 isa - PBXContainerItemProxy - proxyType - 1 - remoteGlobalIDString - 971A3ED229C482F44B1E7E9E - remoteInfo - Pods-NSJSONSerialization-ANDYJSONFile + PBXFileReference + lastKnownFileType + wrapper.framework + name + Foundation.framework + path + Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/System/Library/Frameworks/Foundation.framework + sourceTree + DEVELOPER_DIR - 9658E555C14345CBC52CDBCE + AC1B76C22593C4529205A0AE - buildActionMask - 2147483647 - files - - 9B245B0D5BAAE8CE66E4EED8 - B5CE8FC7E9DB550A2486662C - + fileRef + F46AAAA8259CDC0755CE3B92 isa - PBXSourcesBuildPhase - runOnlyForDeploymentPostprocessing - 0 + PBXBuildFile - 971A3ED229C482F44B1E7E9E + AD6E5DC4DAEEE90B3AC7C8E0 buildConfigurationList - 5E4333614A659A9DEA36F993 + 3F517E2479A28FAD535C8BF3 buildPhases - 2DD20EC64A49AA2851974CE4 - 045B13196C04B846FA28A5B5 - FFD9E890E8EEB264843D27C6 + 889F2F697888A00FEA950E1E + 97EBE8D928C6F979DAEA9338 + FE66CFEDC4521D003B930CF6 buildRules dependencies - + + 31AF880181F7C0DD7BFDECB8 + isa PBXNativeTarget name - Pods-NSJSONSerialization-ANDYJSONFile + Pods-NSManagedObject-ANDYMapChanges productName - Pods-NSJSONSerialization-ANDYJSONFile + Pods-NSManagedObject-ANDYMapChanges productReference - 5F3637940A9A12082F0A4708 + 2EDE59DCFE5985E74B54A8C6 productType com.apple.product-type.library.static - 9A84DAD3EA87340575C37906 + B115CAD9881626160DCCCEA8 + + fileRef + 584B43EA865BB22E61766C99 + isa + PBXBuildFile + + B180D7C6F35812F99EECF4F8 + + children + + F046D8FD823BF6F91F5C4CDE + 700E8411D1E766A4B2AB432F + FF126F397C4AD20985142A81 + 01CB2B0136FEC36338E8F90A + + isa + PBXGroup + name + Support Files + path + ../Target Support Files/Pods-NSManagedObject-HYPPropertyMapper + sourceTree + <group> + + B43DDAF5670237B2469646D5 + + includeInIndex + 1 + isa + PBXFileReference + lastKnownFileType + text.xcconfig + path + Pods-NSManagedObject-ANDYObjectIDs-Private.xcconfig + sourceTree + <group> + + B5C677822D29E52BF66D6E04 includeInIndex 1 @@ -1973,137 +2181,131 @@ lastKnownFileType sourcecode.c.objc path - Pods-ANDYDataStack-dummy.m + Pods-NSManagedObject-ANDYObjectIDs-dummy.m sourceTree <group> - 9B245B0D5BAAE8CE66E4EED8 + B6EA9ABB21E47D2BF9DEB5AD - fileRef - 506F201D9CA04675165C4619 + explicitFileType + archive.ar + includeInIndex + 0 isa - PBXBuildFile + PBXFileReference + path + libPods.a + sourceTree + BUILT_PRODUCTS_DIR - 9B917938EE03D6D04EDD636A + B6F5461ED9A8D4E6D6CD1C63 includeInIndex 1 isa PBXFileReference lastKnownFileType - sourcecode.c.h - name - NSJSONSerialization+ANDYJSONFile.h + sourcecode.c.objc path - NSJSONSerialization-ANDYJSONFile/NSJSONSerialization+ANDYJSONFile.h + Pods-NSJSONSerialization-ANDYJSONFile-dummy.m sourceTree <group> - 9C0AA947E9492BFBCB92DC12 + BB0812F2C49500928FEA4C87 - buildConfigurations - - 171F113A3095B27E3778A8C2 - B78FB9CC18710B7112B8E1E7 - - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release + includeInIndex + 1 isa - XCConfigurationList + PBXFileReference + lastKnownFileType + sourcecode.c.objc + name + NSManagedObject+ANDYMapChanges.m + path + Source/NSManagedObject+ANDYMapChanges.m + sourceTree + <group> - 9D0A584298DB83B2872CA018 + BC262CB06B7D29C51FA93E1D - fileRef - ABC3B2DDED0E2D99AA213D38 + buildConfigurationList + 3CF0ADD1AC8EE085194A6493 + buildPhases + + 086A601741ACF826DFC71551 + EFC71B149E1C6E93BF4A40B8 + 3BC862F1DE084F261E05FCC1 + + buildRules + + dependencies + isa - PBXBuildFile + PBXNativeTarget + name + Pods-NSManagedObject-ANDYObjectIDs + productName + Pods-NSManagedObject-ANDYObjectIDs + productReference + 945ADC814CF3EA256D9709A7 + productType + com.apple.product-type.library.static - 9F183F537A5405EEC8901C6D + BE59987E13A68706EFDE93FF buildActionMask 2147483647 files - 9D0A584298DB83B2872CA018 - 46ED8EF4AD78E653FCA67FC7 + 580E2E245F61AC316B501012 isa - PBXFrameworksBuildPhase + PBXSourcesBuildPhase runOnlyForDeploymentPostprocessing 0 - A00C7B94C6EB626F5985CD5D + C08CBAD8B279E22D7CEF38AF - baseConfigurationReference - 1F42B7326FE99B95E5847A3E - buildSettings - - ALWAYS_SEARCH_USER_PATHS - NO - COPY_PHASE_STRIP - YES - DSTROOT - /tmp/xcodeproj.dst - GCC_PRECOMPILE_PREFIX_HEADER - YES - INSTALL_PATH - $(BUILT_PRODUCTS_DIR) - IPHONEOS_DEPLOYMENT_TARGET - 7.0 - OTHER_CFLAGS - - -DNS_BLOCK_ASSERTIONS=1 - $(inherited) - - OTHER_CPLUSPLUSFLAGS - - -DNS_BLOCK_ASSERTIONS=1 - $(inherited) - - OTHER_LDFLAGS - - OTHER_LIBTOOLFLAGS - - PRODUCT_NAME - $(TARGET_NAME) - PUBLIC_HEADERS_FOLDER_PATH - $(TARGET_NAME) - SDKROOT - iphoneos - SKIP_INSTALL - YES - VALIDATE_PRODUCT - YES - + children + + 22900189F1A80D4555B5E593 + BB0812F2C49500928FEA4C87 + 16C77840DA561770BA67A1AA + isa - XCBuildConfiguration + PBXGroup name - Release + NSManagedObject-ANDYMapChanges + path + NSManagedObject-ANDYMapChanges + sourceTree + <group> - A4797997B807FBC0D9A8B90C + C0972A3DFE690056F3DAE6B3 - fileRef - C4BBA5973525B9373735512E isa - PBXBuildFile + PBXTargetDependency + name + Pods-DATAStack + target + 2ACCB1714764FDA78733D983 + targetProxy + 87181FE98D3A558354F7F725 - A5525314645ADBAC057689D3 + C1CFB5C8D29B0BC6156AAFA4 - buildConfigurations - - 3FD5DAB0EBCCB8E44907119B - A00C7B94C6EB626F5985CD5D - - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release + includeInIndex + 1 isa - XCConfigurationList + PBXFileReference + lastKnownFileType + text.xcconfig + path + Pods-NSJSONSerialization-ANDYJSONFile-Private.xcconfig + sourceTree + <group> - A790C1A23FA2F1412FDBCACE + C330788A70DB123E18E991BE includeInIndex 1 @@ -2118,78 +2320,68 @@ sourceTree <group> - A7B8B02471258229F175F2A0 - - fileRef - 378DD55393B03706D9EFED87 - isa - PBXBuildFile - settings - - COMPILER_FLAGS - -DOS_OBJECT_USE_OBJC=0 - - - A7D81AD8CB1920F46BC44117 + C3D260C2CE9DD529B98ACEBB includeInIndex 1 isa PBXFileReference lastKnownFileType - sourcecode.c.objc + sourcecode.c.h name - NSManagedObject+ANDYObjectIDs.m + NSString+HYPNetworking.h path - Source/NSManagedObject+ANDYObjectIDs.m + Source/NSString+HYPNetworking.h sourceTree <group> - ABC3B2DDED0E2D99AA213D38 + C547D60451823D1B1A7F7357 + includeInIndex + 1 isa PBXFileReference lastKnownFileType - wrapper.framework - name - CoreData.framework + sourcecode.c.h path - Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/System/Library/Frameworks/CoreData.framework + Pods-NSJSONSerialization-ANDYJSONFile-prefix.pch sourceTree - DEVELOPER_DIR + <group> - ADB8A54A7710BB67AD62CA99 + C615B29CEC14F7FBD59F2118 + + containerPortal + CEFCB0026FE52E16CB98B492 + isa + PBXContainerItemProxy + proxyType + 1 + remoteGlobalIDString + D63F91113BA9137F669EDA5A + remoteInfo + Pods-NSJSONSerialization-ANDYJSONFile + + C87C0CADA9CA9177E26F6A98 - explicitFileType - archive.ar includeInIndex - 0 + 1 isa PBXFileReference + lastKnownFileType + text.xcconfig path - libPods-ANDYDataStack.a + Pods-NSManagedObject-ANDYObjectIDs.xcconfig sourceTree - BUILT_PRODUCTS_DIR + <group> - AFC041EC18F7AB525D5C9BAF + CB5474743AE260A645DFB75A - children - - BBC9CE03CE0CF53573B8BD8D - E0643ACAA819A596A4615FBA - B5901B04A87F9B6F022159F7 - 4401BEB721A1C93D8632F527 - + fileRef + 5659C4F60D9E22C99295BAF9 isa - PBXGroup - name - Support Files - path - ../Target Support Files/Pods-NSString-HYPNetworking - sourceTree - <group> + PBXBuildFile - B16CD69EC3CE821B8090FCD2 + CB9D4CD4AF1DD50189675EF8 includeInIndex 1 @@ -2198,89 +2390,119 @@ lastKnownFileType sourcecode.c.objc path - Pods-NSJSONSerialization-ANDYJSONFile-dummy.m + Pods-dummy.m sourceTree <group> - B414D376C7CA8B6A8C98C552 + CC9CB6E4731EB5FA45953D49 includeInIndex 1 isa PBXFileReference lastKnownFileType - text.xcconfig + sourcecode.c.objc + name + DATAStack.m path - Pods-NSManagedObject-ANDYMapChanges-Private.xcconfig + Source/DATAStack.m sourceTree <group> - B5901B04A87F9B6F022159F7 + CEFCB0026FE52E16CB98B492 + + attributes + + LastUpgradeCheck + 0510 + + buildConfigurationList + 5FD9483945BC5E58858F8A6A + compatibilityVersion + Xcode 3.2 + developmentRegion + English + hasScannedForEncodings + 0 + isa + PBXProject + knownRegions + + en + + mainGroup + 1C6394A5D27A6C2A58B9EE99 + productRefGroup + 3833A5698A3D95C8A96DD116 + projectDirPath + + projectReferences + + projectRoot + + targets + + 1852400A9DB141E3BEBD6511 + 2ACCB1714764FDA78733D983 + F2A2DCC8E231E828FF92C6F6 + D63F91113BA9137F669EDA5A + AD6E5DC4DAEEE90B3AC7C8E0 + BC262CB06B7D29C51FA93E1D + 46CB544D0ADD5D47603B1E18 + 6D6ADAAAAC37C23DB40F340B + + + D0A2A2970FB5FCF445690462 includeInIndex 1 isa PBXFileReference lastKnownFileType - sourcecode.c.objc + text.xcconfig path - Pods-NSString-HYPNetworking-dummy.m + Pods-NSManagedObject-ANDYMapChanges.xcconfig sourceTree <group> - B5C9D78653026848E0823DDB + D0BB136FCEB01DEF98E207CE includeInIndex 1 isa PBXFileReference lastKnownFileType - text.xcconfig + sourcecode.c.objc path - Pods-NSManagedObject-ANDYObjectIDs.xcconfig + Pods-NSDictionary-ANDYSafeValue-dummy.m sourceTree <group> - B5CE74E430E0171157CD63DB + D20D3273BE1ACE9A91610DC1 children - D308AD9827498FFED793C3D1 - 33BD3D018345823DDAF5A13D - 9A84DAD3EA87340575C37906 - 0692C0C4F5B4F036C39C8959 + F40F81234ED8268675B50FA4 + 3F370197E01F4189DDB58400 + CB9D4CD4AF1DD50189675EF8 + DBC9792C3774E5F85E4E3F93 + 7FD99A1F11A597FD27334956 + 00B9D0FF8FEA26A4241442E5 + DB37069B76AFF3C4DB90452B isa PBXGroup name - Support Files + Pods path - ../Target Support Files/Pods-ANDYDataStack + Target Support Files/Pods sourceTree <group> - B5CE8FC7E9DB550A2486662C - - fileRef - B5901B04A87F9B6F022159F7 - isa - PBXBuildFile - - B5D284F2AD686869B9269C2A - - isa - PBXTargetDependency - name - Pods-NSString-HYPNetworking - target - 26C2F92A313782230312378E - targetProxy - BDE60CF793EC8AD14F7F0DF2 - - B78FB9CC18710B7112B8E1E7 + D3D0B3FD93B9B74250E573AE baseConfigurationReference - 5B0628028ACEAA3B7831D6D5 + 700E8411D1E766A4B2AB432F buildSettings ALWAYS_SEARCH_USER_PATHS @@ -2292,7 +2514,7 @@ GCC_PRECOMPILE_PREFIX_HEADER YES GCC_PREFIX_HEADER - Target Support Files/Pods-NSManagedObject-ANDYObjectIDs/Pods-NSManagedObject-ANDYObjectIDs-prefix.pch + Target Support Files/Pods-NSManagedObject-HYPPropertyMapper/Pods-NSManagedObject-HYPPropertyMapper-prefix.pch INSTALL_PATH $(BUILT_PRODUCTS_DIR) IPHONEOS_DEPLOYMENT_TARGET @@ -2327,105 +2549,53 @@ name Release - B8C879F683BA9F0FA5C8EC63 - - fileRef - 8687022FA76C041F2A7E4AD9 - isa - PBXBuildFile - - BA6ADCB016CFFF6CE0D1A22E - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - text.xcconfig - path - Pods-NSManagedObject-HYPPropertyMapper-Private.xcconfig - sourceTree - <group> - - BAA8D2912FEE5DEBE9DD256D + D5E113083E9F876EBA5A5BB8 - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - Pods-NSManagedObject-ANDYObjectIDs-dummy.m - sourceTree - <group> - - BBC9CE03CE0CF53573B8BD8D - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - text.xcconfig - path - Pods-NSString-HYPNetworking.xcconfig - sourceTree - <group> - - BD0C618EB89BAB5B056C10B6 - - explicitFileType - archive.ar - includeInIndex + buildConfigurations + + 2955AD58ECEB2226167867F6 + 18CD0AD1255AEC9B56DC43CE + + defaultConfigurationIsVisible 0 + defaultConfigurationName + Release isa - PBXFileReference - path - libPods-NSManagedObject-ANDYObjectIDs.a - sourceTree - BUILT_PRODUCTS_DIR - - BD928CBBF51DC841A8ED3F13 - - containerPortal - 2C50A3D28AD5A5B018CBEFA0 - isa - PBXContainerItemProxy - proxyType - 1 - remoteGlobalIDString - 53A8623F7943ECA9D048418B - remoteInfo - Pods-NSManagedObject-ANDYObjectIDs + XCConfigurationList - BD947EA954B8C317AB952A29 + D63F91113BA9137F669EDA5A - containerPortal - 2C50A3D28AD5A5B018CBEFA0 + buildConfigurationList + 04343217C8788D7319A9F9D7 + buildPhases + + 322286581A0B9FDB46CE3462 + 40E79B56C52C99413784777C + 5810898416EFCAAAA3E571E0 + + buildRules + + dependencies + isa - PBXContainerItemProxy - proxyType - 1 - remoteGlobalIDString - 26C2F92A313782230312378E - remoteInfo - Pods-NSString-HYPNetworking + PBXNativeTarget + name + Pods-NSJSONSerialization-ANDYJSONFile + productName + Pods-NSJSONSerialization-ANDYJSONFile + productReference + 6B33AFE59CE2A6B7BFB58405 + productType + com.apple.product-type.library.static - BDE60CF793EC8AD14F7F0DF2 + D72584FBA96760C1F29B97A2 - containerPortal - 2C50A3D28AD5A5B018CBEFA0 + fileRef + 499B0D2567F5B806A946424E isa - PBXContainerItemProxy - proxyType - 1 - remoteGlobalIDString - 26C2F92A313782230312378E - remoteInfo - Pods-NSString-HYPNetworking + PBXBuildFile - BEDD4CE3A263943700AE84F3 + DB37069B76AFF3C4DB90452B includeInIndex 1 @@ -2434,24 +2604,11 @@ lastKnownFileType text.xcconfig path - Pods-NSDictionary-ANDYSafeValue.xcconfig - sourceTree - <group> - - C18C78A69A469DB60C480F3A - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - Pods-NSManagedObject-HYPPropertyMapper-prefix.pch + Pods.release.xcconfig sourceTree <group> - C28830958346540031462A25 + DBC9792C3774E5F85E4E3F93 includeInIndex 1 @@ -2459,14 +2616,12 @@ PBXFileReference lastKnownFileType sourcecode.c.h - name - NSManagedObject+ANDYMapChanges.h path - Source/NSManagedObject+ANDYMapChanges.h + Pods-environment.h sourceTree <group> - C4BBA5973525B9373735512E + DC23E20D721950BF752D8B12 includeInIndex 1 @@ -2474,110 +2629,39 @@ PBXFileReference lastKnownFileType sourcecode.c.h - name - NSManagedObject+ANDYObjectIDs.h - path - Source/NSManagedObject+ANDYObjectIDs.h - sourceTree - <group> - - C58E90C5A22D442C2FE8927E - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - text.xcconfig - path - Pods-NSManagedObject-ANDYMapChanges.xcconfig - sourceTree - <group> - - C737C5FA2BC3AFC2DC7DD372 - - children - - F3E58F668068E10267129CD4 - EDB7378B9F95486CA9C43A6A - CFB23FA1CAF52C9BAF8F5CFB - 3111A76EB90A80361F14C302 - 0881B8CF4B24E5396A95AC57 - 72FF29991CABE5869F8C67BA - 1F42B7326FE99B95E5847A3E - - isa - PBXGroup - name - Pods path - Target Support Files/Pods + Pods-DATAStack-prefix.pch sourceTree <group> - CA61BCAA5F08E143AC6D8508 - - fileRef - BAA8D2912FEE5DEBE9DD256D - isa - PBXBuildFile - - CD46A35DB8D3E46F6D380AFB + DE0766A0E60801CAE465380A fileRef - CFB23FA1CAF52C9BAF8F5CFB + 53A33DB506370958E57EB999 isa PBXBuildFile - CE8CFE7726B1743549755D99 + DEC484DA37CDF1E743807340 children - ABC3B2DDED0E2D99AA213D38 - E7286FC5A450D2D758FE82DF + 499B0D2567F5B806A946424E + CC9CB6E4731EB5FA45953D49 + 90FEC8FED9031AFB962BCD15 isa PBXGroup name - iOS - sourceTree - <group> - - CFB23FA1CAF52C9BAF8F5CFB - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc - path - Pods-dummy.m - sourceTree - <group> - - D12CB5BD1D7A2EA9925BC027 - - fileRef - 310B3F5489816714BFD8B77B - isa - PBXBuildFile - - D197A6C622EE1B29B58EEBE5 - - isa - PBXTargetDependency - name - Pods-NSString-HYPNetworking - target - 26C2F92A313782230312378E - targetProxy - BD947EA954B8C317AB952A29 + DATAStack + path + DATAStack + sourceTree + <group> - D19C2E0FDAADF91388EF1C91 + E0F8B7A34C3578B46F2E9D6B baseConfigurationReference - BA6ADCB016CFFF6CE0D1A22E + 75420D4BABA33E46A6D32374 buildSettings ALWAYS_SEARCH_USER_PATHS @@ -2593,7 +2677,7 @@ GCC_PRECOMPILE_PREFIX_HEADER YES GCC_PREFIX_HEADER - Target Support Files/Pods-NSManagedObject-HYPPropertyMapper/Pods-NSManagedObject-HYPPropertyMapper-prefix.pch + Target Support Files/Pods-DATAStack/Pods-DATAStack-prefix.pch GCC_PREPROCESSOR_DEFINITIONS DEBUG=1 @@ -2623,7 +2707,14 @@ name Debug - D308AD9827498FFED793C3D1 + E1B123584815579ABB1D2970 + + fileRef + AAFB79C7812F7F57924FE2AF + isa + PBXBuildFile + + E1B6B28C17FE79D8137F1F29 includeInIndex 1 @@ -2632,94 +2723,87 @@ lastKnownFileType text.xcconfig path - Pods-ANDYDataStack.xcconfig + Pods-NSString-HYPNetworking.xcconfig sourceTree <group> - D31E38B17CCF2B2651CBD1AB + E20756A0037E98E83B393A58 + + fileRef + AAFB79C7812F7F57924FE2AF + isa + PBXBuildFile + + E28EDB4D31A8655F3F7BA832 containerPortal - 2C50A3D28AD5A5B018CBEFA0 + CEFCB0026FE52E16CB98B492 isa PBXContainerItemProxy proxyType 1 remoteGlobalIDString - E6AF751A17DAC3A4FEDF7BF1 + 6D6ADAAAAC37C23DB40F340B remoteInfo - Pods-NSManagedObject-ANDYMapChanges - - D34A55C0DE8F0E1740B22BBE - - fileRef - 63B4D407F041125F7B3AD8A1 - isa - PBXBuildFile - - D385552845713519707D4935 - - fileRef - ABC3B2DDED0E2D99AA213D38 - isa - PBXBuildFile + Pods-NSString-HYPNetworking - D3C9321B4678067738335940 + E3DA54B916EB1A3B45EB758D - fileRef - 9A84DAD3EA87340575C37906 + includeInIndex + 1 isa - PBXBuildFile + PBXFileReference + lastKnownFileType + sourcecode.c.objc + path + Pods-DATAStack-dummy.m + sourceTree + <group> - D49B7846768A0BB37629A77B + E45E9D93FC9A489DD49EF0A3 - children - - 5B9EA7126AE80A29455E9E8A - ADB8A54A7710BB67AD62CA99 - 7C460D0DC9FDB6A24EC853B5 - 5F3637940A9A12082F0A4708 - 6681C58B0CF9A5AB980E71D7 - BD0C618EB89BAB5B056C10B6 - E3E5C4F3172CFF66DDF621A9 - EBA53DE0CE8BCD4FEFECEA0C - + includeInIndex + 1 isa - PBXGroup - name - Products + PBXFileReference + lastKnownFileType + text.xcconfig + path + Pods-NSDictionary-ANDYSafeValue.xcconfig sourceTree <group> - D606C645AACD35EF5C08B568 + E8590931FAF0DC9A45DFA72D baseConfigurationReference - B414D376C7CA8B6A8C98C552 + C1CFB5C8D29B0BC6156AAFA4 buildSettings ALWAYS_SEARCH_USER_PATHS NO COPY_PHASE_STRIP - YES + NO DSTROOT /tmp/xcodeproj.dst + GCC_DYNAMIC_NO_PIC + NO + GCC_OPTIMIZATION_LEVEL + 0 GCC_PRECOMPILE_PREFIX_HEADER YES GCC_PREFIX_HEADER - Target Support Files/Pods-NSManagedObject-ANDYMapChanges/Pods-NSManagedObject-ANDYMapChanges-prefix.pch + Target Support Files/Pods-NSJSONSerialization-ANDYJSONFile/Pods-NSJSONSerialization-ANDYJSONFile-prefix.pch + GCC_PREPROCESSOR_DEFINITIONS + + DEBUG=1 + $(inherited) + + GCC_SYMBOLS_PRIVATE_EXTERN + NO INSTALL_PATH $(BUILT_PRODUCTS_DIR) IPHONEOS_DEPLOYMENT_TARGET 7.0 - OTHER_CFLAGS - - -DNS_BLOCK_ASSERTIONS=1 - $(inherited) - - OTHER_CPLUSPLUSFLAGS - - -DNS_BLOCK_ASSERTIONS=1 - $(inherited) - OTHER_LDFLAGS OTHER_LIBTOOLFLAGS @@ -2732,116 +2816,91 @@ iphoneos SKIP_INSTALL YES - VALIDATE_PRODUCT - YES isa XCBuildConfiguration name - Release + Debug - D841181111C4604BAD028F52 + EA723EBE48A4D26E314C0E77 - buildActionMask - 2147483647 - files + children - A4797997B807FBC0D9A8B90C + 37BDA25956BF3767F78AF388 + 5FE1AE403F7027A165AECE27 + 2D5965A435DB84F7FD8EB52F isa - PBXHeadersBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - D8DF4891D6D0447CD8CAE1CD - - isa - PBXTargetDependency - name - Pods-NSManagedObject-ANDYObjectIDs - target - 53A8623F7943ECA9D048418B - targetProxy - 1A01CBA65B6AE5C0BDE39B86 - - DCF6BB349551407F7FB0F81A - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.objc + PBXGroup name - NSManagedObject+ANDYMapChanges.m + NSJSONSerialization-ANDYJSONFile path - Source/NSManagedObject+ANDYMapChanges.m + NSJSONSerialization-ANDYJSONFile sourceTree <group> - DF11AB23F585E7A59365454F + EABA878DF06BC7CF43741FF4 - buildConfigurations + children - 29CA43208F6E159F782B9942 - D606C645AACD35EF5C08B568 + C3D260C2CE9DD529B98ACEBB + 54A3C2B617271E12A863FA17 + 3FA6A2A71FC1CE30287EE9F5 - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release - isa - XCConfigurationList - - E0643ACAA819A596A4615FBA - - includeInIndex - 1 isa - PBXFileReference - lastKnownFileType - text.xcconfig + PBXGroup + name + NSString-HYPNetworking path - Pods-NSString-HYPNetworking-Private.xcconfig + NSString-HYPNetworking sourceTree <group> - E0C7C682861449EEFB5C5F8F - - fileRef - A7D81AD8CB1920F46BC44117 - isa - PBXBuildFile - - E2F0D2D6829BDB34647AF3EA + EB11E861FB199B78BDB9D979 includeInIndex 1 isa PBXFileReference lastKnownFileType - sourcecode.c.objc - name - NSDictionary+ANDYSafeValue.m + text.xcconfig path - Source/NSDictionary+ANDYSafeValue.m + Pods-NSManagedObject-ANDYMapChanges-Private.xcconfig sourceTree <group> - E392BF0A022CB56C19FF09C4 + EE57871B227469EDBC2225AB buildActionMask 2147483647 files - 45B948315332B2B56E87F05D + 2D271C701C663AB6F45130B4 isa - PBXFrameworksBuildPhase + PBXHeadersBuildPhase runOnlyForDeploymentPostprocessing 0 - E3E5C4F3172CFF66DDF621A9 + EECCDCCA431C90169D592BED + + children + + E45E9D93FC9A489DD49EF0A3 + 063C93E3FAE8BA8761176D03 + D0BB136FCEB01DEF98E207CE + 1A1D38CF988D6EDB37409BD0 + + isa + PBXGroup + name + Support Files + path + ../Target Support Files/Pods-NSDictionary-ANDYSafeValue + sourceTree + <group> + + EF7206069565986A55B7D745 explicitFileType archive.ar @@ -2850,192 +2909,157 @@ isa PBXFileReference path - libPods-NSManagedObject-HYPPropertyMapper.a + libPods-DATAStack.a sourceTree BUILT_PRODUCTS_DIR - E3E7393633D7B37DD92D1BD6 - - buildActionMask - 2147483647 - files - - D34A55C0DE8F0E1740B22BBE - - isa - PBXHeadersBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - E450A09B713573A05A834248 + EFC71B149E1C6E93BF4A40B8 buildActionMask 2147483647 files - A7B8B02471258229F175F2A0 - D3C9321B4678067738335940 + 64BC46AA9774D79CDD00CB0D + E20756A0037E98E83B393A58 isa - PBXSourcesBuildPhase + PBXFrameworksBuildPhase runOnlyForDeploymentPostprocessing 0 - E46AC30D25CDFC28DBB0C447 + F046D8FD823BF6F91F5C4CDE includeInIndex 1 isa PBXFileReference lastKnownFileType - sourcecode.c.objc - name - NSJSONSerialization+ANDYJSONFile.m - path - NSJSONSerialization-ANDYJSONFile/NSJSONSerialization+ANDYJSONFile.m - sourceTree - <group> - - E53BF253B7BCE7AED844E688 - - children - - BEDD4CE3A263943700AE84F3 - 57A4C28FA0E881506C553A5B - 8687022FA76C041F2A7E4AD9 - 3829A747000AE8FA3F577581 - - isa - PBXGroup - name - Support Files + text.xcconfig path - ../Target Support Files/Pods-NSDictionary-ANDYSafeValue + Pods-NSManagedObject-HYPPropertyMapper.xcconfig sourceTree <group> - E6AF751A17DAC3A4FEDF7BF1 + F0CC5700C2959BC83D435C8C - buildConfigurationList - DF11AB23F585E7A59365454F - buildPhases - - 3089E189CC9C83F8353350A8 - 08B2992A6DE2E70071AC8842 - 414C7B606C3F03971C3F4E66 - - buildRules - - dependencies + buildActionMask + 2147483647 + files - D8DF4891D6D0447CD8CAE1CD + AC1B76C22593C4529205A0AE + 6D26AC53EDC3C2A2C456B6D7 isa - PBXNativeTarget - name - Pods-NSManagedObject-ANDYMapChanges - productName - Pods-NSManagedObject-ANDYMapChanges - productReference - 6681C58B0CF9A5AB980E71D7 - productType - com.apple.product-type.library.static + PBXFrameworksBuildPhase + runOnlyForDeploymentPostprocessing + 0 - E7286FC5A450D2D758FE82DF + F28CB14667D1CC9E2001BFA0 + baseConfigurationReference + 00B9D0FF8FEA26A4241442E5 + buildSettings + + ALWAYS_SEARCH_USER_PATHS + NO + COPY_PHASE_STRIP + NO + DSTROOT + /tmp/xcodeproj.dst + GCC_DYNAMIC_NO_PIC + NO + GCC_OPTIMIZATION_LEVEL + 0 + GCC_PRECOMPILE_PREFIX_HEADER + YES + GCC_PREPROCESSOR_DEFINITIONS + + DEBUG=1 + $(inherited) + + GCC_SYMBOLS_PRIVATE_EXTERN + NO + INSTALL_PATH + $(BUILT_PRODUCTS_DIR) + IPHONEOS_DEPLOYMENT_TARGET + 7.0 + OTHER_LDFLAGS + + OTHER_LIBTOOLFLAGS + + PRODUCT_NAME + $(TARGET_NAME) + PUBLIC_HEADERS_FOLDER_PATH + $(TARGET_NAME) + SDKROOT + iphoneos + SKIP_INSTALL + YES + isa - PBXFileReference - lastKnownFileType - wrapper.framework + XCBuildConfiguration name - Foundation.framework - path - Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/System/Library/Frameworks/Foundation.framework - sourceTree - DEVELOPER_DIR + Debug - E7D5EA7E105FF884E44BAC0D + F2A2DCC8E231E828FF92C6F6 - buildActionMask - 2147483647 - files + buildConfigurationList + D5E113083E9F876EBA5A5BB8 + buildPhases - 4C1E0D0033FAEB84CBE4940F + A368680F7962E44A9C0B9EE3 + 8FA0168A136588FD800334EC + 2A42DF54AEDCBC6B1EA3D516 + buildRules + + dependencies + isa - PBXFrameworksBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - EA85FD91BE7E1C608C0DA4F4 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - sourcecode.c.h - path - Pods-NSManagedObject-ANDYObjectIDs-prefix.pch - sourceTree - <group> + PBXNativeTarget + name + Pods-NSDictionary-ANDYSafeValue + productName + Pods-NSDictionary-ANDYSafeValue + productReference + 03157B8DB7EAFDD4FD7C44C1 + productType + com.apple.product-type.library.static - EB7D94755FD0BD5741407CED + F2FD51F588E26476DA0941F1 fileRef - 141A984B6CB8536A3819F767 + 5FE1AE403F7027A165AECE27 isa PBXBuildFile - EBA53DE0CE8BCD4FEFECEA0C + F30CBA5B9D7A6E28C85B9E03 - explicitFileType - archive.ar - includeInIndex - 0 + fileRef + F46AAAA8259CDC0755CE3B92 isa - PBXFileReference - path - libPods-NSString-HYPNetworking.a - sourceTree - BUILT_PRODUCTS_DIR + PBXBuildFile - ED11A17DA76E4FFAC811EE61 + F3C8673D376AC56616434F23 + baseConfigurationReference + EB11E861FB199B78BDB9D979 buildSettings ALWAYS_SEARCH_USER_PATHS NO - 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 - CLANG_WARN_EMPTY_BODY - YES - CLANG_WARN_ENUM_CONVERSION - YES - CLANG_WARN_INT_CONVERSION - YES - CLANG_WARN_OBJC_ROOT_CLASS - YES COPY_PHASE_STRIP - YES - GCC_C_LANGUAGE_STANDARD - gnu99 + NO + DSTROOT + /tmp/xcodeproj.dst GCC_DYNAMIC_NO_PIC NO GCC_OPTIMIZATION_LEVEL 0 + GCC_PRECOMPILE_PREFIX_HEADER + YES + GCC_PREFIX_HEADER + Target Support Files/Pods-NSManagedObject-ANDYMapChanges/Pods-NSManagedObject-ANDYMapChanges-prefix.pch GCC_PREPROCESSOR_DEFINITIONS DEBUG=1 @@ -3043,205 +3067,181 @@ GCC_SYMBOLS_PRIVATE_EXTERN NO - GCC_WARN_64_TO_32_BIT_CONVERSION - YES - GCC_WARN_ABOUT_RETURN_TYPE - YES - GCC_WARN_UNDECLARED_SELECTOR - YES - GCC_WARN_UNINITIALIZED_AUTOS - YES - GCC_WARN_UNUSED_FUNCTION - YES - GCC_WARN_UNUSED_VARIABLE - YES + INSTALL_PATH + $(BUILT_PRODUCTS_DIR) IPHONEOS_DEPLOYMENT_TARGET 7.0 - ONLY_ACTIVE_ARCH + OTHER_LDFLAGS + + OTHER_LIBTOOLFLAGS + + PRODUCT_NAME + $(TARGET_NAME) + PUBLIC_HEADERS_FOLDER_PATH + $(TARGET_NAME) + SDKROOT + iphoneos + SKIP_INSTALL YES - STRIP_INSTALLED_PRODUCT - NO isa XCBuildConfiguration name Debug - EDB7378B9F95486CA9C43A6A + F40F81234ED8268675B50FA4 includeInIndex 1 isa PBXFileReference lastKnownFileType - text.plist.xml + text path - Pods-acknowledgements.plist + Pods-acknowledgements.markdown sourceTree <group> - EE76BDFAC3A905C446ADE281 - - buildActionMask - 2147483647 - files - - 779CD1F9578E9230A9DEE427 - - isa - PBXHeadersBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - EFED5433184D13BAC2836C7D - - buildActionMask - 2147483647 - files - - E0C7C682861449EEFB5C5F8F - CA61BCAA5F08E143AC6D8508 - - isa - PBXSourcesBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - F3E58F668068E10267129CD4 + F44F08F6DB0AC633091E7B77 includeInIndex 1 isa PBXFileReference lastKnownFileType - text + sourcecode.c.objc path - Pods-acknowledgements.markdown + Pods-NSString-HYPNetworking-dummy.m sourceTree <group> - F3FC7AC9BE3E5DA97C98B869 + F46AAAA8259CDC0755CE3B92 - fileRef - E7286FC5A450D2D758FE82DF isa - PBXBuildFile + PBXFileReference + lastKnownFileType + wrapper.framework + name + CoreData.framework + path + Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/System/Library/Frameworks/CoreData.framework + sourceTree + DEVELOPER_DIR - F60411930E276C0B9B8D12B0 + F70BDAC64A158FBD1F0C4AA9 isa PBXTargetDependency name - Pods-NSDictionary-ANDYSafeValue + Pods-NSJSONSerialization-ANDYJSONFile target - 2BD3A2FB4416F8949C2E7F37 + D63F91113BA9137F669EDA5A targetProxy - 4CBC54272419075DFEBEAD1A - - FA7BB144586D0A0D518C123D - - buildConfigurations - - 8D93669A4854AA4D02203452 - 56EE69DA34289AA2CD3A6FA1 - - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release - isa - XCConfigurationList + C615B29CEC14F7FBD59F2118 - FA8CED37B42620ADB9AD7988 + FC33922D8DDED885FC4B70B0 includeInIndex 1 isa PBXFileReference lastKnownFileType - text.xcconfig + sourcecode.c.h path - Pods-NSJSONSerialization-ANDYJSONFile-Private.xcconfig + Pods-NSString-HYPNetworking-prefix.pch sourceTree <group> - FAC18D9395167AA0CD8A4C8D - - fileRef - E7286FC5A450D2D758FE82DF - isa - PBXBuildFile - - FC53BA6648240FC73E12FCC2 + FE66CFEDC4521D003B930CF6 - buildConfigurations + buildActionMask + 2147483647 + files - ED11A17DA76E4FFAC811EE61 - 1041727467AB22C147398904 + 534F09BD4D0BB3A64DE829E5 - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release - isa - XCConfigurationList - - FD97B1C4167A754DDDBB6A3B - - includeInIndex - 1 isa - PBXFileReference - lastKnownFileType - text.xcconfig - path - Pods-NSJSONSerialization-ANDYJSONFile.xcconfig - sourceTree - <group> + PBXHeadersBuildPhase + runOnlyForDeploymentPostprocessing + 0 - FDA82B41FF97896A3ABD0791 + FEB690D2F0F957E477961DFF containerPortal - 2C50A3D28AD5A5B018CBEFA0 + CEFCB0026FE52E16CB98B492 isa PBXContainerItemProxy proxyType 1 remoteGlobalIDString - 3ADDC5F877CC377F73C980F1 + BC262CB06B7D29C51FA93E1D remoteInfo - Pods-NSManagedObject-HYPPropertyMapper + Pods-NSManagedObject-ANDYObjectIDs - FEDF391FAB72754840E5900B + FF126F397C4AD20985142A81 - children - - 3B8ABB1CF19DFDFD1F745C06 - 8B666B1E4F416CFFA05B0D0A - 3D11B42E033FF23547488113 - D49B7846768A0BB37629A77B - 33CFFEA3ACC8FDC11801C584 - + includeInIndex + 1 isa - PBXGroup + PBXFileReference + lastKnownFileType + sourcecode.c.objc + path + Pods-NSManagedObject-HYPPropertyMapper-dummy.m sourceTree <group> - FFD9E890E8EEB264843D27C6 + FF8800F113EA45487E819F0D - buildActionMask - 2147483647 - files - - 085CD5B0C0FC484907F981E9 - + baseConfigurationReference + B43DDAF5670237B2469646D5 + buildSettings + + ALWAYS_SEARCH_USER_PATHS + NO + COPY_PHASE_STRIP + NO + DSTROOT + /tmp/xcodeproj.dst + GCC_DYNAMIC_NO_PIC + NO + GCC_OPTIMIZATION_LEVEL + 0 + GCC_PRECOMPILE_PREFIX_HEADER + YES + GCC_PREFIX_HEADER + Target Support Files/Pods-NSManagedObject-ANDYObjectIDs/Pods-NSManagedObject-ANDYObjectIDs-prefix.pch + GCC_PREPROCESSOR_DEFINITIONS + + DEBUG=1 + $(inherited) + + GCC_SYMBOLS_PRIVATE_EXTERN + NO + INSTALL_PATH + $(BUILT_PRODUCTS_DIR) + IPHONEOS_DEPLOYMENT_TARGET + 7.0 + OTHER_LDFLAGS + + OTHER_LIBTOOLFLAGS + + PRODUCT_NAME + $(TARGET_NAME) + PUBLIC_HEADERS_FOLDER_PATH + $(TARGET_NAME) + SDKROOT + iphoneos + SKIP_INSTALL + YES + isa - PBXHeadersBuildPhase - runOnlyForDeploymentPostprocessing - 0 + XCBuildConfiguration + name + Debug rootObject - 2C50A3D28AD5A5B018CBEFA0 + CEFCB0026FE52E16CB98B492 diff --git a/Tests/Pods/Target Support Files/Pods-ANDYDataStack/Pods-ANDYDataStack-Private.xcconfig b/Tests/Pods/Target Support Files/Pods-ANDYDataStack/Pods-ANDYDataStack-Private.xcconfig deleted file mode 100644 index 6b8f2145..00000000 --- a/Tests/Pods/Target Support Files/Pods-ANDYDataStack/Pods-ANDYDataStack-Private.xcconfig +++ /dev/null @@ -1,5 +0,0 @@ -#include "Pods-ANDYDataStack.xcconfig" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Build" "${PODS_ROOT}/Headers/Build/ANDYDataStack" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/ANDYDataStack" "${PODS_ROOT}/Headers/Public/NSDictionary-ANDYSafeValue" "${PODS_ROOT}/Headers/Public/NSJSONSerialization-ANDYJSONFile" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYMapChanges" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYObjectIDs" "${PODS_ROOT}/Headers/Public/NSManagedObject-HYPPropertyMapper" "${PODS_ROOT}/Headers/Public/NSString-HYPNetworking" -OTHER_LDFLAGS = ${PODS_ANDYDATASTACK_OTHER_LDFLAGS} -ObjC -PODS_ROOT = ${SRCROOT} \ No newline at end of file diff --git a/Tests/Pods/Target Support Files/Pods-ANDYDataStack/Pods-ANDYDataStack-dummy.m b/Tests/Pods/Target Support Files/Pods-ANDYDataStack/Pods-ANDYDataStack-dummy.m deleted file mode 100644 index 29bf98f2..00000000 --- a/Tests/Pods/Target Support Files/Pods-ANDYDataStack/Pods-ANDYDataStack-dummy.m +++ /dev/null @@ -1,5 +0,0 @@ -#import -@interface PodsDummy_Pods_ANDYDataStack : NSObject -@end -@implementation PodsDummy_Pods_ANDYDataStack -@end diff --git a/Tests/Pods/Target Support Files/Pods-ANDYDataStack/Pods-ANDYDataStack.xcconfig b/Tests/Pods/Target Support Files/Pods-ANDYDataStack/Pods-ANDYDataStack.xcconfig deleted file mode 100644 index eb6096d0..00000000 --- a/Tests/Pods/Target Support Files/Pods-ANDYDataStack/Pods-ANDYDataStack.xcconfig +++ /dev/null @@ -1 +0,0 @@ -PODS_ANDYDATASTACK_OTHER_LDFLAGS = -framework "CoreData" -framework "Foundation" \ No newline at end of file diff --git a/Tests/Pods/Target Support Files/Pods-DATAStack/Pods-DATAStack-Private.xcconfig b/Tests/Pods/Target Support Files/Pods-DATAStack/Pods-DATAStack-Private.xcconfig new file mode 100644 index 00000000..a4e93079 --- /dev/null +++ b/Tests/Pods/Target Support Files/Pods-DATAStack/Pods-DATAStack-Private.xcconfig @@ -0,0 +1,5 @@ +#include "Pods-DATAStack.xcconfig" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Build" "${PODS_ROOT}/Headers/Build/DATAStack" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DATAStack" "${PODS_ROOT}/Headers/Public/NSDictionary-ANDYSafeValue" "${PODS_ROOT}/Headers/Public/NSJSONSerialization-ANDYJSONFile" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYMapChanges" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYObjectIDs" "${PODS_ROOT}/Headers/Public/NSManagedObject-HYPPropertyMapper" "${PODS_ROOT}/Headers/Public/NSString-HYPNetworking" +OTHER_LDFLAGS = ${PODS_DATASTACK_OTHER_LDFLAGS} -ObjC +PODS_ROOT = ${SRCROOT} \ No newline at end of file diff --git a/Tests/Pods/Target Support Files/Pods-DATAStack/Pods-DATAStack-dummy.m b/Tests/Pods/Target Support Files/Pods-DATAStack/Pods-DATAStack-dummy.m new file mode 100644 index 00000000..8de990aa --- /dev/null +++ b/Tests/Pods/Target Support Files/Pods-DATAStack/Pods-DATAStack-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_Pods_DATAStack : NSObject +@end +@implementation PodsDummy_Pods_DATAStack +@end diff --git a/Tests/Pods/Target Support Files/Pods-ANDYDataStack/Pods-ANDYDataStack-prefix.pch b/Tests/Pods/Target Support Files/Pods-DATAStack/Pods-DATAStack-prefix.pch similarity index 100% rename from Tests/Pods/Target Support Files/Pods-ANDYDataStack/Pods-ANDYDataStack-prefix.pch rename to Tests/Pods/Target Support Files/Pods-DATAStack/Pods-DATAStack-prefix.pch diff --git a/Tests/Pods/Target Support Files/Pods-DATAStack/Pods-DATAStack.xcconfig b/Tests/Pods/Target Support Files/Pods-DATAStack/Pods-DATAStack.xcconfig new file mode 100644 index 00000000..64c80261 --- /dev/null +++ b/Tests/Pods/Target Support Files/Pods-DATAStack/Pods-DATAStack.xcconfig @@ -0,0 +1 @@ +PODS_DATASTACK_OTHER_LDFLAGS = -framework "CoreData" -framework "Foundation" \ No newline at end of file diff --git a/Tests/Pods/Target Support Files/Pods-NSDictionary-ANDYSafeValue/Pods-NSDictionary-ANDYSafeValue-Private.xcconfig b/Tests/Pods/Target Support Files/Pods-NSDictionary-ANDYSafeValue/Pods-NSDictionary-ANDYSafeValue-Private.xcconfig index 7bb4c07e..e6f21b1f 100644 --- a/Tests/Pods/Target Support Files/Pods-NSDictionary-ANDYSafeValue/Pods-NSDictionary-ANDYSafeValue-Private.xcconfig +++ b/Tests/Pods/Target Support Files/Pods-NSDictionary-ANDYSafeValue/Pods-NSDictionary-ANDYSafeValue-Private.xcconfig @@ -1,5 +1,5 @@ #include "Pods-NSDictionary-ANDYSafeValue.xcconfig" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Build" "${PODS_ROOT}/Headers/Build/NSDictionary-ANDYSafeValue" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/ANDYDataStack" "${PODS_ROOT}/Headers/Public/NSDictionary-ANDYSafeValue" "${PODS_ROOT}/Headers/Public/NSJSONSerialization-ANDYJSONFile" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYMapChanges" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYObjectIDs" "${PODS_ROOT}/Headers/Public/NSManagedObject-HYPPropertyMapper" "${PODS_ROOT}/Headers/Public/NSString-HYPNetworking" +HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Build" "${PODS_ROOT}/Headers/Build/NSDictionary-ANDYSafeValue" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DATAStack" "${PODS_ROOT}/Headers/Public/NSDictionary-ANDYSafeValue" "${PODS_ROOT}/Headers/Public/NSJSONSerialization-ANDYJSONFile" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYMapChanges" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYObjectIDs" "${PODS_ROOT}/Headers/Public/NSManagedObject-HYPPropertyMapper" "${PODS_ROOT}/Headers/Public/NSString-HYPNetworking" OTHER_LDFLAGS = ${PODS_NSDICTIONARY_ANDYSAFEVALUE_OTHER_LDFLAGS} -ObjC PODS_ROOT = ${SRCROOT} \ No newline at end of file diff --git a/Tests/Pods/Target Support Files/Pods-NSJSONSerialization-ANDYJSONFile/Pods-NSJSONSerialization-ANDYJSONFile-Private.xcconfig b/Tests/Pods/Target Support Files/Pods-NSJSONSerialization-ANDYJSONFile/Pods-NSJSONSerialization-ANDYJSONFile-Private.xcconfig index c5ae7664..553b92b0 100644 --- a/Tests/Pods/Target Support Files/Pods-NSJSONSerialization-ANDYJSONFile/Pods-NSJSONSerialization-ANDYJSONFile-Private.xcconfig +++ b/Tests/Pods/Target Support Files/Pods-NSJSONSerialization-ANDYJSONFile/Pods-NSJSONSerialization-ANDYJSONFile-Private.xcconfig @@ -1,5 +1,5 @@ #include "Pods-NSJSONSerialization-ANDYJSONFile.xcconfig" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Build" "${PODS_ROOT}/Headers/Build/NSJSONSerialization-ANDYJSONFile" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/ANDYDataStack" "${PODS_ROOT}/Headers/Public/NSDictionary-ANDYSafeValue" "${PODS_ROOT}/Headers/Public/NSJSONSerialization-ANDYJSONFile" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYMapChanges" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYObjectIDs" "${PODS_ROOT}/Headers/Public/NSManagedObject-HYPPropertyMapper" "${PODS_ROOT}/Headers/Public/NSString-HYPNetworking" +HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Build" "${PODS_ROOT}/Headers/Build/NSJSONSerialization-ANDYJSONFile" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DATAStack" "${PODS_ROOT}/Headers/Public/NSDictionary-ANDYSafeValue" "${PODS_ROOT}/Headers/Public/NSJSONSerialization-ANDYJSONFile" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYMapChanges" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYObjectIDs" "${PODS_ROOT}/Headers/Public/NSManagedObject-HYPPropertyMapper" "${PODS_ROOT}/Headers/Public/NSString-HYPNetworking" OTHER_LDFLAGS = ${PODS_NSJSONSERIALIZATION_ANDYJSONFILE_OTHER_LDFLAGS} -ObjC PODS_ROOT = ${SRCROOT} \ No newline at end of file diff --git a/Tests/Pods/Target Support Files/Pods-NSManagedObject-ANDYMapChanges/Pods-NSManagedObject-ANDYMapChanges-Private.xcconfig b/Tests/Pods/Target Support Files/Pods-NSManagedObject-ANDYMapChanges/Pods-NSManagedObject-ANDYMapChanges-Private.xcconfig index 9d081e34..fd01a13e 100644 --- a/Tests/Pods/Target Support Files/Pods-NSManagedObject-ANDYMapChanges/Pods-NSManagedObject-ANDYMapChanges-Private.xcconfig +++ b/Tests/Pods/Target Support Files/Pods-NSManagedObject-ANDYMapChanges/Pods-NSManagedObject-ANDYMapChanges-Private.xcconfig @@ -1,5 +1,5 @@ #include "Pods-NSManagedObject-ANDYMapChanges.xcconfig" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Build" "${PODS_ROOT}/Headers/Build/NSManagedObject-ANDYMapChanges" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/ANDYDataStack" "${PODS_ROOT}/Headers/Public/NSDictionary-ANDYSafeValue" "${PODS_ROOT}/Headers/Public/NSJSONSerialization-ANDYJSONFile" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYMapChanges" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYObjectIDs" "${PODS_ROOT}/Headers/Public/NSManagedObject-HYPPropertyMapper" "${PODS_ROOT}/Headers/Public/NSString-HYPNetworking" +HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Build" "${PODS_ROOT}/Headers/Build/NSManagedObject-ANDYMapChanges" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DATAStack" "${PODS_ROOT}/Headers/Public/NSDictionary-ANDYSafeValue" "${PODS_ROOT}/Headers/Public/NSJSONSerialization-ANDYJSONFile" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYMapChanges" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYObjectIDs" "${PODS_ROOT}/Headers/Public/NSManagedObject-HYPPropertyMapper" "${PODS_ROOT}/Headers/Public/NSString-HYPNetworking" OTHER_LDFLAGS = ${PODS_NSMANAGEDOBJECT_ANDYMAPCHANGES_OTHER_LDFLAGS} -ObjC PODS_ROOT = ${SRCROOT} \ No newline at end of file diff --git a/Tests/Pods/Target Support Files/Pods-NSManagedObject-ANDYObjectIDs/Pods-NSManagedObject-ANDYObjectIDs-Private.xcconfig b/Tests/Pods/Target Support Files/Pods-NSManagedObject-ANDYObjectIDs/Pods-NSManagedObject-ANDYObjectIDs-Private.xcconfig index c22650da..274f752c 100644 --- a/Tests/Pods/Target Support Files/Pods-NSManagedObject-ANDYObjectIDs/Pods-NSManagedObject-ANDYObjectIDs-Private.xcconfig +++ b/Tests/Pods/Target Support Files/Pods-NSManagedObject-ANDYObjectIDs/Pods-NSManagedObject-ANDYObjectIDs-Private.xcconfig @@ -1,5 +1,5 @@ #include "Pods-NSManagedObject-ANDYObjectIDs.xcconfig" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Build" "${PODS_ROOT}/Headers/Build/NSManagedObject-ANDYObjectIDs" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/ANDYDataStack" "${PODS_ROOT}/Headers/Public/NSDictionary-ANDYSafeValue" "${PODS_ROOT}/Headers/Public/NSJSONSerialization-ANDYJSONFile" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYMapChanges" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYObjectIDs" "${PODS_ROOT}/Headers/Public/NSManagedObject-HYPPropertyMapper" "${PODS_ROOT}/Headers/Public/NSString-HYPNetworking" +HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Build" "${PODS_ROOT}/Headers/Build/NSManagedObject-ANDYObjectIDs" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DATAStack" "${PODS_ROOT}/Headers/Public/NSDictionary-ANDYSafeValue" "${PODS_ROOT}/Headers/Public/NSJSONSerialization-ANDYJSONFile" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYMapChanges" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYObjectIDs" "${PODS_ROOT}/Headers/Public/NSManagedObject-HYPPropertyMapper" "${PODS_ROOT}/Headers/Public/NSString-HYPNetworking" OTHER_LDFLAGS = ${PODS_NSMANAGEDOBJECT_ANDYOBJECTIDS_OTHER_LDFLAGS} -ObjC PODS_ROOT = ${SRCROOT} \ No newline at end of file diff --git a/Tests/Pods/Target Support Files/Pods-NSManagedObject-HYPPropertyMapper/Pods-NSManagedObject-HYPPropertyMapper-Private.xcconfig b/Tests/Pods/Target Support Files/Pods-NSManagedObject-HYPPropertyMapper/Pods-NSManagedObject-HYPPropertyMapper-Private.xcconfig index c7b35b19..fbe55c70 100644 --- a/Tests/Pods/Target Support Files/Pods-NSManagedObject-HYPPropertyMapper/Pods-NSManagedObject-HYPPropertyMapper-Private.xcconfig +++ b/Tests/Pods/Target Support Files/Pods-NSManagedObject-HYPPropertyMapper/Pods-NSManagedObject-HYPPropertyMapper-Private.xcconfig @@ -1,5 +1,5 @@ #include "Pods-NSManagedObject-HYPPropertyMapper.xcconfig" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Build" "${PODS_ROOT}/Headers/Build/NSManagedObject-HYPPropertyMapper" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/ANDYDataStack" "${PODS_ROOT}/Headers/Public/NSDictionary-ANDYSafeValue" "${PODS_ROOT}/Headers/Public/NSJSONSerialization-ANDYJSONFile" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYMapChanges" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYObjectIDs" "${PODS_ROOT}/Headers/Public/NSManagedObject-HYPPropertyMapper" "${PODS_ROOT}/Headers/Public/NSString-HYPNetworking" +HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Build" "${PODS_ROOT}/Headers/Build/NSManagedObject-HYPPropertyMapper" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DATAStack" "${PODS_ROOT}/Headers/Public/NSDictionary-ANDYSafeValue" "${PODS_ROOT}/Headers/Public/NSJSONSerialization-ANDYJSONFile" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYMapChanges" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYObjectIDs" "${PODS_ROOT}/Headers/Public/NSManagedObject-HYPPropertyMapper" "${PODS_ROOT}/Headers/Public/NSString-HYPNetworking" OTHER_LDFLAGS = ${PODS_NSMANAGEDOBJECT_HYPPROPERTYMAPPER_OTHER_LDFLAGS} -ObjC PODS_ROOT = ${SRCROOT} \ No newline at end of file diff --git a/Tests/Pods/Target Support Files/Pods-NSString-HYPNetworking/Pods-NSString-HYPNetworking-Private.xcconfig b/Tests/Pods/Target Support Files/Pods-NSString-HYPNetworking/Pods-NSString-HYPNetworking-Private.xcconfig index 14a76a89..3146550f 100644 --- a/Tests/Pods/Target Support Files/Pods-NSString-HYPNetworking/Pods-NSString-HYPNetworking-Private.xcconfig +++ b/Tests/Pods/Target Support Files/Pods-NSString-HYPNetworking/Pods-NSString-HYPNetworking-Private.xcconfig @@ -1,5 +1,5 @@ #include "Pods-NSString-HYPNetworking.xcconfig" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Build" "${PODS_ROOT}/Headers/Build/NSString-HYPNetworking" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/ANDYDataStack" "${PODS_ROOT}/Headers/Public/NSDictionary-ANDYSafeValue" "${PODS_ROOT}/Headers/Public/NSJSONSerialization-ANDYJSONFile" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYMapChanges" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYObjectIDs" "${PODS_ROOT}/Headers/Public/NSManagedObject-HYPPropertyMapper" "${PODS_ROOT}/Headers/Public/NSString-HYPNetworking" +HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Build" "${PODS_ROOT}/Headers/Build/NSString-HYPNetworking" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DATAStack" "${PODS_ROOT}/Headers/Public/NSDictionary-ANDYSafeValue" "${PODS_ROOT}/Headers/Public/NSJSONSerialization-ANDYJSONFile" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYMapChanges" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYObjectIDs" "${PODS_ROOT}/Headers/Public/NSManagedObject-HYPPropertyMapper" "${PODS_ROOT}/Headers/Public/NSString-HYPNetworking" OTHER_LDFLAGS = ${PODS_NSSTRING_HYPNETWORKING_OTHER_LDFLAGS} -ObjC PODS_ROOT = ${SRCROOT} \ No newline at end of file diff --git a/Tests/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown b/Tests/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown index f090c2c8..2350773d 100644 --- a/Tests/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown +++ b/Tests/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown @@ -1,7 +1,7 @@ # Acknowledgements This application makes use of the following third party libraries: -## ANDYDataStack +## DATAStack The MIT License (MIT) diff --git a/Tests/Pods/Target Support Files/Pods/Pods-acknowledgements.plist b/Tests/Pods/Target Support Files/Pods/Pods-acknowledgements.plist index 6b4e2b9f..0bd11884 100644 --- a/Tests/Pods/Target Support Files/Pods/Pods-acknowledgements.plist +++ b/Tests/Pods/Target Support Files/Pods/Pods-acknowledgements.plist @@ -36,7 +36,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Title - ANDYDataStack + DATAStack Type PSGroupSpecifier diff --git a/Tests/Pods/Target Support Files/Pods/Pods-environment.h b/Tests/Pods/Target Support Files/Pods/Pods-environment.h index fe6431f4..b6f3bfb5 100644 --- a/Tests/Pods/Target Support Files/Pods/Pods-environment.h +++ b/Tests/Pods/Target Support Files/Pods/Pods-environment.h @@ -6,11 +6,11 @@ // project. -// ANDYDataStack -#define COCOAPODS_POD_AVAILABLE_ANDYDataStack -#define COCOAPODS_VERSION_MAJOR_ANDYDataStack 2 -#define COCOAPODS_VERSION_MINOR_ANDYDataStack 0 -#define COCOAPODS_VERSION_PATCH_ANDYDataStack 2 +// DATAStack +#define COCOAPODS_POD_AVAILABLE_DATAStack +#define COCOAPODS_VERSION_MAJOR_DATAStack 2 +#define COCOAPODS_VERSION_MINOR_DATAStack 2 +#define COCOAPODS_VERSION_PATCH_DATAStack 3 // NSDictionary-ANDYSafeValue #define COCOAPODS_POD_AVAILABLE_NSDictionary_ANDYSafeValue @@ -27,8 +27,8 @@ // NSManagedObject-ANDYMapChanges #define COCOAPODS_POD_AVAILABLE_NSManagedObject_ANDYMapChanges #define COCOAPODS_VERSION_MAJOR_NSManagedObject_ANDYMapChanges 0 -#define COCOAPODS_VERSION_MINOR_NSManagedObject_ANDYMapChanges 5 -#define COCOAPODS_VERSION_PATCH_NSManagedObject_ANDYMapChanges 1 +#define COCOAPODS_VERSION_MINOR_NSManagedObject_ANDYMapChanges 6 +#define COCOAPODS_VERSION_PATCH_NSManagedObject_ANDYMapChanges 0 // NSManagedObject-ANDYObjectIDs #define COCOAPODS_POD_AVAILABLE_NSManagedObject_ANDYObjectIDs @@ -40,7 +40,7 @@ #define COCOAPODS_POD_AVAILABLE_NSManagedObject_HYPPropertyMapper #define COCOAPODS_VERSION_MAJOR_NSManagedObject_HYPPropertyMapper 2 #define COCOAPODS_VERSION_MINOR_NSManagedObject_HYPPropertyMapper 8 -#define COCOAPODS_VERSION_PATCH_NSManagedObject_HYPPropertyMapper 0 +#define COCOAPODS_VERSION_PATCH_NSManagedObject_HYPPropertyMapper 1 // NSString-HYPNetworking #define COCOAPODS_POD_AVAILABLE_NSString_HYPNetworking diff --git a/Tests/Pods/Target Support Files/Pods/Pods.debug.xcconfig b/Tests/Pods/Target Support Files/Pods/Pods.debug.xcconfig index 50ed0242..390530db 100644 --- a/Tests/Pods/Target Support Files/Pods/Pods.debug.xcconfig +++ b/Tests/Pods/Target Support Files/Pods/Pods.debug.xcconfig @@ -1,6 +1,6 @@ GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/ANDYDataStack" "${PODS_ROOT}/Headers/Public/NSDictionary-ANDYSafeValue" "${PODS_ROOT}/Headers/Public/NSJSONSerialization-ANDYJSONFile" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYMapChanges" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYObjectIDs" "${PODS_ROOT}/Headers/Public/NSManagedObject-HYPPropertyMapper" "${PODS_ROOT}/Headers/Public/NSString-HYPNetworking" -OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/ANDYDataStack" -isystem "${PODS_ROOT}/Headers/Public/NSDictionary-ANDYSafeValue" -isystem "${PODS_ROOT}/Headers/Public/NSJSONSerialization-ANDYJSONFile" -isystem "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYMapChanges" -isystem "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYObjectIDs" -isystem "${PODS_ROOT}/Headers/Public/NSManagedObject-HYPPropertyMapper" -isystem "${PODS_ROOT}/Headers/Public/NSString-HYPNetworking" -OTHER_LDFLAGS = -ObjC -l"Pods-ANDYDataStack" -l"Pods-NSDictionary-ANDYSafeValue" -l"Pods-NSJSONSerialization-ANDYJSONFile" -l"Pods-NSManagedObject-ANDYMapChanges" -l"Pods-NSManagedObject-ANDYObjectIDs" -l"Pods-NSManagedObject-HYPPropertyMapper" -l"Pods-NSString-HYPNetworking" -framework "CoreData" -framework "Foundation" +HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DATAStack" "${PODS_ROOT}/Headers/Public/NSDictionary-ANDYSafeValue" "${PODS_ROOT}/Headers/Public/NSJSONSerialization-ANDYJSONFile" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYMapChanges" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYObjectIDs" "${PODS_ROOT}/Headers/Public/NSManagedObject-HYPPropertyMapper" "${PODS_ROOT}/Headers/Public/NSString-HYPNetworking" +OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/DATAStack" -isystem "${PODS_ROOT}/Headers/Public/NSDictionary-ANDYSafeValue" -isystem "${PODS_ROOT}/Headers/Public/NSJSONSerialization-ANDYJSONFile" -isystem "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYMapChanges" -isystem "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYObjectIDs" -isystem "${PODS_ROOT}/Headers/Public/NSManagedObject-HYPPropertyMapper" -isystem "${PODS_ROOT}/Headers/Public/NSString-HYPNetworking" +OTHER_LDFLAGS = -ObjC -l"Pods-DATAStack" -l"Pods-NSDictionary-ANDYSafeValue" -l"Pods-NSJSONSerialization-ANDYJSONFile" -l"Pods-NSManagedObject-ANDYMapChanges" -l"Pods-NSManagedObject-ANDYObjectIDs" -l"Pods-NSManagedObject-HYPPropertyMapper" -l"Pods-NSString-HYPNetworking" -framework "CoreData" -framework "Foundation" OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) PODS_ROOT = ${SRCROOT}/Pods \ No newline at end of file diff --git a/Tests/Pods/Target Support Files/Pods/Pods.release.xcconfig b/Tests/Pods/Target Support Files/Pods/Pods.release.xcconfig index 50ed0242..390530db 100644 --- a/Tests/Pods/Target Support Files/Pods/Pods.release.xcconfig +++ b/Tests/Pods/Target Support Files/Pods/Pods.release.xcconfig @@ -1,6 +1,6 @@ GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/ANDYDataStack" "${PODS_ROOT}/Headers/Public/NSDictionary-ANDYSafeValue" "${PODS_ROOT}/Headers/Public/NSJSONSerialization-ANDYJSONFile" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYMapChanges" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYObjectIDs" "${PODS_ROOT}/Headers/Public/NSManagedObject-HYPPropertyMapper" "${PODS_ROOT}/Headers/Public/NSString-HYPNetworking" -OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/ANDYDataStack" -isystem "${PODS_ROOT}/Headers/Public/NSDictionary-ANDYSafeValue" -isystem "${PODS_ROOT}/Headers/Public/NSJSONSerialization-ANDYJSONFile" -isystem "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYMapChanges" -isystem "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYObjectIDs" -isystem "${PODS_ROOT}/Headers/Public/NSManagedObject-HYPPropertyMapper" -isystem "${PODS_ROOT}/Headers/Public/NSString-HYPNetworking" -OTHER_LDFLAGS = -ObjC -l"Pods-ANDYDataStack" -l"Pods-NSDictionary-ANDYSafeValue" -l"Pods-NSJSONSerialization-ANDYJSONFile" -l"Pods-NSManagedObject-ANDYMapChanges" -l"Pods-NSManagedObject-ANDYObjectIDs" -l"Pods-NSManagedObject-HYPPropertyMapper" -l"Pods-NSString-HYPNetworking" -framework "CoreData" -framework "Foundation" +HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DATAStack" "${PODS_ROOT}/Headers/Public/NSDictionary-ANDYSafeValue" "${PODS_ROOT}/Headers/Public/NSJSONSerialization-ANDYJSONFile" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYMapChanges" "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYObjectIDs" "${PODS_ROOT}/Headers/Public/NSManagedObject-HYPPropertyMapper" "${PODS_ROOT}/Headers/Public/NSString-HYPNetworking" +OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/DATAStack" -isystem "${PODS_ROOT}/Headers/Public/NSDictionary-ANDYSafeValue" -isystem "${PODS_ROOT}/Headers/Public/NSJSONSerialization-ANDYJSONFile" -isystem "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYMapChanges" -isystem "${PODS_ROOT}/Headers/Public/NSManagedObject-ANDYObjectIDs" -isystem "${PODS_ROOT}/Headers/Public/NSManagedObject-HYPPropertyMapper" -isystem "${PODS_ROOT}/Headers/Public/NSString-HYPNetworking" +OTHER_LDFLAGS = -ObjC -l"Pods-DATAStack" -l"Pods-NSDictionary-ANDYSafeValue" -l"Pods-NSJSONSerialization-ANDYJSONFile" -l"Pods-NSManagedObject-ANDYMapChanges" -l"Pods-NSManagedObject-ANDYObjectIDs" -l"Pods-NSManagedObject-HYPPropertyMapper" -l"Pods-NSString-HYPNetworking" -framework "CoreData" -framework "Foundation" OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) PODS_ROOT = ${SRCROOT}/Pods \ No newline at end of file