From 0e6697d60dc450c9808ef353a456b51e5b8c2296 Mon Sep 17 00:00:00 2001 From: Giuseppe Nucifora Date: Sun, 10 Sep 2017 16:23:02 +0200 Subject: [PATCH] - Add library DJLocalizedString - Add new function + (NSString*) stringMonth :(NSInteger) month - Add new function + (NSString*) stringFromWeekday :(NSInteger) weekday --- .../NSDate_Utils.xcodeproj/project.pbxproj | 28 +- Example/Podfile.lock | 19 +- .../DJLocalization/DJLocalizableString.h | 13 + .../DJLocalization/DJLocalizableString.m | 59 + .../DJLocalization/DJLocalization.h | 15 + .../DJLocalizationSystem+Private.h | 23 + .../DJLocalization/DJLocalizationSystem.h | 69 + .../DJLocalization/DJLocalizationSystem.m | 136 + .../UIStoryboard+DJLocalization.h | 21 + .../UIStoryboard+DJLocalization.m | 19 + Example/Pods/DJLocalization/LICENSE | 19 + Example/Pods/DJLocalization/README.md | 75 + Example/Pods/Expecta/Expecta/EXPDefines.h | 8 +- .../Expecta/Matchers/EXPMatchers+respondTo.m | 6 +- Example/Pods/Expecta/README.md | 140 +- .../Local Podspecs/NSDate_Utils.podspec.json | 11 +- Example/Pods/Manifest.lock | 19 +- Example/Pods/Pods.xcodeproj/project.pbxproj | 2196 +++++++++-------- .../DJLocalization/DJLocalization-dummy.m | 5 + .../DJLocalization/DJLocalization-prefix.pch | 12 + .../DJLocalization/DJLocalization-umbrella.h | 20 + .../DJLocalization/DJLocalization.modulemap | 6 + .../DJLocalization/DJLocalization.xcconfig | 10 + .../DJLocalization/Info.plist | 26 + .../Target Support Files/Expecta/Info.plist | 2 +- .../NSDate_Utils/Info.plist | 2 +- .../NSDate_Utils/NSDate_Utils.xcconfig | 1 + ...te_Utils_Example-acknowledgements.markdown | 23 + ...SDate_Utils_Example-acknowledgements.plist | 29 + .../Pods-NSDate_Utils_Example-frameworks.sh | 27 +- .../Pods-NSDate_Utils_Example-resources.sh | 25 +- .../Pods-NSDate_Utils_Example.debug.xcconfig | 7 +- ...Pods-NSDate_Utils_Example.release.xcconfig | 7 +- ...Date_Utils_Tests-acknowledgements.markdown | 23 + ...-NSDate_Utils_Tests-acknowledgements.plist | 29 + .../Pods-NSDate_Utils_Tests-frameworks.sh | 43 +- .../Pods-NSDate_Utils_Tests-resources.sh | 25 +- .../Pods-NSDate_Utils_Tests.debug.xcconfig | 7 +- .../Pods-NSDate_Utils_Tests.release.xcconfig | 7 +- NSDate_Utils.podspec | 5 +- Pod/Classes/NSDate+NSDate_Util.h | 3 + Pod/Classes/NSDate+NSDate_Util.m | 276 ++- 42 files changed, 2263 insertions(+), 1233 deletions(-) create mode 100755 Example/Pods/DJLocalization/DJLocalization/DJLocalizableString.h create mode 100755 Example/Pods/DJLocalization/DJLocalization/DJLocalizableString.m create mode 100644 Example/Pods/DJLocalization/DJLocalization/DJLocalization.h create mode 100644 Example/Pods/DJLocalization/DJLocalization/DJLocalizationSystem+Private.h create mode 100644 Example/Pods/DJLocalization/DJLocalization/DJLocalizationSystem.h create mode 100644 Example/Pods/DJLocalization/DJLocalization/DJLocalizationSystem.m create mode 100644 Example/Pods/DJLocalization/DJLocalization/UIStoryboard+DJLocalization.h create mode 100644 Example/Pods/DJLocalization/DJLocalization/UIStoryboard+DJLocalization.m create mode 100644 Example/Pods/DJLocalization/LICENSE create mode 100644 Example/Pods/DJLocalization/README.md create mode 100644 Example/Pods/Target Support Files/DJLocalization/DJLocalization-dummy.m create mode 100644 Example/Pods/Target Support Files/DJLocalization/DJLocalization-prefix.pch create mode 100644 Example/Pods/Target Support Files/DJLocalization/DJLocalization-umbrella.h create mode 100644 Example/Pods/Target Support Files/DJLocalization/DJLocalization.modulemap create mode 100644 Example/Pods/Target Support Files/DJLocalization/DJLocalization.xcconfig create mode 100644 Example/Pods/Target Support Files/DJLocalization/Info.plist diff --git a/Example/NSDate_Utils.xcodeproj/project.pbxproj b/Example/NSDate_Utils.xcodeproj/project.pbxproj index f308b8b..06b2852 100644 --- a/Example/NSDate_Utils.xcodeproj/project.pbxproj +++ b/Example/NSDate_Utils.xcodeproj/project.pbxproj @@ -302,9 +302,14 @@ files = ( ); inputPaths = ( + "${SRCROOT}/Pods/Target Support Files/Pods-NSDate_Utils_Example/Pods-NSDate_Utils_Example-frameworks.sh", + "${BUILT_PRODUCTS_DIR}/DJLocalization/DJLocalization.framework", + "${BUILT_PRODUCTS_DIR}/NSDate_Utils/NSDate_Utils.framework", ); name = "[CP] Embed Pods Frameworks"; outputPaths = ( + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/DJLocalization.framework", + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/NSDate_Utils.framework", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; @@ -317,13 +322,16 @@ files = ( ); inputPaths = ( + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", ); name = "[CP] Check Pods Manifest.lock"; outputPaths = ( + "$(DERIVED_FILE_DIR)/Pods-NSDate_Utils_Tests-checkManifestLockResult.txt", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n"; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; showEnvVarsInLog = 0; }; 83D57E6020570D3087EF66CE /* [CP] Copy Pods Resources */ = { @@ -362,13 +370,16 @@ files = ( ); inputPaths = ( + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", ); name = "[CP] Check Pods Manifest.lock"; outputPaths = ( + "$(DERIVED_FILE_DIR)/Pods-NSDate_Utils_Example-checkManifestLockResult.txt", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n"; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; showEnvVarsInLog = 0; }; B7E95ACD5604BD439932ECC8 /* [CP] Embed Pods Frameworks */ = { @@ -377,9 +388,22 @@ files = ( ); inputPaths = ( + "${SRCROOT}/Pods/Target Support Files/Pods-NSDate_Utils_Tests/Pods-NSDate_Utils_Tests-frameworks.sh", + "${BUILT_PRODUCTS_DIR}/DJLocalization/DJLocalization.framework", + "${BUILT_PRODUCTS_DIR}/NSDate_Utils/NSDate_Utils.framework", + "${BUILT_PRODUCTS_DIR}/Expecta/Expecta.framework", + "${BUILT_PRODUCTS_DIR}/Expecta+Snapshots/Expecta_Snapshots.framework", + "${BUILT_PRODUCTS_DIR}/FBSnapshotTestCase/FBSnapshotTestCase.framework", + "${BUILT_PRODUCTS_DIR}/Specta/Specta.framework", ); name = "[CP] Embed Pods Frameworks"; outputPaths = ( + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/DJLocalization.framework", + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/NSDate_Utils.framework", + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Expecta.framework", + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Expecta_Snapshots.framework", + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FBSnapshotTestCase.framework", + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Specta.framework", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; diff --git a/Example/Podfile.lock b/Example/Podfile.lock index 4a3332e..62b17f0 100644 --- a/Example/Podfile.lock +++ b/Example/Podfile.lock @@ -1,5 +1,8 @@ PODS: - - Expecta (1.0.5) + - DJLocalization (1.2.2): + - DJLocalization/Core (= 1.2.2) + - DJLocalization/Core (1.2.2) + - Expecta (1.0.6) - Expecta+Snapshots (3.1.1): - Expecta (~> 1.0) - FBSnapshotTestCase/Core (~> 2.0) @@ -9,7 +12,8 @@ PODS: - FBSnapshotTestCase/Core (2.1.4) - FBSnapshotTestCase/SwiftSupport (2.1.4): - FBSnapshotTestCase/Core - - NSDate_Utils (1.0.6) + - NSDate_Utils (1.1.0): + - DJLocalization - Specta (1.0.6) DEPENDENCIES: @@ -21,15 +25,16 @@ DEPENDENCIES: EXTERNAL SOURCES: NSDate_Utils: - :path: "../" + :path: ../ SPEC CHECKSUMS: - Expecta: e1c022fcd33910b6be89c291d2775b3fe27a89fe + DJLocalization: 0c84029af375647d4104a42ae36be87194c46c47 + Expecta: 3b6bd90a64b9a1dcb0b70aa0e10a7f8f631667d5 Expecta+Snapshots: dcff217eef506dabd6dfdc7864ea2da321fafbb8 - FBSnapshotTestCase: '094f9f314decbabe373b87cc339bea235a63e07a' - NSDate_Utils: c7802a1e0f5ef3acaf39bf55806a1caaa0343d2d + FBSnapshotTestCase: 094f9f314decbabe373b87cc339bea235a63e07a + NSDate_Utils: c858a89da6e204ecf53aca48dbccb4da4d25bc9e Specta: f506f3a8361de16bc0dcf3b17b75e269072ba465 PODFILE CHECKSUM: 5d3cb6429ba8613bec51b3e797c0070e91be6b26 -COCOAPODS: 1.2.0 +COCOAPODS: 1.3.1 diff --git a/Example/Pods/DJLocalization/DJLocalization/DJLocalizableString.h b/Example/Pods/DJLocalization/DJLocalization/DJLocalizableString.h new file mode 100755 index 0000000..5f9dab3 --- /dev/null +++ b/Example/Pods/DJLocalization/DJLocalization/DJLocalizableString.h @@ -0,0 +1,13 @@ +// +// DJLocalizableString.h +// DJLocalization +// +// Created by David Jennes on 15/02/15. +// Copyright (c) 2015. All rights reserved. +// + +#import + +@interface DJLocalizableString : NSString + +@end diff --git a/Example/Pods/DJLocalization/DJLocalization/DJLocalizableString.m b/Example/Pods/DJLocalization/DJLocalization/DJLocalizableString.m new file mode 100755 index 0000000..6bf400e --- /dev/null +++ b/Example/Pods/DJLocalization/DJLocalization/DJLocalizableString.m @@ -0,0 +1,59 @@ +// +// DJLocalizableString.m +// DJLocalization +// +// Created by David Jennes on 15/02/15. +// Copyright (c) 2015. All rights reserved. +// + +#import "DJLocalizableString.h" + +#import "DJLocalizationSystem+Private.h" + +static NSString * const kDJLocalizableString = @"NSLocalizableString"; + +@interface DJLocalizableString () + +@property (nonatomic, strong) NSString *developmentLanguageString; +@property (nonatomic, strong) NSString *stringsFileKey; + +@end + +@implementation DJLocalizableString + ++ (void)load { + @autoreleasepool { + [NSKeyedUnarchiver setClass: DJLocalizableString.class forClassName: kDJLocalizableString]; + } +} + +#pragma mark - NSCoding + +- (id)initWithCoder:(NSCoder *)aDecoder { + self = [super init]; + if (self) { + self.stringsFileKey = [aDecoder decodeObjectForKey: @"NSKey"]; + self.developmentLanguageString = [aDecoder decodeObjectForKey: @"NSDev"]; + } + + return self; +} + +#pragma mark - NSObject + +- (id)awakeAfterUsingCoder:(NSCoder *)aDecoder { + return [DJLocalizationSystem.shared localizedStoryboardStringForKey: self.stringsFileKey + value: self.developmentLanguageString]; +} + +#pragma mark - NSString + +- (NSUInteger)length { + return self.developmentLanguageString.length; +} + +- (unichar)characterAtIndex:(NSUInteger)index { + return [self.developmentLanguageString characterAtIndex: index]; +} + +@end diff --git a/Example/Pods/DJLocalization/DJLocalization/DJLocalization.h b/Example/Pods/DJLocalization/DJLocalization/DJLocalization.h new file mode 100644 index 0000000..4e0437e --- /dev/null +++ b/Example/Pods/DJLocalization/DJLocalization/DJLocalization.h @@ -0,0 +1,15 @@ +// +// DJLocalization.h +// DJLocalization +// +// Created by David Jennes on 04/03/15. +// Copyright (c) 2015. All rights reserved. +// + +#ifndef DJLocalization_h +#define DJLocalization_h + +#import "DJLocalizationSystem.h" +#import "UIStoryboard+DJLocalization.h" + +#endif diff --git a/Example/Pods/DJLocalization/DJLocalization/DJLocalizationSystem+Private.h b/Example/Pods/DJLocalization/DJLocalization/DJLocalizationSystem+Private.h new file mode 100644 index 0000000..39e79da --- /dev/null +++ b/Example/Pods/DJLocalization/DJLocalization/DJLocalizationSystem+Private.h @@ -0,0 +1,23 @@ +// +// DJLocalizationSystem+Private.h +// DJLocalization +// +// Created by David Jennes on 16/02/16. +// Copyright (c) 2015. All rights reserved. +// + +#import "DJLocalizationSystem.h" + +@interface DJLocalizationSystem (Private) + +/*! + * Special version that tries to load a storyboard string from all the tables + * except Localizable and InfoPlist. Defaults to comment if not found. + * + * @param key The localization key + * @param comment The localization value + * @return The localized string + */ +- (NSString *)localizedStoryboardStringForKey:(NSString *)key value:(NSString *)comment; + +@end diff --git a/Example/Pods/DJLocalization/DJLocalization/DJLocalizationSystem.h b/Example/Pods/DJLocalization/DJLocalization/DJLocalizationSystem.h new file mode 100644 index 0000000..faeb1ef --- /dev/null +++ b/Example/Pods/DJLocalization/DJLocalization/DJLocalizationSystem.h @@ -0,0 +1,69 @@ +// +// DJLocalizationSystem.h +// DJLocalization +// +// Created by David Jennes on 15/02/15. +// Copyright (c) 2015. All rights reserved. +// + +#import + +#define DJLocalizedString(key, comment) \ + [DJLocalizationSystem.shared localizedStringForKey:(key) value: @"" table: nil] +#define DJLocalizedStringFromTable(key, tbl, comment) \ + [DJLocalizationSystem.shared localizedStringForKey:(key) value: @"" table:(tbl)] + +// replace Apple's macros with our own +#undef NSLocalizedString +#define NSLocalizedString(key, comment) \ + DJLocalizedString(key, comment) + +#undef NSLocalizedStringFromTable +#define NSLocalizedStringFromTable(key, tbl, comment) \ + DJLocalizedStringFromTable(key, tbl, comment) + +@interface DJLocalizationSystem : NSObject + +/*! + * Get the system's global instance + * + * @return A localization system instance + */ +@property (class, nonnull, readonly) DJLocalizationSystem *shared; + +/*! + * Get the localized string for a given key/value + * + * @param key The localization key + * @param comment The localization value + * @param tableName The localization table name + * @return The localized string + */ +- (nonnull NSString *)localizedStringForKey:(nullable NSString *)key value:(nullable NSString *)comment table:(nullable NSString *)tableName; + +/*! + * Get the localized string for a given key/value in the specified bundle + * + * @param key The localization key + * @param comment The localization value + * @param bundle The bundle to search in + * @return The localized string + */ +- (nonnull NSString *)localizedStringForKey:(nullable NSString *)key value:(nullable NSString *)comment table:(nullable NSString *)tableName bundle:(nonnull NSBundle *)bundle; + +/*! + * Reset the localization to the system's default language + */ +- (void)resetLocalization; + +/*! + * The bundle for the currently active language + */ +@property (nonatomic, readonly, nonnull) NSBundle *bundle; + +/*! + * The currently active language + */ +@property (nonatomic, strong, nonnull) NSString *language; + +@end diff --git a/Example/Pods/DJLocalization/DJLocalization/DJLocalizationSystem.m b/Example/Pods/DJLocalization/DJLocalization/DJLocalizationSystem.m new file mode 100644 index 0000000..782eced --- /dev/null +++ b/Example/Pods/DJLocalization/DJLocalization/DJLocalizationSystem.m @@ -0,0 +1,136 @@ +// +// DJLocalizationSystem.m +// DJLocalization +// +// Created by David Jennes on 15/02/15. +// Copyright (c) 2015. All rights reserved. +// + +#import "DJLocalization.h" +#import "DJLocalizationSystem+Private.h" + +@interface DJLocalizationSystem () + +@property (nonatomic, strong) NSBundle *bundle; +@property (nonatomic, strong) NSDictionary *storyboardStrings; +@property (nonatomic, strong) NSString *customLanguage; + +@end + +@implementation DJLocalizationSystem + ++ (instancetype)shared { + __strong static DJLocalizationSystem *sharedSystem = nil; + + static dispatch_once_t onceToken; + dispatch_once(&onceToken, ^{ + sharedSystem = [self new]; + }); + + return sharedSystem; +} + +- (instancetype)init { + self = [super init]; + if (!self) + return nil; + + [self resetLocalization]; + + return self; +} + +- (NSString *)localizedStoryboardStringForKey:(NSString *)key value:(NSString *)comment { + NSString *result = self.storyboardStrings[key]; + if (!result) + result = comment; + + return result; +} + +- (NSString *)localizedStringForKey:(NSString *)key value:(NSString *)value table:(NSString *)tableName { + return [self.bundle localizedStringForKey: key value: value table: tableName]; +} + +- (NSString *)localizedStringForKey:(NSString *)key value:(NSString *)value table:(NSString *)tableName bundle:(NSBundle *)bundle { + // if no custom language, just get the standard localized string + if (!self.customLanguage) + return [bundle localizedStringForKey: key value: value table: tableName]; + + // check if our custom language exists + NSString *path = [bundle pathForResource: self.customLanguage ofType: @"lproj"]; + if (path) + return [[NSBundle bundleWithPath: path] localizedStringForKey: key value: value table: tableName]; + + // otherwise return the default + return [bundle localizedStringForKey: key value: value table: tableName]; +} + +- (void)resetLocalization { + self.language = NSBundle.mainBundle.preferredLocalizations.firstObject; +} + +- (void)setLanguage:(NSString*)language { + if ([language isEqualToString: self.customLanguage ]) + return; + NSDictionary *languageInfo = [NSLocale componentsFromLocaleIdentifier: language]; + + // find bundle + NSString *path = [NSBundle.mainBundle pathForResource: language ofType: @"lproj"]; + if (path == nil) + path = [NSBundle.mainBundle pathForResource: languageInfo[NSLocaleLanguageCode] ofType: @"lproj"]; + + // set bundle + if (path) { + self.bundle = [NSBundle bundleWithPath: path]; + [self loadTables]; + + // store language id + self.customLanguage = language; + } else { + NSLog(@"Localization error: no bundle found, resetting!"); + self.bundle = NSBundle.mainBundle; + self.customLanguage = nil; + } +} + +- (NSString*)language { + if (self.customLanguage) + return self.customLanguage; + else { + NSString *language = NSLocale.preferredLanguages.firstObject; + NSDictionary *languageInfo = [NSLocale componentsFromLocaleIdentifier: language]; + + return languageInfo[NSLocaleLanguageCode]; + } +} + +#pragma mark - Helper methods + +- (void)loadTables { + NSMutableDictionary *strings = [NSMutableDictionary new]; + + // find strings files + NSFileManager *fileManager = NSFileManager.defaultManager; + NSURL *bundleURL = self.bundle.bundleURL; + NSArray *contents = [fileManager contentsOfDirectoryAtURL: bundleURL + includingPropertiesForKeys: @[] + options: NSDirectoryEnumerationSkipsHiddenFiles + error: nil]; + + // load them + NSPredicate *predicate = [NSPredicate predicateWithFormat: @"pathExtension == 'strings'"]; + for (NSURL *fileURL in [contents filteredArrayUsingPredicate: predicate]) { + if ([fileURL.lastPathComponent isEqualToString: @"Localizable.strings"]) + continue; + if ([fileURL.lastPathComponent isEqualToString: @"InfoPlist.strings"]) + continue; + + NSDictionary *table = [NSDictionary dictionaryWithContentsOfURL: fileURL]; + [strings addEntriesFromDictionary: table]; + } + + self.storyboardStrings = strings; +} + +@end diff --git a/Example/Pods/DJLocalization/DJLocalization/UIStoryboard+DJLocalization.h b/Example/Pods/DJLocalization/DJLocalization/UIStoryboard+DJLocalization.h new file mode 100644 index 0000000..3ae248a --- /dev/null +++ b/Example/Pods/DJLocalization/DJLocalization/UIStoryboard+DJLocalization.h @@ -0,0 +1,21 @@ +// +// UIStoryboard+DJLocalization.h +// DJLocalization +// +// Created by David Jennes on 15/02/15. +// Copyright (c) 2015. All rights reserved. +// + +#import + +@interface UIStoryboard (DJLocalization) + +/*! + * Get the storyboard for the active language + * + * @param name The storyboard's name + * @return The desired storyboard + */ ++ (nonnull instancetype)dj_storyboardWithName:(nonnull NSString *)name; + +@end diff --git a/Example/Pods/DJLocalization/DJLocalization/UIStoryboard+DJLocalization.m b/Example/Pods/DJLocalization/DJLocalization/UIStoryboard+DJLocalization.m new file mode 100644 index 0000000..b16b3c8 --- /dev/null +++ b/Example/Pods/DJLocalization/DJLocalization/UIStoryboard+DJLocalization.m @@ -0,0 +1,19 @@ +// +// UIStoryboard+DJLocalization.m +// DJLocalization +// +// Created by David Jennes on 15/02/15. +// Copyright (c) 2015. All rights reserved. +// + +#import "UIStoryboard+DJLocalization.h" + +#import "DJLocalizationSystem.h" + +@implementation UIStoryboard (DJLocalization) + ++ (instancetype)dj_storyboardWithName:(NSString *)name { + return [self storyboardWithName: name bundle: DJLocalizationSystem.shared.bundle]; +} + +@end diff --git a/Example/Pods/DJLocalization/LICENSE b/Example/Pods/DJLocalization/LICENSE new file mode 100644 index 0000000..86f5b1f --- /dev/null +++ b/Example/Pods/DJLocalization/LICENSE @@ -0,0 +1,19 @@ +Copyright (c) 2015 David Jennes + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +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. diff --git a/Example/Pods/DJLocalization/README.md b/Example/Pods/DJLocalization/README.md new file mode 100644 index 0000000..208226e --- /dev/null +++ b/Example/Pods/DJLocalization/README.md @@ -0,0 +1,75 @@ +# DJLocalization + +[![Version](https://img.shields.io/cocoapods/v/DJLocalization.svg?style=flat)](http://cocoadocs.org/docsets/DJLocalization) +[![License](https://img.shields.io/cocoapods/l/DJLocalization.svg?style=flat)](http://cocoadocs.org/docsets/DJLocalization) +[![Platform](https://img.shields.io/cocoapods/p/DJLocalization.svg?style=flat)](http://cocoadocs.org/docsets/DJLocalization) + +Localization system that allows language switching at runtime. Supports both code strings (NSLocalizedString) and storyboards (base internationalization). + +## Demo + +To try the example project, just run the following command: + + pod try DJLocalization + +## Requirements + +Requires iOS 6 or higher. + +## Installation + +### From CocoaPods + +DJLocalization is available through [CocoaPods](http://cocoapods.org). To install +it, simply add the following line to your Podfile: + + pod "DJLocalization" + +For Swift, use: + + pod "DJLocalization/Swift" + + +### Manually + +_**Important note if your project doesn't use ARC**: you must add the `-fobjc-arc` compiler flag to all 'DJLocalization' files in Target Settings > Build Phases > Compile Sources._ + +* Drag the `DJLocalization/DJlocalization` folder into your project. + +## Usage + +### Importing headers + +Then simply add the following import to your prefix header, or any file where you use the NSLocalizedString macro (or variants). + + @import DJLocalization; + +#####*Important:* +You must import the header wherever you use the NSLocalizedString macro, as this header replaces the default NSLocalizedString macro with a custom one. If you don't, runtime switching of languages won't work. + +### Localization + +Use your normal localization workflow and everything should work correctly. For code strings use `NSLocalizedString`, for storyboards use Base Internationalization. + +As mentioned before, `NSLocalizedString` will only work correctly if you first include the correct headers. If you want a bit more safety, the library provides some extra macros `DJLocalizedString` that provide the same functionality as the overridden `NSLocalizedString` macros. This way you'll get a compilation error if you forget to include the headers. + +### Switching languages + +At runtime, you can switch the language at any time by setting the language property: + + [DJLocalizationSystem shared].language = @"en"; + +Be careful to only use language codes (en, nl, fr, etc...) for localizations that exist in your project. + +#####*Important:* +Views are translated on load. This means that if you switch the language at some point, only subsequently loaded views will have the correct language strings. Ideally, when you switch languages, you should pop your navigation controller to it's root view controller. + +## Credits + +DJLocalization is brought to you by [David Jennes](https://twitter.com/davidjennes). The code is inspired by [Rolandas Razma's](https://twitter.com/rolandas_razma) work with [RRBaseInternationalization](https://github.com/RolandasRazma/RRBaseInternationalization) (especially the way to load strings for storyboard/xib views). + +Props to Rolandas Razma + +## License + +DJLocalization is available under the MIT license. See the LICENSE file for more info. diff --git a/Example/Pods/Expecta/Expecta/EXPDefines.h b/Example/Pods/Expecta/Expecta/EXPDefines.h index 52af721..f37f697 100644 --- a/Example/Pods/Expecta/Expecta/EXPDefines.h +++ b/Example/Pods/Expecta/Expecta/EXPDefines.h @@ -9,9 +9,9 @@ #ifndef Expecta_EXPDefines_h #define Expecta_EXPDefines_h -typedef void (^EXPBasicBlock)(); -typedef id (^EXPIdBlock)(); -typedef BOOL (^EXPBoolBlock)(); -typedef NSString *(^EXPStringBlock)(); +typedef void (^EXPBasicBlock)(void); +typedef id (^EXPIdBlock)(void); +typedef BOOL (^EXPBoolBlock)(void); +typedef NSString *(^EXPStringBlock)(void); #endif diff --git a/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+respondTo.m b/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+respondTo.m index d294113..597aeec 100644 --- a/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+respondTo.m +++ b/Example/Pods/Expecta/Expecta/Matchers/EXPMatchers+respondTo.m @@ -4,12 +4,16 @@ EXPMatcherImplementationBegin(respondTo, (SEL expected)) { BOOL actualIsNil = (actual == nil); BOOL expectedIsNull = (expected == NULL); - + prerequisite (^BOOL { return !(actualIsNil || expectedIsNull); }); match(^BOOL { + if ([actual respondsToSelector:@selector(instancesRespondToSelector:)] && + [actual instancesRespondToSelector:expected]) { + return YES; + } return [actual respondsToSelector:expected]; }); diff --git a/Example/Pods/Expecta/README.md b/Example/Pods/Expecta/README.md index 1933707..afebcf2 100644 --- a/Example/Pods/Expecta/README.md +++ b/Example/Pods/Expecta/README.md @@ -1,13 +1,8 @@ -#Expecta - -[![Build Status](http://img.shields.io/travis/specta/expecta/master.svg?style=flat)](https://travis-ci.org/specta/expecta) -[![Pod Version](http://img.shields.io/cocoapods/v/Expecta.svg?style=flat)](http://cocoadocs.org/docsets/Expecta/) -[![Pod Platform](http://img.shields.io/cocoapods/p/Expecta.svg?style=flat)](http://cocoadocs.org/docsets/Expecta/) -[![Pod License](http://img.shields.io/cocoapods/l/Expecta.svg?style=flat)](https://www.apache.org/licenses/LICENSE-2.0.html) +# Expecta [![Build Status](http://img.shields.io/travis/specta/expecta/master.svg?style=flat)](https://travis-ci.org/specta/expecta) [![Pod Version](http://img.shields.io/cocoapods/v/Expecta.svg?style=flat)](http://cocoadocs.org/docsets/Expecta/) A matcher framework for Objective-C and Cocoa. -## Introduction +## FEATURES The main advantage of using Expecta over other matcher frameworks is that you do not have to specify the data types. Also, the syntax of Expecta matchers is much more readable and does not suffer from parenthesitis. @@ -18,63 +13,10 @@ expect([bar isBar]).to.equal(YES); expect(baz).to.equal(3.14159); ``` -Expecta is framework-agnostic: it works well with XCTest and XCTest-compatible test frameworks such as [Specta](http://github.com/petejkim/specta/). +Expecta is framework-agnostic: it works well with XCTest and XCTest-compatible test frameworks such as [Specta](http://github.com/petejkim/specta/), or [Kiwi](https://github.com/kiwi-bdd/Kiwi/). -## Installation - -You can setup Expecta using [Carthage](https://github.com/Carthage/Carthage), [CocoaPods](http://github.com/CocoaPods/CocoaPods) or [completely manually](#setting-up-manually). - -### Carthage - -1. Add Expecta to your project's `Cartfile.private`: - - ```ruby - github "specta/expecta" "master" - ``` - -2. Run `carthage update` in your project directory. -3. Drag the appropriate **Expecta.framework** for your platform (located in `Carthage/Build/`) into your application’s Xcode project, and add it to your test target(s). - -### CocoaPods - -1. Add Expecta to your project's `Podfile`: - - ```ruby - target :MyApp do - # Your app's dependencies - end - - target :MyAppTests do - pod 'Expecta', '~> 1.0.0' - end - ``` - -2. Run `pod update` or `pod install` in your project directory. - -### Setting Up Manually - -1. Clone Expecta from Github. -2. Run `rake` in your project directory to build the frameworks and libraries. -3. Add a Cocoa or Cocoa Touch Unit Testing Bundle target to your Xcode project if you don't already have one. -4. For **OS X projects**, copy and add `Expecta.framework` in the `Products/osx` folder to your project's test target. - - For **iOS projects**, copy and add `Expecta.framework` in the `Products/ios` folder to your project's test target. - - You can also use `libExpecta.a` if you prefer to link Expecta as a static library — iOS 7.x and below require this. - -6. Add `-ObjC` and `-all_load` to the **Other Linker Flags** build setting for the test target in your Xcode project. -7. You can now use Expecta in your test classes by adding the following import: - - ```objective-c - @import Expecta; // If you're using Expecta.framework - - // OR - - #import // If you're using the static library, or the framework - ``` - -## Built-in Matchers +## MATCHERS > `expect(x).to.equal(y);` compares objects or primitives x and y and passes if they are identical (==) or equivalent isEqual:). @@ -132,13 +74,13 @@ You can setup Expecta using [Carthage](https://github.com/Carthage/Carthage), [C > `expect(x).to.match(y);` passes if an instance of NSString `x` matches regular expression (given as NSString) `y` one or more times. -## Inverting Matchers +### Inverting Matchers Every matcher's criteria can be inverted by prepending `.notTo` or `.toNot`: >`expect(x).notTo.equal(y);` compares objects or primitives x and y and passes if they are *not* equivalent. -## Asynchronous Testing +### Asynchronous Testing Every matcher can be made to perform asynchronous testing by prepending `.will`, `.willNot` or `after(...)`: @@ -172,14 +114,14 @@ describe(@"Foo", ^{ }); ``` -## Forced Failing +### Forced Failing You can fail a test by using the `failure` attribute. This can be used to test branching. > `failure(@"This should not happen");` outright fails a test. -## Writing New Matchers +### WRITING NEW MATCHERS Writing a new matcher is easy with special macros provided by Expecta. Take a look at how `.beKindOf()` matcher is defined: @@ -246,7 +188,7 @@ EXPMatcherImplementationBegin(beKindOf, (Class expected)) { EXPMatcherImplementationEnd ``` -## Dynamic Predicate Matchers +## DYNAMIC PREDICATE MATCHERS It is possible to add predicate matchers by simply defining the matcher interface, with the matcher implementation being handled at runtime by delegating to the predicate method on your object. @@ -282,6 +224,68 @@ You can now write your assertion as follows: expect(lightSwitch).isTurnedOn(); ``` +## INSTALLATION + +You can setup Expecta using [CocoaPods](http://github.com/CocoaPods/CocoaPods), [Carthage](https://github.com/Carthage/Carthage) or [completely manually](#setting-up-manually). + +### CocoaPods + +1. Add Expecta to your project's `Podfile`: + +```ruby +target :MyApp do +# your app dependencies + + target :MyAppTests do + inherit! search_paths + + pod 'Expecta', '~> 1.0' + end +end +``` + +### Carthage + +1. Add Expecta to your project's `Cartfile.private`: + + ```ruby + github "specta/expecta" "master" + ``` + +2. Run `carthage update` in your project directory. +3. Drag the appropriate **Expecta.framework** for your platform (located in `Carthage/Build/`) into your application’s Xcode project, and add it to your test target(s). + + +2. Run `pod update` or `pod install` in your project directory. + +### Setting Up Manually + +1. Clone Expecta from Github. +2. Run `rake` in your project directory to build the frameworks and libraries. +3. Add a Cocoa or Cocoa Touch Unit Testing Bundle target to your Xcode project if you don't already have one. +4. For **OS X projects**, copy and add `Expecta.framework` in the `Products/osx` folder to your project's test target. + + For **iOS projects**, copy and add `Expecta.framework` in the `Products/ios` folder to your project's test target. + + You can also use `libExpecta.a` if you prefer to link Expecta as a static library — iOS 7.x and below require this. + +6. Add `-ObjC` and `-all_load` to the **Other Linker Flags** build setting for the test target in your Xcode project. +7. You can now use Expecta in your test classes by adding the following import: + + ```objective-c + @import Expecta; // If you're using Expecta.framework + + // OR + + #import // If you're using the static library, or the framework + ``` + +## STATUS + +Expecta, and Specta are considered done projects, there are no plans for _active_ development on the project at the moment aside from ensuring future Xcode compatability. +Therefore it is a stable dependency, but will not be moving into the Swift world. If you are looking for that, we recommend you consider [Quick](https://github.com/quick/quick) and [Nimble](https://github.com/quick/nimble). + + ## Contribution Guidelines * Please use only spaces and indent 2 spaces at a time. @@ -290,4 +294,4 @@ expect(lightSwitch).isTurnedOn(); ## License -Copyright (c) 2012-2015 [Specta Team](https://github.com/specta?tab=members). This software is licensed under the [MIT License](http://github.com/specta/specta/raw/master/LICENSE). +Copyright (c) 2012-2016 [Specta Team](https://github.com/specta?tab=members). This software is licensed under the [MIT License](http://github.com/specta/specta/raw/master/LICENSE). diff --git a/Example/Pods/Local Podspecs/NSDate_Utils.podspec.json b/Example/Pods/Local Podspecs/NSDate_Utils.podspec.json index 3453c18..aebacd3 100644 --- a/Example/Pods/Local Podspecs/NSDate_Utils.podspec.json +++ b/Example/Pods/Local Podspecs/NSDate_Utils.podspec.json @@ -1,6 +1,6 @@ { "name": "NSDate_Utils", - "version": "1.0.6", + "version": "1.1.0", "summary": "NSDate_Utils is a NSDate category that helps date managements. For example NSString to NSDate, NSDate to NSString,NSSdate comparisons", "homepage": "https://github.com/giuseppenucifora/NSDate_Utils", "license": "MIT", @@ -9,11 +9,16 @@ }, "source": { "git": "https://github.com/giuseppenucifora/NSDate_Utils.git", - "tag": "1.0.6" + "tag": "1.1.0" }, "platforms": { - "ios": "7.0" + "ios": "8.0" }, "requires_arc": true, + "dependencies": { + "DJLocalization": [ + + ] + }, "source_files": "Pod/Classes/**/*" } diff --git a/Example/Pods/Manifest.lock b/Example/Pods/Manifest.lock index 4a3332e..62b17f0 100644 --- a/Example/Pods/Manifest.lock +++ b/Example/Pods/Manifest.lock @@ -1,5 +1,8 @@ PODS: - - Expecta (1.0.5) + - DJLocalization (1.2.2): + - DJLocalization/Core (= 1.2.2) + - DJLocalization/Core (1.2.2) + - Expecta (1.0.6) - Expecta+Snapshots (3.1.1): - Expecta (~> 1.0) - FBSnapshotTestCase/Core (~> 2.0) @@ -9,7 +12,8 @@ PODS: - FBSnapshotTestCase/Core (2.1.4) - FBSnapshotTestCase/SwiftSupport (2.1.4): - FBSnapshotTestCase/Core - - NSDate_Utils (1.0.6) + - NSDate_Utils (1.1.0): + - DJLocalization - Specta (1.0.6) DEPENDENCIES: @@ -21,15 +25,16 @@ DEPENDENCIES: EXTERNAL SOURCES: NSDate_Utils: - :path: "../" + :path: ../ SPEC CHECKSUMS: - Expecta: e1c022fcd33910b6be89c291d2775b3fe27a89fe + DJLocalization: 0c84029af375647d4104a42ae36be87194c46c47 + Expecta: 3b6bd90a64b9a1dcb0b70aa0e10a7f8f631667d5 Expecta+Snapshots: dcff217eef506dabd6dfdc7864ea2da321fafbb8 - FBSnapshotTestCase: '094f9f314decbabe373b87cc339bea235a63e07a' - NSDate_Utils: c7802a1e0f5ef3acaf39bf55806a1caaa0343d2d + FBSnapshotTestCase: 094f9f314decbabe373b87cc339bea235a63e07a + NSDate_Utils: c858a89da6e204ecf53aca48dbccb4da4d25bc9e Specta: f506f3a8361de16bc0dcf3b17b75e269072ba465 PODFILE CHECKSUM: 5d3cb6429ba8613bec51b3e797c0070e91be6b26 -COCOAPODS: 1.2.0 +COCOAPODS: 1.3.1 diff --git a/Example/Pods/Pods.xcodeproj/project.pbxproj b/Example/Pods/Pods.xcodeproj/project.pbxproj index 2402ad4..63229ed 100644 --- a/Example/Pods/Pods.xcodeproj/project.pbxproj +++ b/Example/Pods/Pods.xcodeproj/project.pbxproj @@ -7,171 +7,184 @@ objects = { /* Begin PBXBuildFile section */ - 01F278A54C85C2C865DDAD4090C559B6 /* EXPDoubleTuple.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E348D84229E9000F93233339AFC317B /* EXPDoubleTuple.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 03890D59600D45E6E9463700F9B11FFE /* XCTestCase+Specta.h in Headers */ = {isa = PBXBuildFile; fileRef = 7085F5CB16BF96F625D6465A4DA29F6F /* XCTestCase+Specta.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0676595134A6036819E78D0404919486 /* FBSnapshotTestCasePlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A7DDD4A7CE0636458E013320B3DCFC2 /* FBSnapshotTestCasePlatform.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 06A3305D0809E503914727643B3DDFB5 /* Pods-NSDate_Utils_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FC2BE82DED7FDB75BEA1F5DBC0D0B91F /* Pods-NSDate_Utils_Tests-dummy.m */; }; - 0B11B174B2ADC6056A89A3EBE624151D /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0438870BEF19EF2588872D886D220DCE /* XCTest.framework */; }; - 0D3FBF37E9E7829108F70F4D5658918A /* EXPMatchers+FBSnapshotTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 22C6E607E674AB20554080B3E2A4B463 /* EXPMatchers+FBSnapshotTest.m */; }; - 0E86BBA3A65849769B47995A5E91C881 /* Expecta-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 370C8488ABDC015700FCF97F059BFD42 /* Expecta-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1009851D0C0B3FCBC574C414CC4D31B0 /* EXPMatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = B647A866CAF55406F516ECE6F8AE7F8B /* EXPMatcher.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 146D2FD2E3B98DA591885219099F2A4A /* SPTCallSite.m in Sources */ = {isa = PBXBuildFile; fileRef = 827940DAD186863374E719CC8D5FCE23 /* SPTCallSite.m */; }; - 1492F065F5EFD049EE05C202CDDF78F9 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F1777B40A6AD81F254190979323F8E4 /* QuartzCore.framework */; }; - 150503B99F77D3D8897EFFC68C09A351 /* EXPMatcherHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = C22221B3B6D1F46AB81218794BF7243C /* EXPMatcherHelpers.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 1D676445A1446539D4B722E6EF0C802A /* ExpectaSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 71AF85B6558D634E3F383BA6AAEF3267 /* ExpectaSupport.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 20A2A483CDC911D6DB2EAD12444D1406 /* SPTTestSuite.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DC5EEA6B4746F1531DD69BC488E69F4 /* SPTTestSuite.m */; }; - 214F8D721940BD9AA4BAB0E5AE2E8A1C /* EXPBlockDefinedMatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 1795ED3D682D8EDC5CEC1EA831BEECEA /* EXPBlockDefinedMatcher.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 255345DF9F3F6DDC70B0ABAF2775324B /* SPTCompiledExample.m in Sources */ = {isa = PBXBuildFile; fileRef = C468A58BBD0142C1B15D5D1E99CD14D2 /* SPTCompiledExample.m */; }; - 26BBC63406C6863BE6DD27C64A70CB42 /* UIImage+Diff.h in Headers */ = {isa = PBXBuildFile; fileRef = 39686FFA13DAF68BB30B71BF78A974C3 /* UIImage+Diff.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 285C6F6BE59E632CB219CD98B4EDC1AA /* EXPMatchers+endWith.m in Sources */ = {isa = PBXBuildFile; fileRef = 7EF2072991CBA5987025178150BD49F6 /* EXPMatchers+endWith.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 2916D75F69E777954F5BF46AE63C52C0 /* EXPMatchers+beSubclassOf.m in Sources */ = {isa = PBXBuildFile; fileRef = 43D9D3D0C96D5284831B2C833DD79A36 /* EXPMatchers+beSubclassOf.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 2CC183AE5C5A4EA8EE0E14768F464BBB /* Expecta+Snapshots-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B4E553ECAD689166E16E72CBB083D61A /* Expecta+Snapshots-dummy.m */; }; - 2E81617C064F3E68A7A2A9E6A370E073 /* SPTTestSuite.h in Headers */ = {isa = PBXBuildFile; fileRef = BEC4D7D2259B4B710DED71BD7949BACA /* SPTTestSuite.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 31328536635BDC034D4E43B11CA846BD /* FBSnapshotTestCase.h in Headers */ = {isa = PBXBuildFile; fileRef = D417CB778FB662CFE79DB7FD9E6554A8 /* FBSnapshotTestCase.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 361B58CE2A28E03CA83A73617ED739F2 /* EXPMatchers+raise.m in Sources */ = {isa = PBXBuildFile; fileRef = FBA78AD493C15517AB45ED930E51A1E0 /* EXPMatchers+raise.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 3849993FDFE7642E4BEF1096B047FB86 /* UIImage+Compare.h in Headers */ = {isa = PBXBuildFile; fileRef = 42785F13EF84B082ACE2FE7CAE842881 /* UIImage+Compare.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 39461DAB3DE2637F4AE2BA94F19DCF2B /* EXPDoubleTuple.h in Headers */ = {isa = PBXBuildFile; fileRef = B4A617F1464A48980127A218AB18B898 /* EXPDoubleTuple.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3D1C615E741E95E2199E36C47AFE618A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A8DB1C700296DFB23B88DE8C25EAC168 /* Foundation.framework */; }; - 41CC214541946B82A25CE427BB81ABEA /* EXPMatchers+beKindOf.h in Headers */ = {isa = PBXBuildFile; fileRef = DF4BD2050ABE1205D1B1A164803A18DA /* EXPMatchers+beKindOf.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 425C4DFD1FAB011D70F825631144BC4C /* EXPMatchers+equal.h in Headers */ = {isa = PBXBuildFile; fileRef = B618D49996FCD7F7FD5C94C024840087 /* EXPMatchers+equal.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 44CEA6756C5E1880C9B3BFC6F0380E7A /* Pods-NSDate_Utils_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A6B4973476C3FE069814FFC61CC07F4A /* Pods-NSDate_Utils_Example-dummy.m */; }; - 47BA77226056D790A2964605F468D6EA /* FBSnapshotTestCase-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3AD199F953A76C011AAE0FEC9C76880F /* FBSnapshotTestCase-dummy.m */; }; - 47D171E32EAE4FB61A9971B9BC00226D /* EXPMatchers+beLessThan.m in Sources */ = {isa = PBXBuildFile; fileRef = 58335D3E2909BF5D62C81864F19B78F1 /* EXPMatchers+beLessThan.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 47EC7BD047C906B92B85399E097E258E /* UIApplication+StrictKeyWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = A29BA8C3E774C364BD56A4AAFFF1E6AA /* UIApplication+StrictKeyWindow.m */; }; - 4861F2FFD5A4306E7B7BD3CD0D8199AC /* EXPMatchers+beCloseTo.h in Headers */ = {isa = PBXBuildFile; fileRef = 99C6B238F553535C865A990AB217F102 /* EXPMatchers+beCloseTo.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4A571204986D316637D43D3F93DCAC77 /* SpectaUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 6732C58C04F8341AD50DE36AEE2EBF41 /* SpectaUtility.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4C90F652C7F43AB6C049AF2A77119222 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 05C5BAC93F600FCB00D99EC7370D8C32 /* UIKit.framework */; }; - 4CA4F8F64565882DCFA174872749C0EF /* EXPFloatTuple.h in Headers */ = {isa = PBXBuildFile; fileRef = CD486E43B7465271EE4EBCB98E5DAF8D /* EXPFloatTuple.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 508B6D0572C0C3B4A3E019B814595D4A /* EXPMatchers+beInTheRangeOf.m in Sources */ = {isa = PBXBuildFile; fileRef = FDB667FDEC11589B26C54AE25F550F2C /* EXPMatchers+beInTheRangeOf.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 51FCC9EDD6B60BF63B5EF7CAC94CCF23 /* EXPMatchers+conformTo.m in Sources */ = {isa = PBXBuildFile; fileRef = 222277628576E6CB279473688BA88F01 /* EXPMatchers+conformTo.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 536C8AA0E13CB20FCCDBD96A3D98E330 /* Pods-NSDate_Utils_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 729D1249D3CD662B8F28F4A43FFDA870 /* Pods-NSDate_Utils_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5386920B6032F8686000D909CFF26041 /* SPTExampleGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 707C1B7180164DF6560719973AEC92C1 /* SPTExampleGroup.m */; }; - 57C1DAC24BEE6C12B29AAE68DD3EBEC7 /* FBSnapshotTestController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B0529E4A817BCF5BF22ADA77866D0B7 /* FBSnapshotTestController.m */; }; - 5922E3B61E351E2A21095BD92E4FE8AC /* NSValue+Expecta.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ABB2201E2C23ED09ECB1930B874AA59 /* NSValue+Expecta.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 597E5A323FD0306B81C3F7E9C8E5580D /* EXPMatchers+match.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BE7EA43918F8547CCF8A9EABF75B788 /* EXPMatchers+match.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5D3A5E9359A70F84E5EC0C4CE701DDE5 /* SPTGlobalBeforeAfterEach.h in Headers */ = {isa = PBXBuildFile; fileRef = 0160D7EDEB19856BC505CA9E9075EC06 /* SPTGlobalBeforeAfterEach.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5D4700451D6C9DFC6D5FFB86671EA2AC /* EXPDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 91EC2AD8B04A0D0F0EC345F2B7070A95 /* EXPDefines.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5D95DC370FE619787EA993FF91CA51EE /* UIApplication+StrictKeyWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = F787B4263348644844F9D18CCBA4A124 /* UIApplication+StrictKeyWindow.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5E4F55D319FF771D658CCE335E7CB498 /* EXPFloatTuple.m in Sources */ = {isa = PBXBuildFile; fileRef = 57AF203F6B98E185A822F5F0BC6DB151 /* EXPFloatTuple.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 5F160713BF583BCBC136CE95E62F9C2F /* EXPMatchers+beInstanceOf.h in Headers */ = {isa = PBXBuildFile; fileRef = F6636C0229E54793FBCF41941077A50A /* EXPMatchers+beInstanceOf.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5F175CA5FAF2F1209EBBE9240C06063C /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0438870BEF19EF2588872D886D220DCE /* XCTest.framework */; }; - 60CD83FA1B2BF6E93B59834C1E0CBEF0 /* EXPUnsupportedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CE42337022021AE45B4E067D494C32F /* EXPUnsupportedObject.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 61680D5413DD7EE723783B324EE3BEBA /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A8DB1C700296DFB23B88DE8C25EAC168 /* Foundation.framework */; }; - 640BE70F1E7AE853A88259A9A192DDA7 /* NSDate+NSDate_Util.m in Sources */ = {isa = PBXBuildFile; fileRef = E25B1FF88D05AA09706C2609C79A845C /* NSDate+NSDate_Util.m */; }; - 64C46AF200F2347115A0DF2799D6E403 /* EXPMatchers+beNil.h in Headers */ = {isa = PBXBuildFile; fileRef = 28980D1268BF5D8196D266D4FC2F50E4 /* EXPMatchers+beNil.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 67C1AE1B989FDCA50BC0E7FC807CE386 /* NSDate_Utils-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B9A604A22517317ECC105AA77659CAA /* NSDate_Utils-dummy.m */; }; - 6A725E2BDA6D302C9F30439A6390689C /* SPTCallSite.h in Headers */ = {isa = PBXBuildFile; fileRef = F0550288A3E4DA5B207A666BE8E62168 /* SPTCallSite.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6C88FB17C3AE49E50ABF4C36176B55BB /* ExpectaObject+FBSnapshotTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 7874ECE957DC7F80946CB43F9419C903 /* ExpectaObject+FBSnapshotTest.m */; }; - 6F1C8C2851E8B7476992360408E05B40 /* SpectaUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = FDE880572CC4AF9A3FB007D3FBAB3FC9 /* SpectaUtility.m */; }; - 6FA693F86B8C583ED94F45EC0BDECBD2 /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0438870BEF19EF2588872D886D220DCE /* XCTest.framework */; }; - 754197D184C23A19146DB4C9B3B90050 /* SwiftSupport.swift in Sources */ = {isa = PBXBuildFile; fileRef = D15181A2A90AA8A9F24D97664729A1B2 /* SwiftSupport.swift */; }; - 75DF265A4FEC4E42582B8570194CB583 /* UIImage+Diff.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F5D1A0E9BD4DDFBC87E078DEC833A16 /* UIImage+Diff.m */; }; - 778C9F1A1715E05313578E39AB46726E /* EXPMatchers+beInstanceOf.m in Sources */ = {isa = PBXBuildFile; fileRef = 758C1F02B714A0821AE887BC00092EF6 /* EXPMatchers+beInstanceOf.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 7A27CAFCB586104AA102A9C161AD0978 /* SpectaDSL.h in Headers */ = {isa = PBXBuildFile; fileRef = FB93C123AC6F580DF978D60A8191F679 /* SpectaDSL.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7E81176499F06E523CE3039B08AB5051 /* EXPMatchers+beGreaterThan.h in Headers */ = {isa = PBXBuildFile; fileRef = A54AE821E3D5E7DF7DA3ED83AF9B4AF2 /* EXPMatchers+beGreaterThan.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7F1209D2DD89FBCDABDA3CDBB0DDB49D /* XCTestCase+Specta.m in Sources */ = {isa = PBXBuildFile; fileRef = 33C35331B5791C85920198E31A6E6396 /* XCTestCase+Specta.m */; }; - 8220368E5F7EA70947BAD2B6F216C61B /* EXPMatchers+beFalsy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A6FA6514DAE7C7226C8C112DFE74E58 /* EXPMatchers+beFalsy.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 827762B596901D18DAD29830875E1922 /* SPTSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = BF701C1C8F03B74819BFFD19C9DEA426 /* SPTSpec.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 82E5A07FA4CEECF136C15FBF6E39250F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A8DB1C700296DFB23B88DE8C25EAC168 /* Foundation.framework */; }; - 86365A8DEDA7C9315120DED5EC7F23DC /* XCTest+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 70879F4C3E0CE4C4593A08B4BB1C1AF0 /* XCTest+Private.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 86A40D9CFD9051779B220F53DE991DCA /* SPTExample.h in Headers */ = {isa = PBXBuildFile; fileRef = E5970E5D763F65673B9F5F4C5D0A9D0F /* SPTExample.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 870CAAA15357EFF9E1619737DEE56067 /* EXPMatchers+raiseWithReason.m in Sources */ = {isa = PBXBuildFile; fileRef = 3BC296A75FAF73BAC957A272364A7351 /* EXPMatchers+raiseWithReason.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 87AE70A44BD8E8676B2A3EDB6E334138 /* EXPMatchers+endWith.h in Headers */ = {isa = PBXBuildFile; fileRef = 306E137B97A38C22CEC1E6B27B33B78A /* EXPMatchers+endWith.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 87C61FE4EBA517506085582BD4175CCA /* SPTSharedExampleGroups.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A5F6EC9C4C2795348152BA100C32B10 /* SPTSharedExampleGroups.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 889FE136349E95DFBE20F050685FB124 /* FBSnapshotTestController.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E61F0C06E6807EE9DB324F266909BED /* FBSnapshotTestController.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8B0A34DADDB56E70CF4A5177E65AA081 /* ExpectaObject.h in Headers */ = {isa = PBXBuildFile; fileRef = D24C93A44A823E785EE91D78394D63B9 /* ExpectaObject.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8B8C4B3E28E6FC6D26037EFC282BE4C5 /* EXPMatchers+beIdenticalTo.h in Headers */ = {isa = PBXBuildFile; fileRef = 959C603B0B7FDCFBCEC10840D84C91CE /* EXPMatchers+beIdenticalTo.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8C14546CF091E0A5B1F0F37F576990B8 /* EXPMatchers+beginWith.h in Headers */ = {isa = PBXBuildFile; fileRef = D182CF13D4DB728DAAD9786E7E8143B2 /* EXPMatchers+beginWith.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8D49114979B44DF683A9A964565E0FE6 /* FBSnapshotTestCase-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 389932E25AB5180C7024CD173A4B6D4B /* FBSnapshotTestCase-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8EDC47391C8554AD5C7A91C4D5AFC5F2 /* SPTExampleGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = E5B05516F560C08699BF135F729DD5E4 /* SPTExampleGroup.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8F990515E868D90C15D2148DD1A22403 /* EXPMatchers+haveCountOf.h in Headers */ = {isa = PBXBuildFile; fileRef = C22A60459B7AF517FAFC1750AAABDCEB /* EXPMatchers+haveCountOf.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 902484060770C69D57D4865C4EED84EF /* NSDate_Utils-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 895885A7B46A44F2D148C3BA7476BD81 /* NSDate_Utils-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9242EFA2F87E7A82ED4009423DA1A942 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A8DB1C700296DFB23B88DE8C25EAC168 /* Foundation.framework */; }; - 9605A166839E5B582E5F4A08E786DF1F /* Specta.h in Headers */ = {isa = PBXBuildFile; fileRef = FB362E8DBE566CD58ABD4124535F2081 /* Specta.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9695B31D33EA0EC9CFB42B9D8ABC447D /* SPTSharedExampleGroups.m in Sources */ = {isa = PBXBuildFile; fileRef = E42AB63F84DC20AD246EB8FFA3EFEF2C /* SPTSharedExampleGroups.m */; }; - 98571BE17A46245CA1717CF9157A0807 /* EXPMatchers+beTruthy.m in Sources */ = {isa = PBXBuildFile; fileRef = 19D7E0FEC362BEC211648D104511BD5C /* EXPMatchers+beTruthy.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 98CF4E57A36540E13153A545546A1D11 /* UIImage+Compare.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D87B9B77C0C44AA9110F83844B1744F /* UIImage+Compare.m */; }; - 99E6D51A8A4E3FFB7601D182D995A3BA /* ExpectaObject.m in Sources */ = {isa = PBXBuildFile; fileRef = C4016D8E6902B23AF2CA1BB3EBE78467 /* ExpectaObject.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 9A0ADF06F5B6BC3A70EDE1285BAF9346 /* EXPMatchers+beCloseTo.m in Sources */ = {isa = PBXBuildFile; fileRef = D4EF39D56E8A55D649F9810E362FA318 /* EXPMatchers+beCloseTo.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 9CAFC7DAE2E661FC92393E5CC55D1D61 /* EXPMatchers.h in Headers */ = {isa = PBXBuildFile; fileRef = D23BC3A3A95CE0E0D9D4237760C716E8 /* EXPMatchers.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9CFF07440060332E5BCB557D40336E55 /* FBSnapshotTestCase.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C93D23F4DB7569CC800036F3F8FAFE2E /* FBSnapshotTestCase.framework */; }; - 9E4463D68D13C127762B1ACB8249B64C /* EXPBlockDefinedMatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = C09805DD701F05B0FA3348EDA3BDC7CB /* EXPBlockDefinedMatcher.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 9EA076D25036A0F4765FF3FB57CF4A6A /* EXPMatchers+contain.m in Sources */ = {isa = PBXBuildFile; fileRef = 79A18C1EB2EC337A87C21C89732639D4 /* EXPMatchers+contain.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 9F51005FE4BF10FA9906B02DAD609C6E /* EXPMatchers+postNotification.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A7D54F2046B9323D0CB2748E382BAA3 /* EXPMatchers+postNotification.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - A037AD9C808583B3EC9F49B3EEDA588A /* EXPMatchers+beginWith.m in Sources */ = {isa = PBXBuildFile; fileRef = 91453F85BD953E023DC76351FFEA1D94 /* EXPMatchers+beginWith.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - A0612BA825C81CE45266B214DF3A8BCB /* EXPMatchers+respondTo.m in Sources */ = {isa = PBXBuildFile; fileRef = 69BE855C76546F434D61EAC92F2988BD /* EXPMatchers+respondTo.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - A0B36C4898CD3A75ED692AE1B945EFED /* Expecta.h in Headers */ = {isa = PBXBuildFile; fileRef = D148E142A756A0CD8BA055B657862814 /* Expecta.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A2D3CFFEBD3AEA2164A535192492F3B8 /* EXPMatchers+postNotification.h in Headers */ = {isa = PBXBuildFile; fileRef = 431B770DD18C6C810E0ECD250D063471 /* EXPMatchers+postNotification.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A41034714C779552383D238C48FC4FDA /* SPTCompiledExample.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A35BE0267849F84514C1480B43A470C /* SPTCompiledExample.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A4D708563D06FCC4791D002723CBA985 /* Specta-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 757732CABCCD0D3A3DECF0188321177D /* Specta-dummy.m */; }; - A6CC81FC886EE8FF27EF4DD48D6F8F56 /* NSValue+Expecta.m in Sources */ = {isa = PBXBuildFile; fileRef = 064D45869BC2F37AD341CBDE9F822387 /* NSValue+Expecta.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - A8446D8224F103BE7F4A5237A60F0EFB /* EXPMatchers+raise.h in Headers */ = {isa = PBXBuildFile; fileRef = D2F336ECC66909E2FC05C8E3D376CF12 /* EXPMatchers+raise.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA5060419F1307F5F03ECBEA70DB186C /* EXPMatchers+beLessThanOrEqualTo.h in Headers */ = {isa = PBXBuildFile; fileRef = AB2DADCEEF4EB97FC102ACCDF8FB51E9 /* EXPMatchers+beLessThanOrEqualTo.h */; settings = {ATTRIBUTES = (Public, ); }; }; - ABBDD0372C687211E68EDCE0166F3632 /* ExpectaSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B52C3887A118767CC0A773555B7C029 /* ExpectaSupport.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AC0AB78F3A7629ED1C7F3F82BBB3F471 /* EXPMatchers+beSupersetOf.m in Sources */ = {isa = PBXBuildFile; fileRef = C6C7CD39279BCFD392135DCF45F61F03 /* EXPMatchers+beSupersetOf.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - AE7BBD46BA00A9AC69249ADA56402162 /* EXPUnsupportedObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D21C236068062A9C4DDD612C5A3467B /* EXPUnsupportedObject.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - B1487AC2DD502CCE46631C123E047D28 /* EXPMatchers+beFalsy.h in Headers */ = {isa = PBXBuildFile; fileRef = 51B34EFC4AB0895A9F930413755AC4EB /* EXPMatchers+beFalsy.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B376B4A777F62028AF0965D93658413E /* SPTExample.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C75DFE8C463E28459A9A9DD7E921822 /* SPTExample.m */; }; - B3F189747A7A3CEDA9200CB2749AC7D8 /* EXPMatchers+raiseWithReason.h in Headers */ = {isa = PBXBuildFile; fileRef = A833BC98F95E74ABFF866C85B3FC9338 /* EXPMatchers+raiseWithReason.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B89A19FA40C5F590F0AAD91908FD9DDB /* Specta.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3C69DF8F7AD5A0ABA3453069F77F5742 /* Specta.framework */; }; - BBC7D292529B7E5DB953171190E321AF /* EXPMatchers+beGreaterThanOrEqualTo.h in Headers */ = {isa = PBXBuildFile; fileRef = BB4DC57B05E96C2EB152A59EFCDB6F12 /* EXPMatchers+beGreaterThanOrEqualTo.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BC530A8234C398F9F3AD1A1D41670B65 /* EXPMatchers+match.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A1F80FD765EB6D46AB2B2CDF719CFD7 /* EXPMatchers+match.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - BFC7D32CFE8200730837306AFF61E5AD /* EXPExpect.m in Sources */ = {isa = PBXBuildFile; fileRef = B34472CAE1E8EC26152CEFB1E82BE050 /* EXPExpect.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - C14CD98EE4DDC0B7689F058D5B79CC47 /* EXPMatchers+beGreaterThanOrEqualTo.m in Sources */ = {isa = PBXBuildFile; fileRef = 64E62B947C08376C71E07F669D636FF8 /* EXPMatchers+beGreaterThanOrEqualTo.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - C1DF1378F608A031627FBF81B6A9C6E5 /* SpectaTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 15F9AB2173995E9AF3D7647F10735FD6 /* SpectaTypes.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C516B672FFC9DB635E0E53DA8FC9CF88 /* FBSnapshotTestCase.m in Sources */ = {isa = PBXBuildFile; fileRef = DAD6E6C6CD2E4105AE9595FA4CC6137C /* FBSnapshotTestCase.m */; }; - C676818DADAC76EE2FDC5533CBF3648A /* EXPMatchers+haveCountOf.m in Sources */ = {isa = PBXBuildFile; fileRef = 5267376A130B688AA8DC669933C16D9A /* EXPMatchers+haveCountOf.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - C8291FF9EB9DFF1D78EDDF416F1A5325 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A8DB1C700296DFB23B88DE8C25EAC168 /* Foundation.framework */; }; - CA12FB380E35F806A03D6094BC278F1B /* Expecta.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E47922AA0F6D472C6BD29B15DF2DE148 /* Expecta.framework */; }; - CB99A2D7D003745153A564346DF8ABA8 /* EXPMatchers+beSubclassOf.h in Headers */ = {isa = PBXBuildFile; fileRef = C4318C653F9355DDB7F7553A52F8890D /* EXPMatchers+beSubclassOf.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CD22121B77F0F8E2B6A58AF6226038C2 /* EXPMatchers+beIdenticalTo.m in Sources */ = {isa = PBXBuildFile; fileRef = 760BA7B5F09D477F128F7CD8D3AB7FF2 /* EXPMatchers+beIdenticalTo.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - CD66900813CFE317343F5A4053AE73EC /* EXPMatchers+beNil.m in Sources */ = {isa = PBXBuildFile; fileRef = AEFE305560483772516B366088F6E2B4 /* EXPMatchers+beNil.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - CDBF7F2D23165CAB8B3819A256A49F0A /* ExpectaObject+FBSnapshotTest.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DA8473E9C7CE1583F74DFBDAE8B0854 /* ExpectaObject+FBSnapshotTest.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CE7E4C141657D23213C7FAE616D7FA75 /* EXPMatchers+beLessThanOrEqualTo.m in Sources */ = {isa = PBXBuildFile; fileRef = CD7582733015B7D005A247EF5856A0D6 /* EXPMatchers+beLessThanOrEqualTo.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - CF97CF9E6FFADE4494B0CF3D987095E4 /* NSDate+NSDate_Util.h in Headers */ = {isa = PBXBuildFile; fileRef = 294F2CFB4F79D03BBF16DA0AC8CFB95B /* NSDate+NSDate_Util.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D1768C977F0CD5B420D1A1D2375CDBD4 /* Expecta-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A9A4579B877C302F516E9CEE77766372 /* Expecta-dummy.m */; }; - D180489445C2C507332A6EE964ADA1E5 /* UIImage+Snapshot.h in Headers */ = {isa = PBXBuildFile; fileRef = 612DFA52478D8CE9C4866818C95C29E9 /* UIImage+Snapshot.h */; settings = {ATTRIBUTES = (Private, ); }; }; - D490834AA1304BF36991A257F3366648 /* SpectaDSL.m in Sources */ = {isa = PBXBuildFile; fileRef = DACE406B2E53BE18445F22E26993E5B9 /* SpectaDSL.m */; }; - D7BF9558E071FDF8643CE2B50276B777 /* SPTExcludeGlobalBeforeAfterEach.h in Headers */ = {isa = PBXBuildFile; fileRef = 5514D13D44B78009D4AFEEDFA4E4FDBB /* SPTExcludeGlobalBeforeAfterEach.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DB8F3665E9E382DF52E0DCB4DECE5EAE /* NSObject+Expecta.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F1E859E32D523B17CD8D94AED21A1D4 /* NSObject+Expecta.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DC423A980C991970F4D637AC4C47D863 /* EXPMatchers+conformTo.h in Headers */ = {isa = PBXBuildFile; fileRef = 15EE63300C3D43B1B92124CD21806E8C /* EXPMatchers+conformTo.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DE4EF1ED618D31CA16938565A1CA0607 /* Expecta+Snapshots-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 26B782A5F5606BC64AF7B709A1D93B4E /* Expecta+Snapshots-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DED9AE33B24B462D4B44FE94383B35F4 /* EXPMatchers+respondTo.h in Headers */ = {isa = PBXBuildFile; fileRef = 158CEFBA77071AB835E435120F4CE616 /* EXPMatchers+respondTo.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DF883524C3F35145D74166C01BCFCFC3 /* EXPMatchers+beKindOf.m in Sources */ = {isa = PBXBuildFile; fileRef = C04E3E80E2CD18DEAE104F67CE80B85A /* EXPMatchers+beKindOf.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - E233F5CF4BF16CFB539804C4E995C355 /* EXPMatchers+beLessThan.h in Headers */ = {isa = PBXBuildFile; fileRef = F2D3A79E58CE53867199D68A7690BE0C /* EXPMatchers+beLessThan.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E3355DB3F63F6FE79FD8DD6188B0B3A4 /* EXPMatchers+contain.h in Headers */ = {isa = PBXBuildFile; fileRef = F6ACA95F6EDBB1752AADF70C323E1E5F /* EXPMatchers+contain.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E61E28B50602F353D95914765667969F /* EXPMatcherHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 237C1D40E94ECB9726EC1CC5E6691588 /* EXPMatcherHelpers.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E6D59CAA2A6E134A4643254406ED11F2 /* EXPMatchers+equal.m in Sources */ = {isa = PBXBuildFile; fileRef = 0782314CEFBB6F81294F8002EBFB578E /* EXPMatchers+equal.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - E972E6647713D21A0F21BDAD1816AA29 /* UIImage+Snapshot.m in Sources */ = {isa = PBXBuildFile; fileRef = B44593C7806808BFFCA8CE943799073B /* UIImage+Snapshot.m */; }; - EA5294C319F94E8A4032A59807673349 /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0438870BEF19EF2588872D886D220DCE /* XCTest.framework */; }; - EACB6796872432A0674F191F3BF5F8F5 /* Pods-NSDate_Utils_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F554AB2EC862570B49A7A91593FBCA59 /* Pods-NSDate_Utils_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EDF3CEAAF7922F570A5AD95B005C84F8 /* EXPMatchers+FBSnapshotTest.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B959D8DDAA2ED93C94CF628C922CD14 /* EXPMatchers+FBSnapshotTest.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EE1E8A4B8C4473D82433155B14C28782 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A8DB1C700296DFB23B88DE8C25EAC168 /* Foundation.framework */; }; - F052ECCD91D2A3EE96DDCD0A1F428B84 /* Specta-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D657B34A1C94FBF176F35C1081FD8A9 /* Specta-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F0873AA02837D34381D156267B9EB005 /* FBSnapshotTestCasePlatform.m in Sources */ = {isa = PBXBuildFile; fileRef = C685971A6CB0538D27790478B960CFD8 /* FBSnapshotTestCasePlatform.m */; }; - F550E209CD87F8B799ED7F30DA4C281D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A8DB1C700296DFB23B88DE8C25EAC168 /* Foundation.framework */; }; - F74F0174B426B7EAB501A3788E5D381F /* EXPMatchers+beTruthy.h in Headers */ = {isa = PBXBuildFile; fileRef = A9AD646C1FEAB8503FF6D57F404BC0E6 /* EXPMatchers+beTruthy.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FC223395BCEE46EB920CECD38AFD4402 /* EXPMatchers+beInTheRangeOf.h in Headers */ = {isa = PBXBuildFile; fileRef = 222B35F590250B97F30D1C37C402B693 /* EXPMatchers+beInTheRangeOf.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FC6474103AA989EBD5368772037BE0BB /* EXPMatchers+beSupersetOf.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ABA02BD58E16D9841A495FD86DF6334 /* EXPMatchers+beSupersetOf.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FCDA06700D1989687F2471414453A57A /* SPTSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C8175700E46E467915FC3D84336F6A3 /* SPTSpec.m */; }; - FD39ACDEA6F0B6D6DBB730547CE18BA6 /* EXPExpect.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F63B0FF272D1EB750D82F3EADA2D2CA /* EXPExpect.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FF394D6FEA84206182301180AE4CB957 /* EXPMatchers+beGreaterThan.m in Sources */ = {isa = PBXBuildFile; fileRef = 75C3D8B18F8E2A5FB67C1A251F1D7AA4 /* EXPMatchers+beGreaterThan.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 01F278A54C85C2C865DDAD4090C559B6 /* EXPDoubleTuple.m in Sources */ = {isa = PBXBuildFile; fileRef = D67491E19D55251F9D647C0CF2F0332F /* EXPDoubleTuple.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 03890D59600D45E6E9463700F9B11FFE /* XCTestCase+Specta.h in Headers */ = {isa = PBXBuildFile; fileRef = 84DE42204256F73549F695E81787F624 /* XCTestCase+Specta.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0676595134A6036819E78D0404919486 /* FBSnapshotTestCasePlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AEB1FF182255E4EF30E68AEFBB130E9 /* FBSnapshotTestCasePlatform.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 09B18A0AFD81C25D53BC3FC246DA2349 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1AAC48CBAA1D6BC48D3BA712BE36622F /* Foundation.framework */; }; + 0A11766BD3EF551C7915398A9738375E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1AAC48CBAA1D6BC48D3BA712BE36622F /* Foundation.framework */; }; + 0D3FBF37E9E7829108F70F4D5658918A /* EXPMatchers+FBSnapshotTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 253BD53062D5A83379CA8FD7898078BC /* EXPMatchers+FBSnapshotTest.m */; }; + 0E86BBA3A65849769B47995A5E91C881 /* Expecta-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B3387393C5A85EC4F81AC582F3D5C73 /* Expecta-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1009851D0C0B3FCBC574C414CC4D31B0 /* EXPMatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 1967A27D64BDE056F3D97185336249B1 /* EXPMatcher.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 11948E16BF3548C7BABF77C532966B84 /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B0D212FD70B51FC967FF60308DD79C9F /* XCTest.framework */; }; + 146D2FD2E3B98DA591885219099F2A4A /* SPTCallSite.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C8EF8FE1B80C900B64E42F55BEDB1F0 /* SPTCallSite.m */; }; + 150503B99F77D3D8897EFFC68C09A351 /* EXPMatcherHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = 256AE66FF1FF19ADCACBDA5B19EF2B04 /* EXPMatcherHelpers.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 1780C12E873269455D238406C1480501 /* DJLocalization.h in Headers */ = {isa = PBXBuildFile; fileRef = C972B5CA1AA5A94CDC987E7C6AB70507 /* DJLocalization.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 19B6B108A674BD810C36A118644862C4 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1AAC48CBAA1D6BC48D3BA712BE36622F /* Foundation.framework */; }; + 1A2DC4B200DC897F4435FCB10FADCA37 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1AAC48CBAA1D6BC48D3BA712BE36622F /* Foundation.framework */; }; + 1D676445A1446539D4B722E6EF0C802A /* ExpectaSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 744010E8F6616F0F42DD2EFD2EE1746A /* ExpectaSupport.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 1E46B4CD3EEED028726B696B07BE358E /* NSDate+NSDate_Util.h in Headers */ = {isa = PBXBuildFile; fileRef = 2000E3B087108D485D53394E862354E2 /* NSDate+NSDate_Util.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 20A2A483CDC911D6DB2EAD12444D1406 /* SPTTestSuite.m in Sources */ = {isa = PBXBuildFile; fileRef = 902FFD7EB73EE618036907E56C50D54F /* SPTTestSuite.m */; }; + 214F8D721940BD9AA4BAB0E5AE2E8A1C /* EXPBlockDefinedMatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 975FE7AC40399A8F4A2418E78AFEBF37 /* EXPBlockDefinedMatcher.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 21B3DAADDCABBFDD03478CCBF5DE49D4 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1AAC48CBAA1D6BC48D3BA712BE36622F /* Foundation.framework */; }; + 255345DF9F3F6DDC70B0ABAF2775324B /* SPTCompiledExample.m in Sources */ = {isa = PBXBuildFile; fileRef = FF88F2AC48993E37847D4122C697A0B3 /* SPTCompiledExample.m */; }; + 26BBC63406C6863BE6DD27C64A70CB42 /* UIImage+Diff.h in Headers */ = {isa = PBXBuildFile; fileRef = A049570B9E13B811B977AFC6DC462F52 /* UIImage+Diff.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 285C6F6BE59E632CB219CD98B4EDC1AA /* EXPMatchers+endWith.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B1774FF20D553DAE24FBE8BD1BF5252 /* EXPMatchers+endWith.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 2916D75F69E777954F5BF46AE63C52C0 /* EXPMatchers+beSubclassOf.m in Sources */ = {isa = PBXBuildFile; fileRef = D183F238E84B5982C553CD6DB03D31F3 /* EXPMatchers+beSubclassOf.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 2B224E156F7AB61299D401AD619FA9C3 /* Pods-NSDate_Utils_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 729D1249D3CD662B8F28F4A43FFDA870 /* Pods-NSDate_Utils_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2CC183AE5C5A4EA8EE0E14768F464BBB /* Expecta+Snapshots-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A6CBEE01E709C15BF863B8AAB7CCCC9 /* Expecta+Snapshots-dummy.m */; }; + 2E81617C064F3E68A7A2A9E6A370E073 /* SPTTestSuite.h in Headers */ = {isa = PBXBuildFile; fileRef = 44E0C39C38BA51B8C26A52B952C76DB0 /* SPTTestSuite.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 31328536635BDC034D4E43B11CA846BD /* FBSnapshotTestCase.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F85B7BC86AA18D4D80D48266B4BEFF3 /* FBSnapshotTestCase.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 361B58CE2A28E03CA83A73617ED739F2 /* EXPMatchers+raise.m in Sources */ = {isa = PBXBuildFile; fileRef = 49581B9391CFA744C45EAE9B8B90C426 /* EXPMatchers+raise.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 37796DE5D741F172BEDADE743D46C8E4 /* Pods-NSDate_Utils_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FC2BE82DED7FDB75BEA1F5DBC0D0B91F /* Pods-NSDate_Utils_Tests-dummy.m */; }; + 3849993FDFE7642E4BEF1096B047FB86 /* UIImage+Compare.h in Headers */ = {isa = PBXBuildFile; fileRef = AA2F4A79BE6DD21C27618B48FF4E9214 /* UIImage+Compare.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 39461DAB3DE2637F4AE2BA94F19DCF2B /* EXPDoubleTuple.h in Headers */ = {isa = PBXBuildFile; fileRef = 782B862CAB92C5E72C8DDBD21C3D5E30 /* EXPDoubleTuple.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3DC79943B1DDD329253CF04413FF5372 /* DJLocalizableString.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AB02A7A1906F7AFE86D7838A7A63553 /* DJLocalizableString.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 41CC214541946B82A25CE427BB81ABEA /* EXPMatchers+beKindOf.h in Headers */ = {isa = PBXBuildFile; fileRef = ABB0BC59D7E99775578653D2B1217EAC /* EXPMatchers+beKindOf.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 425C4DFD1FAB011D70F825631144BC4C /* EXPMatchers+equal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F30D819B812A33D362678E4A4991F71 /* EXPMatchers+equal.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 47BA77226056D790A2964605F468D6EA /* FBSnapshotTestCase-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A153490D0C3CAA22B6546DD8FE64EEF /* FBSnapshotTestCase-dummy.m */; }; + 47D171E32EAE4FB61A9971B9BC00226D /* EXPMatchers+beLessThan.m in Sources */ = {isa = PBXBuildFile; fileRef = 65C3A66A3856E9AB7A5C3F4DC8F5BB50 /* EXPMatchers+beLessThan.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 47EC7BD047C906B92B85399E097E258E /* UIApplication+StrictKeyWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = E19EA097A8A92D57BC634A9B40F3FB8F /* UIApplication+StrictKeyWindow.m */; }; + 4861F2FFD5A4306E7B7BD3CD0D8199AC /* EXPMatchers+beCloseTo.h in Headers */ = {isa = PBXBuildFile; fileRef = BE07A0F6F6FBAACC2A7B1396BD50F799 /* EXPMatchers+beCloseTo.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4A571204986D316637D43D3F93DCAC77 /* SpectaUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = AA590806FD8DB4D629738D5E7A8ACCB1 /* SpectaUtility.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4CA4F8F64565882DCFA174872749C0EF /* EXPFloatTuple.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C3B83C3F9D40942B3CB7B2DD4961167 /* EXPFloatTuple.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4ECDE8F58F60C36F96F38533B715BD92 /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B0D212FD70B51FC967FF60308DD79C9F /* XCTest.framework */; }; + 508B6D0572C0C3B4A3E019B814595D4A /* EXPMatchers+beInTheRangeOf.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DF812A3816BB93843A01F8AD080DDCE /* EXPMatchers+beInTheRangeOf.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 51E3F8E47A2429857F390CD53E3A1D3C /* UIStoryboard+DJLocalization.h in Headers */ = {isa = PBXBuildFile; fileRef = 543FF0C7020E314B4BC16AE19597BC4D /* UIStoryboard+DJLocalization.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 51FCC9EDD6B60BF63B5EF7CAC94CCF23 /* EXPMatchers+conformTo.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B7362DCE8C741388CC5FF4E865C48CF /* EXPMatchers+conformTo.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 5386920B6032F8686000D909CFF26041 /* SPTExampleGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 82981E3BCEFDF22C32D76A803F63E519 /* SPTExampleGroup.m */; }; + 576E82D018C9BCE5B4F4D79BE724E909 /* DJLocalizationSystem+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CD4AD8D21AE55CD1116C85DE8AA3290 /* DJLocalizationSystem+Private.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 57C1DAC24BEE6C12B29AAE68DD3EBEC7 /* FBSnapshotTestController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FC3C702BC49D76CB4CA7D5992C08FD4 /* FBSnapshotTestController.m */; }; + 5922E3B61E351E2A21095BD92E4FE8AC /* NSValue+Expecta.h in Headers */ = {isa = PBXBuildFile; fileRef = B193B28455AAB88A39B598FCD0DF200E /* NSValue+Expecta.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 597E5A323FD0306B81C3F7E9C8E5580D /* EXPMatchers+match.h in Headers */ = {isa = PBXBuildFile; fileRef = AEF911B333853F0FC2298BDEAC4017F9 /* EXPMatchers+match.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5D3A5E9359A70F84E5EC0C4CE701DDE5 /* SPTGlobalBeforeAfterEach.h in Headers */ = {isa = PBXBuildFile; fileRef = FBCDE4515D25E5D636494AAC219C0EA4 /* SPTGlobalBeforeAfterEach.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5D4700451D6C9DFC6D5FFB86671EA2AC /* EXPDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = C3718A8B8487C9B0E5B408AC58790145 /* EXPDefines.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5D95DC370FE619787EA993FF91CA51EE /* UIApplication+StrictKeyWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = FF2482B26EC455C47EE2DE0B79B1AAAF /* UIApplication+StrictKeyWindow.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5DBF09C279EBC072D4B59C0EEE75A73B /* NSDate+NSDate_Util.m in Sources */ = {isa = PBXBuildFile; fileRef = 5EDC26863BA9C354E602811D4906C16A /* NSDate+NSDate_Util.m */; }; + 5E4F55D319FF771D658CCE335E7CB498 /* EXPFloatTuple.m in Sources */ = {isa = PBXBuildFile; fileRef = CF978D18A7D2C7A3DA34B9DD3E81267A /* EXPFloatTuple.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 5F160713BF583BCBC136CE95E62F9C2F /* EXPMatchers+beInstanceOf.h in Headers */ = {isa = PBXBuildFile; fileRef = C267A718251527D0F8220AF781C4205C /* EXPMatchers+beInstanceOf.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 60CD83FA1B2BF6E93B59834C1E0CBEF0 /* EXPUnsupportedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = BD06014DD99D9619F6B1270D9935AE6D /* EXPUnsupportedObject.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 64C46AF200F2347115A0DF2799D6E403 /* EXPMatchers+beNil.h in Headers */ = {isa = PBXBuildFile; fileRef = F1E169F4ECDEED0F64B401C26019F328 /* EXPMatchers+beNil.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6A725E2BDA6D302C9F30439A6390689C /* SPTCallSite.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D5CE34D7C4B150E05C1FF9B130F846F /* SPTCallSite.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6C88FB17C3AE49E50ABF4C36176B55BB /* ExpectaObject+FBSnapshotTest.m in Sources */ = {isa = PBXBuildFile; fileRef = BB6CF95E72C9E661A71CCDB8877B9A84 /* ExpectaObject+FBSnapshotTest.m */; }; + 6F1C8C2851E8B7476992360408E05B40 /* SpectaUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = F0CED164053A8E3C84C6C7B54977739E /* SpectaUtility.m */; }; + 709E175BC1EB4163515F223445E97010 /* Pods-NSDate_Utils_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F554AB2EC862570B49A7A91593FBCA59 /* Pods-NSDate_Utils_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 74B60B3D5F7834637905C08815B88D1E /* DJLocalization-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D73A1078B1410ADAAF9176486AF0098B /* DJLocalization-dummy.m */; }; + 754197D184C23A19146DB4C9B3B90050 /* SwiftSupport.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F8A2DE743C26793CF9D2CCB71D320B2 /* SwiftSupport.swift */; }; + 75DF265A4FEC4E42582B8570194CB583 /* UIImage+Diff.m in Sources */ = {isa = PBXBuildFile; fileRef = CC36CF9278A80E8D8C7E1032FB158DF4 /* UIImage+Diff.m */; }; + 778C9F1A1715E05313578E39AB46726E /* EXPMatchers+beInstanceOf.m in Sources */ = {isa = PBXBuildFile; fileRef = A50CB307B9D7096D1EFA93F3153D46F8 /* EXPMatchers+beInstanceOf.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 7910EB9A4E7153395FC3E94D0328C9A4 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1AAC48CBAA1D6BC48D3BA712BE36622F /* Foundation.framework */; }; + 7A27CAFCB586104AA102A9C161AD0978 /* SpectaDSL.h in Headers */ = {isa = PBXBuildFile; fileRef = B4265BAF4DE1AC008BA3D7808D12521D /* SpectaDSL.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7E81176499F06E523CE3039B08AB5051 /* EXPMatchers+beGreaterThan.h in Headers */ = {isa = PBXBuildFile; fileRef = 4075EC638B59E883F29B97EDB6AD6D82 /* EXPMatchers+beGreaterThan.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7F1209D2DD89FBCDABDA3CDBB0DDB49D /* XCTestCase+Specta.m in Sources */ = {isa = PBXBuildFile; fileRef = E8563536589B7E4FFFCDDD4ED34C402E /* XCTestCase+Specta.m */; }; + 8220368E5F7EA70947BAD2B6F216C61B /* EXPMatchers+beFalsy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B9D64D0043E1466DA1ADE4B55C3C22D /* EXPMatchers+beFalsy.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 827762B596901D18DAD29830875E1922 /* SPTSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = 61C8FD253B5773CF185956431AD1C47F /* SPTSpec.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 85BB92CC3FF4FB4A54F20BCBF1666A55 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1AAC48CBAA1D6BC48D3BA712BE36622F /* Foundation.framework */; }; + 86365A8DEDA7C9315120DED5EC7F23DC /* XCTest+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = DA646588644582F7EE9614FEB9FAE2BF /* XCTest+Private.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 86A40D9CFD9051779B220F53DE991DCA /* SPTExample.h in Headers */ = {isa = PBXBuildFile; fileRef = FBB3A6FB8D54EAF015CFFBFA0E54AB7B /* SPTExample.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 870CAAA15357EFF9E1619737DEE56067 /* EXPMatchers+raiseWithReason.m in Sources */ = {isa = PBXBuildFile; fileRef = 5BA44B7F9BEA233230BDCC6ED2924E69 /* EXPMatchers+raiseWithReason.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 87AE70A44BD8E8676B2A3EDB6E334138 /* EXPMatchers+endWith.h in Headers */ = {isa = PBXBuildFile; fileRef = 37E42CCA5D6B2B43529571D68F11C00A /* EXPMatchers+endWith.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 87C61FE4EBA517506085582BD4175CCA /* SPTSharedExampleGroups.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E8E84D675C4A5C33ED694414CDB864A /* SPTSharedExampleGroups.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 889FE136349E95DFBE20F050685FB124 /* FBSnapshotTestController.h in Headers */ = {isa = PBXBuildFile; fileRef = CC1437E4742170F3F681FA4F2B5F7CCD /* FBSnapshotTestController.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 896101BE9C9418E16348EA032E34ADB0 /* NSDate_Utils-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4544E5E89C90C6D97A443F1E0073D767 /* NSDate_Utils-dummy.m */; }; + 8B0A34DADDB56E70CF4A5177E65AA081 /* ExpectaObject.h in Headers */ = {isa = PBXBuildFile; fileRef = B8D8CAB30539AAAC27CE1C1DFE1B7898 /* ExpectaObject.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8B8C4B3E28E6FC6D26037EFC282BE4C5 /* EXPMatchers+beIdenticalTo.h in Headers */ = {isa = PBXBuildFile; fileRef = E6BBF466A77A4141B80983728542358E /* EXPMatchers+beIdenticalTo.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8C14546CF091E0A5B1F0F37F576990B8 /* EXPMatchers+beginWith.h in Headers */ = {isa = PBXBuildFile; fileRef = 8963FBCC11E8AFF14103D22D533C74CA /* EXPMatchers+beginWith.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8D49114979B44DF683A9A964565E0FE6 /* FBSnapshotTestCase-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = CE2814C356DFE997CE1B06E847237640 /* FBSnapshotTestCase-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8EDC47391C8554AD5C7A91C4D5AFC5F2 /* SPTExampleGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = B96BB8616784F07F68B5F97B4DF691EE /* SPTExampleGroup.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8F990515E868D90C15D2148DD1A22403 /* EXPMatchers+haveCountOf.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E4245A458F69131072967E3568C61D1 /* EXPMatchers+haveCountOf.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9605A166839E5B582E5F4A08E786DF1F /* Specta.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AD4A139443FC994428C843D5DBC288B /* Specta.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9695B31D33EA0EC9CFB42B9D8ABC447D /* SPTSharedExampleGroups.m in Sources */ = {isa = PBXBuildFile; fileRef = DEBC113B61BE9F3CF3D7CDA5463A3F99 /* SPTSharedExampleGroups.m */; }; + 98571BE17A46245CA1717CF9157A0807 /* EXPMatchers+beTruthy.m in Sources */ = {isa = PBXBuildFile; fileRef = 06AD8E24600C3C272B2923812D9D3C33 /* EXPMatchers+beTruthy.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 98CF4E57A36540E13153A545546A1D11 /* UIImage+Compare.m in Sources */ = {isa = PBXBuildFile; fileRef = 9141BC3230EC75BAA27250BD1940F56C /* UIImage+Compare.m */; }; + 99E6D51A8A4E3FFB7601D182D995A3BA /* ExpectaObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AD8060B45FAD0C3DE6E833CE2388E07 /* ExpectaObject.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 9A0ADF06F5B6BC3A70EDE1285BAF9346 /* EXPMatchers+beCloseTo.m in Sources */ = {isa = PBXBuildFile; fileRef = D860306098188AB361A4850BFC3C0FCF /* EXPMatchers+beCloseTo.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 9CAFC7DAE2E661FC92393E5CC55D1D61 /* EXPMatchers.h in Headers */ = {isa = PBXBuildFile; fileRef = ED6C0717CFA863667D50D04A1282B2DE /* EXPMatchers.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9CFF07440060332E5BCB557D40336E55 /* FBSnapshotTestCase.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8B28A7F41C730D5F7C2512AA6EE08788 /* FBSnapshotTestCase.framework */; }; + 9E4463D68D13C127762B1ACB8249B64C /* EXPBlockDefinedMatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 728B4EAD5E170333D831F46346AB295B /* EXPBlockDefinedMatcher.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 9EA076D25036A0F4765FF3FB57CF4A6A /* EXPMatchers+contain.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DB65F87A6FED2FAEE0D2E7B1FFF8270 /* EXPMatchers+contain.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 9F51005FE4BF10FA9906B02DAD609C6E /* EXPMatchers+postNotification.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F6396B3EA23B455CC1CFC8E92883DD2 /* EXPMatchers+postNotification.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + A037AD9C808583B3EC9F49B3EEDA588A /* EXPMatchers+beginWith.m in Sources */ = {isa = PBXBuildFile; fileRef = B2990E0501A450545F356E05211B8B52 /* EXPMatchers+beginWith.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + A0612BA825C81CE45266B214DF3A8BCB /* EXPMatchers+respondTo.m in Sources */ = {isa = PBXBuildFile; fileRef = 3ABA1BD221F7E695FF8A5A622604B8AC /* EXPMatchers+respondTo.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + A0B36C4898CD3A75ED692AE1B945EFED /* Expecta.h in Headers */ = {isa = PBXBuildFile; fileRef = A4C8FC0BE523A503B73DC2D196AC6AD7 /* Expecta.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A2D3CFFEBD3AEA2164A535192492F3B8 /* EXPMatchers+postNotification.h in Headers */ = {isa = PBXBuildFile; fileRef = 31A0380C0A4041C96F5D8B5274E549C4 /* EXPMatchers+postNotification.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A3DC50EB3B529963BDBB4E9DF0F6243C /* Pods-NSDate_Utils_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A6B4973476C3FE069814FFC61CC07F4A /* Pods-NSDate_Utils_Example-dummy.m */; }; + A41034714C779552383D238C48FC4FDA /* SPTCompiledExample.h in Headers */ = {isa = PBXBuildFile; fileRef = 71A02784A0D646BBEC4DC650B13AE4C4 /* SPTCompiledExample.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A4A2C087AA4AA349960073F575E15A40 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 19AE2F085EF196486BAF6DEE803C4A87 /* UIKit.framework */; }; + A4D708563D06FCC4791D002723CBA985 /* Specta-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 76DB9CB5AB41CB7628D38A3875602876 /* Specta-dummy.m */; }; + A6CC81FC886EE8FF27EF4DD48D6F8F56 /* NSValue+Expecta.m in Sources */ = {isa = PBXBuildFile; fileRef = 2DCA07CB3515715DE3A2D1755F23C16C /* NSValue+Expecta.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + A80F4BE1409F96416E2EB28A8E230556 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 19AE2F085EF196486BAF6DEE803C4A87 /* UIKit.framework */; }; + A8446D8224F103BE7F4A5237A60F0EFB /* EXPMatchers+raise.h in Headers */ = {isa = PBXBuildFile; fileRef = 58EE24444C8FE3C8D81E991B30A26EB9 /* EXPMatchers+raise.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA5060419F1307F5F03ECBEA70DB186C /* EXPMatchers+beLessThanOrEqualTo.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C6D801798A0B90C913D603BC7D0A629 /* EXPMatchers+beLessThanOrEqualTo.h */; settings = {ATTRIBUTES = (Public, ); }; }; + ABBDD0372C687211E68EDCE0166F3632 /* ExpectaSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = CB9D5FAED59C7821A4B9484A955168F9 /* ExpectaSupport.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AC0AB78F3A7629ED1C7F3F82BBB3F471 /* EXPMatchers+beSupersetOf.m in Sources */ = {isa = PBXBuildFile; fileRef = D5D8008BB3FD26F3B1AE8E2707FC3B13 /* EXPMatchers+beSupersetOf.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + AE7BBD46BA00A9AC69249ADA56402162 /* EXPUnsupportedObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 438FAB8FC475E362298734C43DC806EB /* EXPUnsupportedObject.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + B1487AC2DD502CCE46631C123E047D28 /* EXPMatchers+beFalsy.h in Headers */ = {isa = PBXBuildFile; fileRef = BC3728C16F7414B9FB2C5255696D60AD /* EXPMatchers+beFalsy.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B1FB214C8508C15E0A07DA4F56E8C259 /* DJLocalizableString.m in Sources */ = {isa = PBXBuildFile; fileRef = EB1155BBBF8A1CE1E1187E00C523E6BD /* DJLocalizableString.m */; }; + B376B4A777F62028AF0965D93658413E /* SPTExample.m in Sources */ = {isa = PBXBuildFile; fileRef = 687ABB05587519F7D7D5DBA1FE5B1F04 /* SPTExample.m */; }; + B3F189747A7A3CEDA9200CB2749AC7D8 /* EXPMatchers+raiseWithReason.h in Headers */ = {isa = PBXBuildFile; fileRef = 484D055801189D3B4A84BDD1AA3D6BFA /* EXPMatchers+raiseWithReason.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B83B015B5F0143A1D2FED54771A4B68E /* DJLocalizationSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B7CA1E144F183102ED9EB853A6EE9E5 /* DJLocalizationSystem.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B89A19FA40C5F590F0AAD91908FD9DDB /* Specta.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FD2A937A2F110DD5E5178BF7ABADD3BB /* Specta.framework */; }; + B9CB0F21C82E0B324F690955DEA7CC9C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1AAC48CBAA1D6BC48D3BA712BE36622F /* Foundation.framework */; }; + BBC7D292529B7E5DB953171190E321AF /* EXPMatchers+beGreaterThanOrEqualTo.h in Headers */ = {isa = PBXBuildFile; fileRef = EA2574F700810A472A1E85DDD2D62949 /* EXPMatchers+beGreaterThanOrEqualTo.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BC4A3F392D78ABB11CD4381E94C90889 /* DJLocalization-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E8CFDE41AA38E441EEAA3591974CB5F /* DJLocalization-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BC530A8234C398F9F3AD1A1D41670B65 /* EXPMatchers+match.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A6BBCE149C193E06EB144E40B257B34 /* EXPMatchers+match.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + BD157AEB9B3A78A56264FA33306071A1 /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B0D212FD70B51FC967FF60308DD79C9F /* XCTest.framework */; }; + BFC7D32CFE8200730837306AFF61E5AD /* EXPExpect.m in Sources */ = {isa = PBXBuildFile; fileRef = 98777E7162B329389C99C304BB8796EE /* EXPExpect.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + C14CD98EE4DDC0B7689F058D5B79CC47 /* EXPMatchers+beGreaterThanOrEqualTo.m in Sources */ = {isa = PBXBuildFile; fileRef = D3B0BAE8C47A348AD8B4C9FF3AEA6838 /* EXPMatchers+beGreaterThanOrEqualTo.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + C1DF1378F608A031627FBF81B6A9C6E5 /* SpectaTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FF0C6FA10AE3FB76CEE273BBBC9116A /* SpectaTypes.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C2AC23E0FE8257233E90748E4DD9651F /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B0D212FD70B51FC967FF60308DD79C9F /* XCTest.framework */; }; + C49FA290256E683C5E1E22F59365E782 /* DJLocalizationSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D91388C794E22A24574945D66FD489C /* DJLocalizationSystem.m */; }; + C516B672FFC9DB635E0E53DA8FC9CF88 /* FBSnapshotTestCase.m in Sources */ = {isa = PBXBuildFile; fileRef = C894D5C3B3BD9AF0219E5ACAF350BEA7 /* FBSnapshotTestCase.m */; }; + C676818DADAC76EE2FDC5533CBF3648A /* EXPMatchers+haveCountOf.m in Sources */ = {isa = PBXBuildFile; fileRef = 31B788FD0BC9757CEC617B0254C42983 /* EXPMatchers+haveCountOf.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + CA12FB380E35F806A03D6094BC278F1B /* Expecta.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C3BD366719D715C35E6281F81A74EB3A /* Expecta.framework */; }; + CB99A2D7D003745153A564346DF8ABA8 /* EXPMatchers+beSubclassOf.h in Headers */ = {isa = PBXBuildFile; fileRef = 31581AD83AFAB635A18A33D1E26D1093 /* EXPMatchers+beSubclassOf.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CD22121B77F0F8E2B6A58AF6226038C2 /* EXPMatchers+beIdenticalTo.m in Sources */ = {isa = PBXBuildFile; fileRef = CB8547189C539D2C46AEDEE26882F5F6 /* EXPMatchers+beIdenticalTo.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + CD66900813CFE317343F5A4053AE73EC /* EXPMatchers+beNil.m in Sources */ = {isa = PBXBuildFile; fileRef = B46D04DC87188B48EE1B2F63D626F796 /* EXPMatchers+beNil.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + CDBF7F2D23165CAB8B3819A256A49F0A /* ExpectaObject+FBSnapshotTest.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DA2B60F8F2FE94F101D30759CC4E483 /* ExpectaObject+FBSnapshotTest.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CE7E4C141657D23213C7FAE616D7FA75 /* EXPMatchers+beLessThanOrEqualTo.m in Sources */ = {isa = PBXBuildFile; fileRef = F02B60B0294A0CBFE4635D354347F8BC /* EXPMatchers+beLessThanOrEqualTo.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + D1768C977F0CD5B420D1A1D2375CDBD4 /* Expecta-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = ECB49D9F14B38696FAD9FE4FF60EB021 /* Expecta-dummy.m */; }; + D180489445C2C507332A6EE964ADA1E5 /* UIImage+Snapshot.h in Headers */ = {isa = PBXBuildFile; fileRef = 4420C2EF18082FE3509C4379BA0A65ED /* UIImage+Snapshot.h */; settings = {ATTRIBUTES = (Private, ); }; }; + D490834AA1304BF36991A257F3366648 /* SpectaDSL.m in Sources */ = {isa = PBXBuildFile; fileRef = D7A0092E9DFF8FBA9B9619E1C94D11A4 /* SpectaDSL.m */; }; + D7BF9558E071FDF8643CE2B50276B777 /* SPTExcludeGlobalBeforeAfterEach.h in Headers */ = {isa = PBXBuildFile; fileRef = 316C49B3F4CEBA7EE181DA4E0D89A85B /* SPTExcludeGlobalBeforeAfterEach.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DB8F3665E9E382DF52E0DCB4DECE5EAE /* NSObject+Expecta.h in Headers */ = {isa = PBXBuildFile; fileRef = E5BF73836E2C1AF376089D72F267FEA6 /* NSObject+Expecta.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DC423A980C991970F4D637AC4C47D863 /* EXPMatchers+conformTo.h in Headers */ = {isa = PBXBuildFile; fileRef = AF5F8F1D21FF99944EF5D0951DD39A6A /* EXPMatchers+conformTo.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DE4EF1ED618D31CA16938565A1CA0607 /* Expecta+Snapshots-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 06D57A881101AC87215A734BDFCC4443 /* Expecta+Snapshots-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DED9AE33B24B462D4B44FE94383B35F4 /* EXPMatchers+respondTo.h in Headers */ = {isa = PBXBuildFile; fileRef = B8D5BC2CD67D6058C07719F7A66B5BD7 /* EXPMatchers+respondTo.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DF883524C3F35145D74166C01BCFCFC3 /* EXPMatchers+beKindOf.m in Sources */ = {isa = PBXBuildFile; fileRef = 0343583F5E462BEE31FE6C0D32C466F9 /* EXPMatchers+beKindOf.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + E233F5CF4BF16CFB539804C4E995C355 /* EXPMatchers+beLessThan.h in Headers */ = {isa = PBXBuildFile; fileRef = 24ED4D0A462E8A8E160E8C071A30DE65 /* EXPMatchers+beLessThan.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E3355DB3F63F6FE79FD8DD6188B0B3A4 /* EXPMatchers+contain.h in Headers */ = {isa = PBXBuildFile; fileRef = 236748E01769680E0CFE5606EFD41D7D /* EXPMatchers+contain.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E61E28B50602F353D95914765667969F /* EXPMatcherHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = CB8E1721BDC36F96B902B013614BDA8E /* EXPMatcherHelpers.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E6D59CAA2A6E134A4643254406ED11F2 /* EXPMatchers+equal.m in Sources */ = {isa = PBXBuildFile; fileRef = C4602C3A6F1EEEA8014F646123B93D62 /* EXPMatchers+equal.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + E8CCC7289747C081F6D6A10DA4239FC9 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4CE452B9EC62443E588CB55DD4D7E12A /* QuartzCore.framework */; }; + E972E6647713D21A0F21BDAD1816AA29 /* UIImage+Snapshot.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A137A8B69796D104B719A9EEC4FF648 /* UIImage+Snapshot.m */; }; + EDF3CEAAF7922F570A5AD95B005C84F8 /* EXPMatchers+FBSnapshotTest.h in Headers */ = {isa = PBXBuildFile; fileRef = EA3E48851125D08986C9BFDCF7811957 /* EXPMatchers+FBSnapshotTest.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F052ECCD91D2A3EE96DDCD0A1F428B84 /* Specta-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D9261CD15AB8874F79A6009E67481836 /* Specta-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F0873AA02837D34381D156267B9EB005 /* FBSnapshotTestCasePlatform.m in Sources */ = {isa = PBXBuildFile; fileRef = 4581A641A5CEABCE2CC583CF0888738E /* FBSnapshotTestCasePlatform.m */; }; + F255830C94C00E4FA4DAD37403E891E8 /* UIStoryboard+DJLocalization.m in Sources */ = {isa = PBXBuildFile; fileRef = 4058FCFBD43A31D7F420AD37E34244CA /* UIStoryboard+DJLocalization.m */; }; + F74F0174B426B7EAB501A3788E5D381F /* EXPMatchers+beTruthy.h in Headers */ = {isa = PBXBuildFile; fileRef = FB373F14F0DFD13542A7E2ED7BA98449 /* EXPMatchers+beTruthy.h */; settings = {ATTRIBUTES = (Public, ); }; }; + FC223395BCEE46EB920CECD38AFD4402 /* EXPMatchers+beInTheRangeOf.h in Headers */ = {isa = PBXBuildFile; fileRef = F52EB69D0C3A7CB9C29DD10EC19F0C8E /* EXPMatchers+beInTheRangeOf.h */; settings = {ATTRIBUTES = (Public, ); }; }; + FC6474103AA989EBD5368772037BE0BB /* EXPMatchers+beSupersetOf.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DF1C7995B0F8E1A82FA1413C1F67B13 /* EXPMatchers+beSupersetOf.h */; settings = {ATTRIBUTES = (Public, ); }; }; + FC8AB29D9DACB0D79A46DCA17DD4FB95 /* DJLocalization.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2A26C2B319A86358ABE4AB60EB557CE1 /* DJLocalization.framework */; }; + FCDA06700D1989687F2471414453A57A /* SPTSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = 2706D5FC4DC09EA3C6B139354478559D /* SPTSpec.m */; }; + FCF94E8687B71E31EE72D0D4BA626D5C /* NSDate_Utils-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C6557A21FBD2AB91054D8BFE66258134 /* NSDate_Utils-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + FD39ACDEA6F0B6D6DBB730547CE18BA6 /* EXPExpect.h in Headers */ = {isa = PBXBuildFile; fileRef = C13D921E7472278E485614564B5883EE /* EXPExpect.h */; settings = {ATTRIBUTES = (Public, ); }; }; + FF394D6FEA84206182301180AE4CB957 /* EXPMatchers+beGreaterThan.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EC8997036DFE35789D1D1E98E609CAB /* EXPMatchers+beGreaterThan.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 0F3D3630B2ED8EF83A7B5FEF0881B103 /* PBXContainerItemProxy */ = { + 3ACB7386740914E29321B09DF0ABCE14 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = 21B910E0FB008FE15458D3D9B59BED16; - remoteInfo = Specta; + remoteGlobalIDString = 3E8E8C1AA879E4E3A20A8E6F67001A6E; + remoteInfo = DJLocalization; }; - 3F41B574A720CC5C22AD432E11372E8D /* PBXContainerItemProxy */ = { + 4BBA2E9E8950F6DB33B5F604D5F5907B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = D3054FB7F84727519F50B6AD1E49531E; - remoteInfo = FBSnapshotTestCase; + remoteGlobalIDString = 871B2BCE897E7E5EFAE614F16AC195F3; + remoteInfo = NSDate_Utils; }; 4DDF989F04D3E1DCF12BBAA7836E70A9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -180,13 +193,6 @@ remoteGlobalIDString = D3054FB7F84727519F50B6AD1E49531E; remoteInfo = FBSnapshotTestCase; }; - 5A23989EECA4352CDE0D2D65A87D9954 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; - proxyType = 1; - remoteGlobalIDString = 68E501DEBC19E7D6794DEBEE8FCF317A; - remoteInfo = NSDate_Utils; - }; 5C6D7B5A976F2A92FE24BD14BCB09413 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; @@ -194,6 +200,13 @@ remoteGlobalIDString = 5D161BA711701D7E41E02A5702FD024E; remoteInfo = Expecta; }; + 668AFE7EB20B8713FD41EE18B0C120EA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = E427C6DCA153E01C52C89563011E9C39; + remoteInfo = "Expecta+Snapshots"; + }; 68D86DBD027206337165492BDE3876AA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; @@ -201,214 +214,251 @@ remoteGlobalIDString = 21B910E0FB008FE15458D3D9B59BED16; remoteInfo = Specta; }; - A0B9AB958D1441513948E080152FB1FC /* PBXContainerItemProxy */ = { + 6CBA05820F20C3826B13226C3252B37C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 871B2BCE897E7E5EFAE614F16AC195F3; + remoteInfo = NSDate_Utils; + }; + 75AC65EB80D587F2DE8F817488ABE57D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3E8E8C1AA879E4E3A20A8E6F67001A6E; + remoteInfo = DJLocalization; + }; + A0F6155396E592C1AB75F8FCD14CA30B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3E8E8C1AA879E4E3A20A8E6F67001A6E; + remoteInfo = DJLocalization; + }; + A52265EC093415D865FE7373C3F4C463 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; remoteGlobalIDString = 5D161BA711701D7E41E02A5702FD024E; remoteInfo = Expecta; }; - C9A8E20CF3B05C1514CBE75640700066 /* PBXContainerItemProxy */ = { + CFD1BC212044D89EEAEB1A306AC8AF2A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = E427C6DCA153E01C52C89563011E9C39; - remoteInfo = "Expecta+Snapshots"; + remoteGlobalIDString = 21B910E0FB008FE15458D3D9B59BED16; + remoteInfo = Specta; }; - D836409548355CC603B0C3C9347E5D7F /* PBXContainerItemProxy */ = { + FC3549652C4BB09FD5D5279EF40C123D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; proxyType = 1; - remoteGlobalIDString = 68E501DEBC19E7D6794DEBEE8FCF317A; - remoteInfo = NSDate_Utils; + remoteGlobalIDString = D3054FB7F84727519F50B6AD1E49531E; + remoteInfo = FBSnapshotTestCase; }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ - 0160D7EDEB19856BC505CA9E9075EC06 /* SPTGlobalBeforeAfterEach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SPTGlobalBeforeAfterEach.h; path = Specta/Specta/SPTGlobalBeforeAfterEach.h; sourceTree = ""; }; - 0438870BEF19EF2588872D886D220DCE /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.0.sdk/System/Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; }; - 04BA3CB0925A5177251D524DF6DDFCDC /* NSDate_Utils.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = NSDate_Utils.modulemap; sourceTree = ""; }; - 05C5BAC93F600FCB00D99EC7370D8C32 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.0.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; }; - 064D45869BC2F37AD341CBDE9F822387 /* NSValue+Expecta.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSValue+Expecta.m"; path = "Expecta/NSValue+Expecta.m"; sourceTree = ""; }; + 0343583F5E462BEE31FE6C0D32C466F9 /* EXPMatchers+beKindOf.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+beKindOf.m"; path = "Expecta/Matchers/EXPMatchers+beKindOf.m"; sourceTree = ""; }; + 064AC83C8DEAC3FAA289184FE17B0BC6 /* DJLocalization.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DJLocalization.xcconfig; sourceTree = ""; }; 064EBB1C5FBF0F11A0D61147DA9EC386 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 0782314CEFBB6F81294F8002EBFB578E /* EXPMatchers+equal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+equal.m"; path = "Expecta/Matchers/EXPMatchers+equal.m"; sourceTree = ""; }; - 07BC24DA84E3F15453DEC37314546A77 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 0A5F6EC9C4C2795348152BA100C32B10 /* SPTSharedExampleGroups.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SPTSharedExampleGroups.h; path = Specta/Specta/SPTSharedExampleGroups.h; sourceTree = ""; }; - 0C75DFE8C463E28459A9A9DD7E921822 /* SPTExample.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SPTExample.m; path = Specta/Specta/SPTExample.m; sourceTree = ""; }; - 10F53C0C4FB54FFA148A9FBEEC6A5147 /* Pods_NSDate_Utils_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_NSDate_Utils_Example.framework; path = "Pods-NSDate_Utils_Example.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; - 158CEFBA77071AB835E435120F4CE616 /* EXPMatchers+respondTo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+respondTo.h"; path = "Expecta/Matchers/EXPMatchers+respondTo.h"; sourceTree = ""; }; - 15EE63300C3D43B1B92124CD21806E8C /* EXPMatchers+conformTo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+conformTo.h"; path = "Expecta/Matchers/EXPMatchers+conformTo.h"; sourceTree = ""; }; - 15F9AB2173995E9AF3D7647F10735FD6 /* SpectaTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpectaTypes.h; path = Specta/Specta/SpectaTypes.h; sourceTree = ""; }; + 06AD8E24600C3C272B2923812D9D3C33 /* EXPMatchers+beTruthy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+beTruthy.m"; path = "Expecta/Matchers/EXPMatchers+beTruthy.m"; sourceTree = ""; }; + 06D57A881101AC87215A734BDFCC4443 /* Expecta+Snapshots-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Expecta+Snapshots-umbrella.h"; sourceTree = ""; }; + 0B28DDC300D3CC464C6BC45C7E07C1B8 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 0B2CA9A5ADA37DAD3EFB479356D3551B /* Pods_NSDate_Utils_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_NSDate_Utils_Tests.framework; path = "Pods-NSDate_Utils_Tests.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; + 0CD4AD8D21AE55CD1116C85DE8AA3290 /* DJLocalizationSystem+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DJLocalizationSystem+Private.h"; path = "DJLocalization/DJLocalizationSystem+Private.h"; sourceTree = ""; }; + 0D91388C794E22A24574945D66FD489C /* DJLocalizationSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DJLocalizationSystem.m; path = DJLocalization/DJLocalizationSystem.m; sourceTree = ""; }; + 0DB65F87A6FED2FAEE0D2E7B1FFF8270 /* EXPMatchers+contain.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+contain.m"; path = "Expecta/Matchers/EXPMatchers+contain.m"; sourceTree = ""; }; + 0DF812A3816BB93843A01F8AD080DDCE /* EXPMatchers+beInTheRangeOf.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+beInTheRangeOf.m"; path = "Expecta/Matchers/EXPMatchers+beInTheRangeOf.m"; sourceTree = ""; }; 1624A2D778A8B11DF0D0A5C3DEDA5157 /* Pods-NSDate_Utils_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-NSDate_Utils_Tests.debug.xcconfig"; sourceTree = ""; }; - 171770FEF3943F46FCA2474D71267AF2 /* FBSnapshotTestCase.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FBSnapshotTestCase.framework; path = FBSnapshotTestCase.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 1795ED3D682D8EDC5CEC1EA831BEECEA /* EXPBlockDefinedMatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPBlockDefinedMatcher.h; path = Expecta/EXPBlockDefinedMatcher.h; sourceTree = ""; }; - 19D7E0FEC362BEC211648D104511BD5C /* EXPMatchers+beTruthy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+beTruthy.m"; path = "Expecta/Matchers/EXPMatchers+beTruthy.m"; sourceTree = ""; }; - 1ABB2201E2C23ED09ECB1930B874AA59 /* NSValue+Expecta.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSValue+Expecta.h"; path = "Expecta/NSValue+Expecta.h"; sourceTree = ""; }; - 1E7BBDA96EB748B4566D121043C548C0 /* Specta-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Specta-prefix.pch"; sourceTree = ""; }; - 1ECA9AE864C24BC9A24DFF4E66632E1E /* Expecta_Snapshots.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Expecta_Snapshots.framework; path = "Expecta+Snapshots.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; - 222277628576E6CB279473688BA88F01 /* EXPMatchers+conformTo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+conformTo.m"; path = "Expecta/Matchers/EXPMatchers+conformTo.m"; sourceTree = ""; }; - 222B35F590250B97F30D1C37C402B693 /* EXPMatchers+beInTheRangeOf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+beInTheRangeOf.h"; path = "Expecta/Matchers/EXPMatchers+beInTheRangeOf.h"; sourceTree = ""; }; + 1967A27D64BDE056F3D97185336249B1 /* EXPMatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPMatcher.h; path = Expecta/EXPMatcher.h; sourceTree = ""; }; + 19AE2F085EF196486BAF6DEE803C4A87 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; }; + 1AAC48CBAA1D6BC48D3BA712BE36622F /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; + 1AD4A139443FC994428C843D5DBC288B /* Specta.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Specta.h; path = Specta/Specta/Specta.h; sourceTree = ""; }; + 1B3387393C5A85EC4F81AC582F3D5C73 /* Expecta-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Expecta-umbrella.h"; sourceTree = ""; }; + 1B9D64D0043E1466DA1ADE4B55C3C22D /* EXPMatchers+beFalsy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+beFalsy.m"; path = "Expecta/Matchers/EXPMatchers+beFalsy.m"; sourceTree = ""; }; + 1DA2B60F8F2FE94F101D30759CC4E483 /* ExpectaObject+FBSnapshotTest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ExpectaObject+FBSnapshotTest.h"; sourceTree = ""; }; + 1FF0C6FA10AE3FB76CEE273BBBC9116A /* SpectaTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpectaTypes.h; path = Specta/Specta/SpectaTypes.h; sourceTree = ""; }; + 2000E3B087108D485D53394E862354E2 /* NSDate+NSDate_Util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSDate+NSDate_Util.h"; path = "Pod/Classes/NSDate+NSDate_Util.h"; sourceTree = ""; }; 22A046797975665E637911043C154BE9 /* Pods-NSDate_Utils_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-NSDate_Utils_Example-resources.sh"; sourceTree = ""; }; - 22C6E607E674AB20554080B3E2A4B463 /* EXPMatchers+FBSnapshotTest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXPMatchers+FBSnapshotTest.m"; sourceTree = ""; }; - 237C1D40E94ECB9726EC1CC5E6691588 /* EXPMatcherHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPMatcherHelpers.h; path = Expecta/Matchers/EXPMatcherHelpers.h; sourceTree = ""; }; + 236748E01769680E0CFE5606EFD41D7D /* EXPMatchers+contain.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+contain.h"; path = "Expecta/Matchers/EXPMatchers+contain.h"; sourceTree = ""; }; + 24ED4D0A462E8A8E160E8C071A30DE65 /* EXPMatchers+beLessThan.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+beLessThan.h"; path = "Expecta/Matchers/EXPMatchers+beLessThan.h"; sourceTree = ""; }; 2516F32AED7B6B836E18919188343F93 /* Pods-NSDate_Utils_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-NSDate_Utils_Example.debug.xcconfig"; sourceTree = ""; }; - 26B782A5F5606BC64AF7B709A1D93B4E /* Expecta+Snapshots-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Expecta+Snapshots-umbrella.h"; sourceTree = ""; }; + 253BD53062D5A83379CA8FD7898078BC /* EXPMatchers+FBSnapshotTest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXPMatchers+FBSnapshotTest.m"; sourceTree = ""; }; + 256AE66FF1FF19ADCACBDA5B19EF2B04 /* EXPMatcherHelpers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPMatcherHelpers.m; path = Expecta/Matchers/EXPMatcherHelpers.m; sourceTree = ""; }; 26E841E6B88524214283D2AB00A78A9C /* Pods-NSDate_Utils_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-NSDate_Utils_Tests-acknowledgements.markdown"; sourceTree = ""; }; - 28980D1268BF5D8196D266D4FC2F50E4 /* EXPMatchers+beNil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+beNil.h"; path = "Expecta/Matchers/EXPMatchers+beNil.h"; sourceTree = ""; }; - 294F2CFB4F79D03BBF16DA0AC8CFB95B /* NSDate+NSDate_Util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSDate+NSDate_Util.h"; sourceTree = ""; }; - 2B0529E4A817BCF5BF22ADA77866D0B7 /* FBSnapshotTestController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSnapshotTestController.m; path = FBSnapshotTestCase/FBSnapshotTestController.m; sourceTree = ""; }; - 2D87B9B77C0C44AA9110F83844B1744F /* UIImage+Compare.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Compare.m"; path = "FBSnapshotTestCase/Categories/UIImage+Compare.m"; sourceTree = ""; }; - 2F1E859E32D523B17CD8D94AED21A1D4 /* NSObject+Expecta.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+Expecta.h"; path = "Expecta/NSObject+Expecta.h"; sourceTree = ""; }; - 306E137B97A38C22CEC1E6B27B33B78A /* EXPMatchers+endWith.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+endWith.h"; path = "Expecta/Matchers/EXPMatchers+endWith.h"; sourceTree = ""; }; - 33C35331B5791C85920198E31A6E6396 /* XCTestCase+Specta.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "XCTestCase+Specta.m"; path = "Specta/Specta/XCTestCase+Specta.m"; sourceTree = ""; }; - 3463D27B14FF06E942E3013737F5A139 /* Specta.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Specta.framework; path = Specta.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 370C8488ABDC015700FCF97F059BFD42 /* Expecta-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Expecta-umbrella.h"; sourceTree = ""; }; - 389932E25AB5180C7024CD173A4B6D4B /* FBSnapshotTestCase-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBSnapshotTestCase-umbrella.h"; sourceTree = ""; }; - 39686FFA13DAF68BB30B71BF78A974C3 /* UIImage+Diff.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Diff.h"; path = "FBSnapshotTestCase/Categories/UIImage+Diff.h"; sourceTree = ""; }; - 3A35BE0267849F84514C1480B43A470C /* SPTCompiledExample.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SPTCompiledExample.h; path = Specta/Specta/SPTCompiledExample.h; sourceTree = ""; }; - 3AD199F953A76C011AAE0FEC9C76880F /* FBSnapshotTestCase-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBSnapshotTestCase-dummy.m"; sourceTree = ""; }; - 3BC296A75FAF73BAC957A272364A7351 /* EXPMatchers+raiseWithReason.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+raiseWithReason.m"; path = "Expecta/Matchers/EXPMatchers+raiseWithReason.m"; sourceTree = ""; }; - 3C69DF8F7AD5A0ABA3453069F77F5742 /* Specta.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Specta.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 3DA8473E9C7CE1583F74DFBDAE8B0854 /* ExpectaObject+FBSnapshotTest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ExpectaObject+FBSnapshotTest.h"; sourceTree = ""; }; - 3E348D84229E9000F93233339AFC317B /* EXPDoubleTuple.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPDoubleTuple.m; path = Expecta/EXPDoubleTuple.m; sourceTree = ""; }; - 3E5CA004F4DF355EA4719088D8D69D6D /* FBSnapshotTestCase.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = FBSnapshotTestCase.modulemap; sourceTree = ""; }; - 3F862797664D0A6668AE953CB22045C0 /* Specta.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = Specta.modulemap; sourceTree = ""; }; - 419377E544AC43AB5272D6BABBDFC7F4 /* Expecta+Snapshots-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Expecta+Snapshots-prefix.pch"; sourceTree = ""; }; - 42785F13EF84B082ACE2FE7CAE842881 /* UIImage+Compare.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Compare.h"; path = "FBSnapshotTestCase/Categories/UIImage+Compare.h"; sourceTree = ""; }; - 428F5AA64CB12DFC1C335C47914064E0 /* Expecta-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Expecta-prefix.pch"; sourceTree = ""; }; - 431B770DD18C6C810E0ECD250D063471 /* EXPMatchers+postNotification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+postNotification.h"; path = "Expecta/Matchers/EXPMatchers+postNotification.h"; sourceTree = ""; }; + 2706D5FC4DC09EA3C6B139354478559D /* SPTSpec.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SPTSpec.m; path = Specta/Specta/SPTSpec.m; sourceTree = ""; }; + 2A26C2B319A86358ABE4AB60EB557CE1 /* DJLocalization.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = DJLocalization.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 2AEB1FF182255E4EF30E68AEFBB130E9 /* FBSnapshotTestCasePlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSnapshotTestCasePlatform.h; path = FBSnapshotTestCase/FBSnapshotTestCasePlatform.h; sourceTree = ""; }; + 2B7362DCE8C741388CC5FF4E865C48CF /* EXPMatchers+conformTo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+conformTo.m"; path = "Expecta/Matchers/EXPMatchers+conformTo.m"; sourceTree = ""; }; + 2B7CA1E144F183102ED9EB853A6EE9E5 /* DJLocalizationSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DJLocalizationSystem.h; path = DJLocalization/DJLocalizationSystem.h; sourceTree = ""; }; + 2C3B83C3F9D40942B3CB7B2DD4961167 /* EXPFloatTuple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPFloatTuple.h; path = Expecta/EXPFloatTuple.h; sourceTree = ""; }; + 2DCA07CB3515715DE3A2D1755F23C16C /* NSValue+Expecta.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSValue+Expecta.m"; path = "Expecta/NSValue+Expecta.m"; sourceTree = ""; }; + 2E8CFDE41AA38E441EEAA3591974CB5F /* DJLocalization-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DJLocalization-umbrella.h"; sourceTree = ""; }; + 31581AD83AFAB635A18A33D1E26D1093 /* EXPMatchers+beSubclassOf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+beSubclassOf.h"; path = "Expecta/Matchers/EXPMatchers+beSubclassOf.h"; sourceTree = ""; }; + 316C49B3F4CEBA7EE181DA4E0D89A85B /* SPTExcludeGlobalBeforeAfterEach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SPTExcludeGlobalBeforeAfterEach.h; path = Specta/Specta/SPTExcludeGlobalBeforeAfterEach.h; sourceTree = ""; }; + 31865A1248C153FDF2A68544D698B43A /* FBSnapshotTestCase-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBSnapshotTestCase-prefix.pch"; sourceTree = ""; }; + 31A0380C0A4041C96F5D8B5274E549C4 /* EXPMatchers+postNotification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+postNotification.h"; path = "Expecta/Matchers/EXPMatchers+postNotification.h"; sourceTree = ""; }; + 31B788FD0BC9757CEC617B0254C42983 /* EXPMatchers+haveCountOf.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+haveCountOf.m"; path = "Expecta/Matchers/EXPMatchers+haveCountOf.m"; sourceTree = ""; }; + 37E42CCA5D6B2B43529571D68F11C00A /* EXPMatchers+endWith.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+endWith.h"; path = "Expecta/Matchers/EXPMatchers+endWith.h"; sourceTree = ""; }; + 3A137A8B69796D104B719A9EEC4FF648 /* UIImage+Snapshot.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Snapshot.m"; path = "FBSnapshotTestCase/Categories/UIImage+Snapshot.m"; sourceTree = ""; }; + 3ABA1BD221F7E695FF8A5A622604B8AC /* EXPMatchers+respondTo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+respondTo.m"; path = "Expecta/Matchers/EXPMatchers+respondTo.m"; sourceTree = ""; }; + 4058FCFBD43A31D7F420AD37E34244CA /* UIStoryboard+DJLocalization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIStoryboard+DJLocalization.m"; path = "DJLocalization/UIStoryboard+DJLocalization.m"; sourceTree = ""; }; + 40756DCD53D113C323C5C9428E84C845 /* Expecta.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = Expecta.modulemap; sourceTree = ""; }; + 4075EC638B59E883F29B97EDB6AD6D82 /* EXPMatchers+beGreaterThan.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+beGreaterThan.h"; path = "Expecta/Matchers/EXPMatchers+beGreaterThan.h"; sourceTree = ""; }; 432568645D5EB989EF8F5BC8E66FBDED /* Pods-NSDate_Utils_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-NSDate_Utils_Example-acknowledgements.markdown"; sourceTree = ""; }; - 43D9D3D0C96D5284831B2C833DD79A36 /* EXPMatchers+beSubclassOf.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+beSubclassOf.m"; path = "Expecta/Matchers/EXPMatchers+beSubclassOf.m"; sourceTree = ""; }; - 4A13AEBD3A512EC975C2DD3AF8D8931D /* Expecta+Snapshots.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Expecta+Snapshots.xcconfig"; sourceTree = ""; }; - 4A6FA6514DAE7C7226C8C112DFE74E58 /* EXPMatchers+beFalsy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+beFalsy.m"; path = "Expecta/Matchers/EXPMatchers+beFalsy.m"; sourceTree = ""; }; - 4A7DDD4A7CE0636458E013320B3DCFC2 /* FBSnapshotTestCasePlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSnapshotTestCasePlatform.h; path = FBSnapshotTestCase/FBSnapshotTestCasePlatform.h; sourceTree = ""; }; - 4B01698ED41EF20D288CCA42A3A8AD0F /* NSDate_Utils.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = NSDate_Utils.framework; path = NSDate_Utils.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 51B34EFC4AB0895A9F930413755AC4EB /* EXPMatchers+beFalsy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+beFalsy.h"; path = "Expecta/Matchers/EXPMatchers+beFalsy.h"; sourceTree = ""; }; - 5267376A130B688AA8DC669933C16D9A /* EXPMatchers+haveCountOf.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+haveCountOf.m"; path = "Expecta/Matchers/EXPMatchers+haveCountOf.m"; sourceTree = ""; }; + 438FAB8FC475E362298734C43DC806EB /* EXPUnsupportedObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPUnsupportedObject.m; path = Expecta/EXPUnsupportedObject.m; sourceTree = ""; }; + 4420C2EF18082FE3509C4379BA0A65ED /* UIImage+Snapshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Snapshot.h"; path = "FBSnapshotTestCase/Categories/UIImage+Snapshot.h"; sourceTree = ""; }; + 44E0C39C38BA51B8C26A52B952C76DB0 /* SPTTestSuite.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SPTTestSuite.h; path = Specta/Specta/SPTTestSuite.h; sourceTree = ""; }; + 4544E5E89C90C6D97A443F1E0073D767 /* NSDate_Utils-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSDate_Utils-dummy.m"; sourceTree = ""; }; + 4581A641A5CEABCE2CC583CF0888738E /* FBSnapshotTestCasePlatform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSnapshotTestCasePlatform.m; path = FBSnapshotTestCase/FBSnapshotTestCasePlatform.m; sourceTree = ""; }; + 4726B0A5C942D8715EE5456C2B2F7DFE /* Expecta+Snapshots.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Expecta+Snapshots.xcconfig"; sourceTree = ""; }; + 47819686B6C08EF45B999B87C2F42A88 /* NSDate_Utils.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = NSDate_Utils.framework; path = NSDate_Utils.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 484D055801189D3B4A84BDD1AA3D6BFA /* EXPMatchers+raiseWithReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+raiseWithReason.h"; path = "Expecta/Matchers/EXPMatchers+raiseWithReason.h"; sourceTree = ""; }; + 49581B9391CFA744C45EAE9B8B90C426 /* EXPMatchers+raise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+raise.m"; path = "Expecta/Matchers/EXPMatchers+raise.m"; sourceTree = ""; }; + 4A153490D0C3CAA22B6546DD8FE64EEF /* FBSnapshotTestCase-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBSnapshotTestCase-dummy.m"; sourceTree = ""; }; + 4A44937A6A67D87E3AC6A61F9CE0D94A /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 4B1774FF20D553DAE24FBE8BD1BF5252 /* EXPMatchers+endWith.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+endWith.m"; path = "Expecta/Matchers/EXPMatchers+endWith.m"; sourceTree = ""; }; + 4C4DF2B23B4190D294C9D825482EDBD3 /* Expecta-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Expecta-prefix.pch"; sourceTree = ""; }; + 4C6D801798A0B90C913D603BC7D0A629 /* EXPMatchers+beLessThanOrEqualTo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+beLessThanOrEqualTo.h"; path = "Expecta/Matchers/EXPMatchers+beLessThanOrEqualTo.h"; sourceTree = ""; }; + 4CE452B9EC62443E588CB55DD4D7E12A /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/QuartzCore.framework; sourceTree = DEVELOPER_DIR; }; + 4E4245A458F69131072967E3568C61D1 /* EXPMatchers+haveCountOf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+haveCountOf.h"; path = "Expecta/Matchers/EXPMatchers+haveCountOf.h"; sourceTree = ""; }; + 4EC8997036DFE35789D1D1E98E609CAB /* EXPMatchers+beGreaterThan.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+beGreaterThan.m"; path = "Expecta/Matchers/EXPMatchers+beGreaterThan.m"; sourceTree = ""; }; + 4F8A2DE743C26793CF9D2CCB71D320B2 /* SwiftSupport.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftSupport.swift; path = FBSnapshotTestCase/SwiftSupport.swift; sourceTree = ""; }; + 4FC3C702BC49D76CB4CA7D5992C08FD4 /* FBSnapshotTestController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSnapshotTestController.m; path = FBSnapshotTestCase/FBSnapshotTestController.m; sourceTree = ""; }; + 504C0ACBF3358BAF1D065B828A617038 /* Expecta+Snapshots.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = "Expecta+Snapshots.modulemap"; sourceTree = ""; }; + 543FF0C7020E314B4BC16AE19597BC4D /* UIStoryboard+DJLocalization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIStoryboard+DJLocalization.h"; path = "DJLocalization/UIStoryboard+DJLocalization.h"; sourceTree = ""; }; 5496AFC679B0B3BD36B68AC0F60AEB2E /* Pods-NSDate_Utils_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-NSDate_Utils_Example-acknowledgements.plist"; sourceTree = ""; }; - 5514D13D44B78009D4AFEEDFA4E4FDBB /* SPTExcludeGlobalBeforeAfterEach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SPTExcludeGlobalBeforeAfterEach.h; path = Specta/Specta/SPTExcludeGlobalBeforeAfterEach.h; sourceTree = ""; }; - 57AF203F6B98E185A822F5F0BC6DB151 /* EXPFloatTuple.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPFloatTuple.m; path = Expecta/EXPFloatTuple.m; sourceTree = ""; }; - 581C5F5012EB4722B076757D7F522B51 /* Specta.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Specta.xcconfig; sourceTree = ""; }; - 58335D3E2909BF5D62C81864F19B78F1 /* EXPMatchers+beLessThan.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+beLessThan.m"; path = "Expecta/Matchers/EXPMatchers+beLessThan.m"; sourceTree = ""; }; - 5C8175700E46E467915FC3D84336F6A3 /* SPTSpec.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SPTSpec.m; path = Specta/Specta/SPTSpec.m; sourceTree = ""; }; - 5E61F0C06E6807EE9DB324F266909BED /* FBSnapshotTestController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSnapshotTestController.h; path = FBSnapshotTestCase/FBSnapshotTestController.h; sourceTree = ""; }; - 612DFA52478D8CE9C4866818C95C29E9 /* UIImage+Snapshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Snapshot.h"; path = "FBSnapshotTestCase/Categories/UIImage+Snapshot.h"; sourceTree = ""; }; + 58EE24444C8FE3C8D81E991B30A26EB9 /* EXPMatchers+raise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+raise.h"; path = "Expecta/Matchers/EXPMatchers+raise.h"; sourceTree = ""; }; + 5944CE89161A82FA084C04F5921DADE7 /* Expecta.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Expecta.framework; path = Expecta.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 5A6BBCE149C193E06EB144E40B257B34 /* EXPMatchers+match.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+match.m"; path = "Expecta/Matchers/EXPMatchers+match.m"; sourceTree = ""; }; + 5BA44B7F9BEA233230BDCC6ED2924E69 /* EXPMatchers+raiseWithReason.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+raiseWithReason.m"; path = "Expecta/Matchers/EXPMatchers+raiseWithReason.m"; sourceTree = ""; }; + 5E8E84D675C4A5C33ED694414CDB864A /* SPTSharedExampleGroups.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SPTSharedExampleGroups.h; path = Specta/Specta/SPTSharedExampleGroups.h; sourceTree = ""; }; + 5EDC26863BA9C354E602811D4906C16A /* NSDate+NSDate_Util.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSDate+NSDate_Util.m"; path = "Pod/Classes/NSDate+NSDate_Util.m"; sourceTree = ""; }; + 5F5009F328F7F224ED9BA2EA6193C28A /* NSDate_Utils-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSDate_Utils-prefix.pch"; sourceTree = ""; }; + 61C8FD253B5773CF185956431AD1C47F /* SPTSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SPTSpec.h; path = Specta/Specta/SPTSpec.h; sourceTree = ""; }; 636B50D3E5E435EE726727FC5F112BF1 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 64E62B947C08376C71E07F669D636FF8 /* EXPMatchers+beGreaterThanOrEqualTo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+beGreaterThanOrEqualTo.m"; path = "Expecta/Matchers/EXPMatchers+beGreaterThanOrEqualTo.m"; sourceTree = ""; }; - 65151D31448276A43462B5C47014D6AB /* FBSnapshotTestCase.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBSnapshotTestCase.xcconfig; sourceTree = ""; }; - 6732C58C04F8341AD50DE36AEE2EBF41 /* SpectaUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpectaUtility.h; path = Specta/Specta/SpectaUtility.h; sourceTree = ""; }; - 69BE855C76546F434D61EAC92F2988BD /* EXPMatchers+respondTo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+respondTo.m"; path = "Expecta/Matchers/EXPMatchers+respondTo.m"; sourceTree = ""; }; - 6A1F80FD765EB6D46AB2B2CDF719CFD7 /* EXPMatchers+match.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+match.m"; path = "Expecta/Matchers/EXPMatchers+match.m"; sourceTree = ""; }; - 6B959D8DDAA2ED93C94CF628C922CD14 /* EXPMatchers+FBSnapshotTest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXPMatchers+FBSnapshotTest.h"; sourceTree = ""; }; - 6B9A604A22517317ECC105AA77659CAA /* NSDate_Utils-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSDate_Utils-dummy.m"; sourceTree = ""; }; - 6D5CBFD25D4A2E10C5E330B622094D70 /* NSDate_Utils.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = NSDate_Utils.xcconfig; sourceTree = ""; }; - 6F171023695E78011482097406A42BC8 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 6F1777B40A6AD81F254190979323F8E4 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.0.sdk/System/Library/Frameworks/QuartzCore.framework; sourceTree = DEVELOPER_DIR; }; - 707C1B7180164DF6560719973AEC92C1 /* SPTExampleGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SPTExampleGroup.m; path = Specta/Specta/SPTExampleGroup.m; sourceTree = ""; }; - 7085F5CB16BF96F625D6465A4DA29F6F /* XCTestCase+Specta.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "XCTestCase+Specta.h"; path = "Specta/Specta/XCTestCase+Specta.h"; sourceTree = ""; }; - 70879F4C3E0CE4C4593A08B4BB1C1AF0 /* XCTest+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "XCTest+Private.h"; path = "Specta/Specta/XCTest+Private.h"; sourceTree = ""; }; - 71AF85B6558D634E3F383BA6AAEF3267 /* ExpectaSupport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ExpectaSupport.m; path = Expecta/ExpectaSupport.m; sourceTree = ""; }; + 64E14C573EE159963665AB4DDF11B156 /* DJLocalization.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = DJLocalization.framework; path = DJLocalization.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 65862397A692E296190C8BE414DC1216 /* DJLocalization.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = DJLocalization.modulemap; sourceTree = ""; }; + 65C3A66A3856E9AB7A5C3F4DC8F5BB50 /* EXPMatchers+beLessThan.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+beLessThan.m"; path = "Expecta/Matchers/EXPMatchers+beLessThan.m"; sourceTree = ""; }; + 687ABB05587519F7D7D5DBA1FE5B1F04 /* SPTExample.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SPTExample.m; path = Specta/Specta/SPTExample.m; sourceTree = ""; }; + 6C6465F99811C589B47BB862DC79109D /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 71A02784A0D646BBEC4DC650B13AE4C4 /* SPTCompiledExample.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SPTCompiledExample.h; path = Specta/Specta/SPTCompiledExample.h; sourceTree = ""; }; + 728B4EAD5E170333D831F46346AB295B /* EXPBlockDefinedMatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPBlockDefinedMatcher.m; path = Expecta/EXPBlockDefinedMatcher.m; sourceTree = ""; }; 729D1249D3CD662B8F28F4A43FFDA870 /* Pods-NSDate_Utils_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-NSDate_Utils_Tests-umbrella.h"; sourceTree = ""; }; - 757732CABCCD0D3A3DECF0188321177D /* Specta-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Specta-dummy.m"; sourceTree = ""; }; - 758C1F02B714A0821AE887BC00092EF6 /* EXPMatchers+beInstanceOf.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+beInstanceOf.m"; path = "Expecta/Matchers/EXPMatchers+beInstanceOf.m"; sourceTree = ""; }; - 75C3D8B18F8E2A5FB67C1A251F1D7AA4 /* EXPMatchers+beGreaterThan.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+beGreaterThan.m"; path = "Expecta/Matchers/EXPMatchers+beGreaterThan.m"; sourceTree = ""; }; - 760BA7B5F09D477F128F7CD8D3AB7FF2 /* EXPMatchers+beIdenticalTo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+beIdenticalTo.m"; path = "Expecta/Matchers/EXPMatchers+beIdenticalTo.m"; sourceTree = ""; }; - 7874ECE957DC7F80946CB43F9419C903 /* ExpectaObject+FBSnapshotTest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ExpectaObject+FBSnapshotTest.m"; sourceTree = ""; }; - 79A18C1EB2EC337A87C21C89732639D4 /* EXPMatchers+contain.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+contain.m"; path = "Expecta/Matchers/EXPMatchers+contain.m"; sourceTree = ""; }; - 7A7D54F2046B9323D0CB2748E382BAA3 /* EXPMatchers+postNotification.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+postNotification.m"; path = "Expecta/Matchers/EXPMatchers+postNotification.m"; sourceTree = ""; }; - 7BE7EA43918F8547CCF8A9EABF75B788 /* EXPMatchers+match.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+match.h"; path = "Expecta/Matchers/EXPMatchers+match.h"; sourceTree = ""; }; - 7D657B34A1C94FBF176F35C1081FD8A9 /* Specta-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Specta-umbrella.h"; sourceTree = ""; }; + 744010E8F6616F0F42DD2EFD2EE1746A /* ExpectaSupport.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ExpectaSupport.m; path = Expecta/ExpectaSupport.m; sourceTree = ""; }; + 76DB9CB5AB41CB7628D38A3875602876 /* Specta-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Specta-dummy.m"; sourceTree = ""; }; + 782B862CAB92C5E72C8DDBD21C3D5E30 /* EXPDoubleTuple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPDoubleTuple.h; path = Expecta/EXPDoubleTuple.h; sourceTree = ""; }; + 7AB02A7A1906F7AFE86D7838A7A63553 /* DJLocalizableString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DJLocalizableString.h; path = DJLocalization/DJLocalizableString.h; sourceTree = ""; }; + 7D5CE34D7C4B150E05C1FF9B130F846F /* SPTCallSite.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SPTCallSite.h; path = Specta/Specta/SPTCallSite.h; sourceTree = ""; }; + 7DF1C7995B0F8E1A82FA1413C1F67B13 /* EXPMatchers+beSupersetOf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+beSupersetOf.h"; path = "Expecta/Matchers/EXPMatchers+beSupersetOf.h"; sourceTree = ""; }; 7E116EBFFF4A910A0E5972F1CE2FA332 /* Pods-NSDate_Utils_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-NSDate_Utils_Example-frameworks.sh"; sourceTree = ""; }; - 7EF2072991CBA5987025178150BD49F6 /* EXPMatchers+endWith.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+endWith.m"; path = "Expecta/Matchers/EXPMatchers+endWith.m"; sourceTree = ""; }; 7F2174C918E439FD5E02CBB4C36F2EE2 /* Pods-NSDate_Utils_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-NSDate_Utils_Example.release.xcconfig"; sourceTree = ""; }; - 7F5D1A0E9BD4DDFBC87E078DEC833A16 /* UIImage+Diff.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Diff.m"; path = "FBSnapshotTestCase/Categories/UIImage+Diff.m"; sourceTree = ""; }; - 827940DAD186863374E719CC8D5FCE23 /* SPTCallSite.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SPTCallSite.m; path = Specta/Specta/SPTCallSite.m; sourceTree = ""; }; + 7F6396B3EA23B455CC1CFC8E92883DD2 /* EXPMatchers+postNotification.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+postNotification.m"; path = "Expecta/Matchers/EXPMatchers+postNotification.m"; sourceTree = ""; }; + 82981E3BCEFDF22C32D76A803F63E519 /* SPTExampleGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SPTExampleGroup.m; path = Specta/Specta/SPTExampleGroup.m; sourceTree = ""; }; + 84DE42204256F73549F695E81787F624 /* XCTestCase+Specta.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "XCTestCase+Specta.h"; path = "Specta/Specta/XCTestCase+Specta.h"; sourceTree = ""; }; 8596D737270AE6746228607AF7555174 /* Pods-NSDate_Utils_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-NSDate_Utils_Tests-resources.sh"; sourceTree = ""; }; - 895885A7B46A44F2D148C3BA7476BD81 /* NSDate_Utils-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSDate_Utils-umbrella.h"; sourceTree = ""; }; - 8B52C3887A118767CC0A773555B7C029 /* ExpectaSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExpectaSupport.h; path = Expecta/ExpectaSupport.h; sourceTree = ""; }; - 8CE42337022021AE45B4E067D494C32F /* EXPUnsupportedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPUnsupportedObject.h; path = Expecta/EXPUnsupportedObject.h; sourceTree = ""; }; - 8F63B0FF272D1EB750D82F3EADA2D2CA /* EXPExpect.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPExpect.h; path = Expecta/EXPExpect.h; sourceTree = ""; }; - 91453F85BD953E023DC76351FFEA1D94 /* EXPMatchers+beginWith.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+beginWith.m"; path = "Expecta/Matchers/EXPMatchers+beginWith.m"; sourceTree = ""; }; - 91EC2AD8B04A0D0F0EC345F2B7070A95 /* EXPDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPDefines.h; path = Expecta/EXPDefines.h; sourceTree = ""; }; - 921C86B70AE5EE1E10BD09948738EF96 /* Expecta+Snapshots.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = "Expecta+Snapshots.modulemap"; sourceTree = ""; }; + 88AB2BB4E1682EA0AC83820746E26F2A /* Expecta.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Expecta.xcconfig; sourceTree = ""; }; + 8963FBCC11E8AFF14103D22D533C74CA /* EXPMatchers+beginWith.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+beginWith.h"; path = "Expecta/Matchers/EXPMatchers+beginWith.h"; sourceTree = ""; }; + 8B28A7F41C730D5F7C2512AA6EE08788 /* FBSnapshotTestCase.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = FBSnapshotTestCase.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 8C8EF8FE1B80C900B64E42F55BEDB1F0 /* SPTCallSite.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SPTCallSite.m; path = Specta/Specta/SPTCallSite.m; sourceTree = ""; }; + 8E8EEBE81B2486D1604568FC1542B718 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 8F30D819B812A33D362678E4A4991F71 /* EXPMatchers+equal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+equal.h"; path = "Expecta/Matchers/EXPMatchers+equal.h"; sourceTree = ""; }; + 902FFD7EB73EE618036907E56C50D54F /* SPTTestSuite.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SPTTestSuite.m; path = Specta/Specta/SPTTestSuite.m; sourceTree = ""; }; + 9141BC3230EC75BAA27250BD1940F56C /* UIImage+Compare.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Compare.m"; path = "FBSnapshotTestCase/Categories/UIImage+Compare.m"; sourceTree = ""; }; 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 959C603B0B7FDCFBCEC10840D84C91CE /* EXPMatchers+beIdenticalTo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+beIdenticalTo.h"; path = "Expecta/Matchers/EXPMatchers+beIdenticalTo.h"; sourceTree = ""; }; 965FB1655D1D6695B5D1A7526FBFF31C /* Pods-NSDate_Utils_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = "Pods-NSDate_Utils_Tests.modulemap"; sourceTree = ""; }; - 99C6B238F553535C865A990AB217F102 /* EXPMatchers+beCloseTo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+beCloseTo.h"; path = "Expecta/Matchers/EXPMatchers+beCloseTo.h"; sourceTree = ""; }; - 9ABA02BD58E16D9841A495FD86DF6334 /* EXPMatchers+beSupersetOf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+beSupersetOf.h"; path = "Expecta/Matchers/EXPMatchers+beSupersetOf.h"; sourceTree = ""; }; - 9D21C236068062A9C4DDD612C5A3467B /* EXPUnsupportedObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPUnsupportedObject.m; path = Expecta/EXPUnsupportedObject.m; sourceTree = ""; }; - 9DC5EEA6B4746F1531DD69BC488E69F4 /* SPTTestSuite.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SPTTestSuite.m; path = Specta/Specta/SPTTestSuite.m; sourceTree = ""; }; - A193DEFA4D1CD24BE0FE7815E44EC372 /* Expecta.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Expecta.xcconfig; sourceTree = ""; }; - A29BA8C3E774C364BD56A4AAFFF1E6AA /* UIApplication+StrictKeyWindow.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIApplication+StrictKeyWindow.m"; path = "FBSnapshotTestCase/Categories/UIApplication+StrictKeyWindow.m"; sourceTree = ""; }; - A54AE821E3D5E7DF7DA3ED83AF9B4AF2 /* EXPMatchers+beGreaterThan.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+beGreaterThan.h"; path = "Expecta/Matchers/EXPMatchers+beGreaterThan.h"; sourceTree = ""; }; + 975FE7AC40399A8F4A2418E78AFEBF37 /* EXPBlockDefinedMatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPBlockDefinedMatcher.h; path = Expecta/EXPBlockDefinedMatcher.h; sourceTree = ""; }; + 98777E7162B329389C99C304BB8796EE /* EXPExpect.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPExpect.m; path = Expecta/EXPExpect.m; sourceTree = ""; }; + 9A6CBEE01E709C15BF863B8AAB7CCCC9 /* Expecta+Snapshots-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Expecta+Snapshots-dummy.m"; sourceTree = ""; }; + 9AD8060B45FAD0C3DE6E833CE2388E07 /* ExpectaObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ExpectaObject.m; path = Expecta/ExpectaObject.m; sourceTree = ""; }; + 9DFF92BB923AE74BC7AA1921A532BC68 /* FBSnapshotTestCase.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = FBSnapshotTestCase.modulemap; sourceTree = ""; }; + 9F85B7BC86AA18D4D80D48266B4BEFF3 /* FBSnapshotTestCase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSnapshotTestCase.h; path = FBSnapshotTestCase/FBSnapshotTestCase.h; sourceTree = ""; }; + A049570B9E13B811B977AFC6DC462F52 /* UIImage+Diff.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Diff.h"; path = "FBSnapshotTestCase/Categories/UIImage+Diff.h"; sourceTree = ""; }; + A4C8FC0BE523A503B73DC2D196AC6AD7 /* Expecta.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Expecta.h; path = Expecta/Expecta.h; sourceTree = ""; }; + A50CB307B9D7096D1EFA93F3153D46F8 /* EXPMatchers+beInstanceOf.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+beInstanceOf.m"; path = "Expecta/Matchers/EXPMatchers+beInstanceOf.m"; sourceTree = ""; }; A6B4973476C3FE069814FFC61CC07F4A /* Pods-NSDate_Utils_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-NSDate_Utils_Example-dummy.m"; sourceTree = ""; }; - A833BC98F95E74ABFF866C85B3FC9338 /* EXPMatchers+raiseWithReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+raiseWithReason.h"; path = "Expecta/Matchers/EXPMatchers+raiseWithReason.h"; sourceTree = ""; }; - A8DB1C700296DFB23B88DE8C25EAC168 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; - A9A4579B877C302F516E9CEE77766372 /* Expecta-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Expecta-dummy.m"; sourceTree = ""; }; - A9AD646C1FEAB8503FF6D57F404BC0E6 /* EXPMatchers+beTruthy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+beTruthy.h"; path = "Expecta/Matchers/EXPMatchers+beTruthy.h"; sourceTree = ""; }; - AB2DADCEEF4EB97FC102ACCDF8FB51E9 /* EXPMatchers+beLessThanOrEqualTo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+beLessThanOrEqualTo.h"; path = "Expecta/Matchers/EXPMatchers+beLessThanOrEqualTo.h"; sourceTree = ""; }; - AEFE305560483772516B366088F6E2B4 /* EXPMatchers+beNil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+beNil.m"; path = "Expecta/Matchers/EXPMatchers+beNil.m"; sourceTree = ""; }; - B34472CAE1E8EC26152CEFB1E82BE050 /* EXPExpect.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPExpect.m; path = Expecta/EXPExpect.m; sourceTree = ""; }; - B44593C7806808BFFCA8CE943799073B /* UIImage+Snapshot.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Snapshot.m"; path = "FBSnapshotTestCase/Categories/UIImage+Snapshot.m"; sourceTree = ""; }; - B4A617F1464A48980127A218AB18B898 /* EXPDoubleTuple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPDoubleTuple.h; path = Expecta/EXPDoubleTuple.h; sourceTree = ""; }; - B4E553ECAD689166E16E72CBB083D61A /* Expecta+Snapshots-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Expecta+Snapshots-dummy.m"; sourceTree = ""; }; + A81308A67D84E4D5C3683046B2FF907F /* NSDate_Utils.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = NSDate_Utils.modulemap; sourceTree = ""; }; + A92FA21CF250F41C90FE35F4C58B8EEE /* Expecta+Snapshots-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Expecta+Snapshots-prefix.pch"; sourceTree = ""; }; + AA2F4A79BE6DD21C27618B48FF4E9214 /* UIImage+Compare.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Compare.h"; path = "FBSnapshotTestCase/Categories/UIImage+Compare.h"; sourceTree = ""; }; + AA590806FD8DB4D629738D5E7A8ACCB1 /* SpectaUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpectaUtility.h; path = Specta/Specta/SpectaUtility.h; sourceTree = ""; }; + ABB0BC59D7E99775578653D2B1217EAC /* EXPMatchers+beKindOf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+beKindOf.h"; path = "Expecta/Matchers/EXPMatchers+beKindOf.h"; sourceTree = ""; }; + AEF911B333853F0FC2298BDEAC4017F9 /* EXPMatchers+match.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+match.h"; path = "Expecta/Matchers/EXPMatchers+match.h"; sourceTree = ""; }; + AF5F8F1D21FF99944EF5D0951DD39A6A /* EXPMatchers+conformTo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+conformTo.h"; path = "Expecta/Matchers/EXPMatchers+conformTo.h"; sourceTree = ""; }; + B0955C0FDFFEF5760C7578511048C9DA /* FBSnapshotTestCase.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FBSnapshotTestCase.framework; path = FBSnapshotTestCase.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + B0D212FD70B51FC967FF60308DD79C9F /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; }; + B193B28455AAB88A39B598FCD0DF200E /* NSValue+Expecta.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSValue+Expecta.h"; path = "Expecta/NSValue+Expecta.h"; sourceTree = ""; }; + B2990E0501A450545F356E05211B8B52 /* EXPMatchers+beginWith.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+beginWith.m"; path = "Expecta/Matchers/EXPMatchers+beginWith.m"; sourceTree = ""; }; + B4265BAF4DE1AC008BA3D7808D12521D /* SpectaDSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpectaDSL.h; path = Specta/Specta/SpectaDSL.h; sourceTree = ""; }; + B46D04DC87188B48EE1B2F63D626F796 /* EXPMatchers+beNil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+beNil.m"; path = "Expecta/Matchers/EXPMatchers+beNil.m"; sourceTree = ""; }; B5AC2778369B405D723A636FD77A72FC /* Pods-NSDate_Utils_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = "Pods-NSDate_Utils_Example.modulemap"; sourceTree = ""; }; - B618D49996FCD7F7FD5C94C024840087 /* EXPMatchers+equal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+equal.h"; path = "Expecta/Matchers/EXPMatchers+equal.h"; sourceTree = ""; }; - B647A866CAF55406F516ECE6F8AE7F8B /* EXPMatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPMatcher.h; path = Expecta/EXPMatcher.h; sourceTree = ""; }; - BB4DC57B05E96C2EB152A59EFCDB6F12 /* EXPMatchers+beGreaterThanOrEqualTo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+beGreaterThanOrEqualTo.h"; path = "Expecta/Matchers/EXPMatchers+beGreaterThanOrEqualTo.h"; sourceTree = ""; }; - BEC4D7D2259B4B710DED71BD7949BACA /* SPTTestSuite.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SPTTestSuite.h; path = Specta/Specta/SPTTestSuite.h; sourceTree = ""; }; - BF701C1C8F03B74819BFFD19C9DEA426 /* SPTSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SPTSpec.h; path = Specta/Specta/SPTSpec.h; sourceTree = ""; }; - C04E3E80E2CD18DEAE104F67CE80B85A /* EXPMatchers+beKindOf.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+beKindOf.m"; path = "Expecta/Matchers/EXPMatchers+beKindOf.m"; sourceTree = ""; }; - C073D055C5E9A286CA57C81549647C98 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - C09805DD701F05B0FA3348EDA3BDC7CB /* EXPBlockDefinedMatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPBlockDefinedMatcher.m; path = Expecta/EXPBlockDefinedMatcher.m; sourceTree = ""; }; - C22221B3B6D1F46AB81218794BF7243C /* EXPMatcherHelpers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPMatcherHelpers.m; path = Expecta/Matchers/EXPMatcherHelpers.m; sourceTree = ""; }; - C22A60459B7AF517FAFC1750AAABDCEB /* EXPMatchers+haveCountOf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+haveCountOf.h"; path = "Expecta/Matchers/EXPMatchers+haveCountOf.h"; sourceTree = ""; }; - C4016D8E6902B23AF2CA1BB3EBE78467 /* ExpectaObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ExpectaObject.m; path = Expecta/ExpectaObject.m; sourceTree = ""; }; - C4318C653F9355DDB7F7553A52F8890D /* EXPMatchers+beSubclassOf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+beSubclassOf.h"; path = "Expecta/Matchers/EXPMatchers+beSubclassOf.h"; sourceTree = ""; }; - C468A58BBD0142C1B15D5D1E99CD14D2 /* SPTCompiledExample.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SPTCompiledExample.m; path = Specta/Specta/SPTCompiledExample.m; sourceTree = ""; }; - C685971A6CB0538D27790478B960CFD8 /* FBSnapshotTestCasePlatform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSnapshotTestCasePlatform.m; path = FBSnapshotTestCase/FBSnapshotTestCasePlatform.m; sourceTree = ""; }; - C6C7CD39279BCFD392135DCF45F61F03 /* EXPMatchers+beSupersetOf.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+beSupersetOf.m"; path = "Expecta/Matchers/EXPMatchers+beSupersetOf.m"; sourceTree = ""; }; - C93D23F4DB7569CC800036F3F8FAFE2E /* FBSnapshotTestCase.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = FBSnapshotTestCase.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - CD486E43B7465271EE4EBCB98E5DAF8D /* EXPFloatTuple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPFloatTuple.h; path = Expecta/EXPFloatTuple.h; sourceTree = ""; }; - CD7582733015B7D005A247EF5856A0D6 /* EXPMatchers+beLessThanOrEqualTo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+beLessThanOrEqualTo.m"; path = "Expecta/Matchers/EXPMatchers+beLessThanOrEqualTo.m"; sourceTree = ""; }; - D148E142A756A0CD8BA055B657862814 /* Expecta.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Expecta.h; path = Expecta/Expecta.h; sourceTree = ""; }; - D15181A2A90AA8A9F24D97664729A1B2 /* SwiftSupport.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftSupport.swift; path = FBSnapshotTestCase/SwiftSupport.swift; sourceTree = ""; }; - D182CF13D4DB728DAAD9786E7E8143B2 /* EXPMatchers+beginWith.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+beginWith.h"; path = "Expecta/Matchers/EXPMatchers+beginWith.h"; sourceTree = ""; }; - D1F38C539F4C1079FD2CD2D05B64BCE4 /* Expecta.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Expecta.framework; path = Expecta.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - D23BC3A3A95CE0E0D9D4237760C716E8 /* EXPMatchers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPMatchers.h; path = Expecta/Matchers/EXPMatchers.h; sourceTree = ""; }; - D24C93A44A823E785EE91D78394D63B9 /* ExpectaObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExpectaObject.h; path = Expecta/ExpectaObject.h; sourceTree = ""; }; - D2F336ECC66909E2FC05C8E3D376CF12 /* EXPMatchers+raise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+raise.h"; path = "Expecta/Matchers/EXPMatchers+raise.h"; sourceTree = ""; }; - D417CB778FB662CFE79DB7FD9E6554A8 /* FBSnapshotTestCase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSnapshotTestCase.h; path = FBSnapshotTestCase/FBSnapshotTestCase.h; sourceTree = ""; }; - D41D99FA9E9AAB2466DF45604137EF43 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - D4EF39D56E8A55D649F9810E362FA318 /* EXPMatchers+beCloseTo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+beCloseTo.m"; path = "Expecta/Matchers/EXPMatchers+beCloseTo.m"; sourceTree = ""; }; + B6F519EB956BCA3CF7D1F537330F652C /* Specta.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Specta.framework; path = Specta.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + B8D5BC2CD67D6058C07719F7A66B5BD7 /* EXPMatchers+respondTo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+respondTo.h"; path = "Expecta/Matchers/EXPMatchers+respondTo.h"; sourceTree = ""; }; + B8D8CAB30539AAAC27CE1C1DFE1B7898 /* ExpectaObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExpectaObject.h; path = Expecta/ExpectaObject.h; sourceTree = ""; }; + B96BB8616784F07F68B5F97B4DF691EE /* SPTExampleGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SPTExampleGroup.h; path = Specta/Specta/SPTExampleGroup.h; sourceTree = ""; }; + BAECF85159B1D09C446FE5518F3C837A /* FBSnapshotTestCase.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBSnapshotTestCase.xcconfig; sourceTree = ""; }; + BB6CF95E72C9E661A71CCDB8877B9A84 /* ExpectaObject+FBSnapshotTest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ExpectaObject+FBSnapshotTest.m"; sourceTree = ""; }; + BC3728C16F7414B9FB2C5255696D60AD /* EXPMatchers+beFalsy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+beFalsy.h"; path = "Expecta/Matchers/EXPMatchers+beFalsy.h"; sourceTree = ""; }; + BD06014DD99D9619F6B1270D9935AE6D /* EXPUnsupportedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPUnsupportedObject.h; path = Expecta/EXPUnsupportedObject.h; sourceTree = ""; }; + BE07A0F6F6FBAACC2A7B1396BD50F799 /* EXPMatchers+beCloseTo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+beCloseTo.h"; path = "Expecta/Matchers/EXPMatchers+beCloseTo.h"; sourceTree = ""; }; + C13D921E7472278E485614564B5883EE /* EXPExpect.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPExpect.h; path = Expecta/EXPExpect.h; sourceTree = ""; }; + C267A718251527D0F8220AF781C4205C /* EXPMatchers+beInstanceOf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+beInstanceOf.h"; path = "Expecta/Matchers/EXPMatchers+beInstanceOf.h"; sourceTree = ""; }; + C3718A8B8487C9B0E5B408AC58790145 /* EXPDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPDefines.h; path = Expecta/EXPDefines.h; sourceTree = ""; }; + C3AB14F77137804624D0943A02FA1E12 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + C3BD366719D715C35E6281F81A74EB3A /* Expecta.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Expecta.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + C4602C3A6F1EEEA8014F646123B93D62 /* EXPMatchers+equal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+equal.m"; path = "Expecta/Matchers/EXPMatchers+equal.m"; sourceTree = ""; }; + C6557A21FBD2AB91054D8BFE66258134 /* NSDate_Utils-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSDate_Utils-umbrella.h"; sourceTree = ""; }; + C894D5C3B3BD9AF0219E5ACAF350BEA7 /* FBSnapshotTestCase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSnapshotTestCase.m; path = FBSnapshotTestCase/FBSnapshotTestCase.m; sourceTree = ""; }; + C972B5CA1AA5A94CDC987E7C6AB70507 /* DJLocalization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DJLocalization.h; path = DJLocalization/DJLocalization.h; sourceTree = ""; }; + CB8547189C539D2C46AEDEE26882F5F6 /* EXPMatchers+beIdenticalTo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+beIdenticalTo.m"; path = "Expecta/Matchers/EXPMatchers+beIdenticalTo.m"; sourceTree = ""; }; + CB8E1721BDC36F96B902B013614BDA8E /* EXPMatcherHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPMatcherHelpers.h; path = Expecta/Matchers/EXPMatcherHelpers.h; sourceTree = ""; }; + CB9D5FAED59C7821A4B9484A955168F9 /* ExpectaSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ExpectaSupport.h; path = Expecta/ExpectaSupport.h; sourceTree = ""; }; + CC1437E4742170F3F681FA4F2B5F7CCD /* FBSnapshotTestController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSnapshotTestController.h; path = FBSnapshotTestCase/FBSnapshotTestController.h; sourceTree = ""; }; + CC36CF9278A80E8D8C7E1032FB158DF4 /* UIImage+Diff.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Diff.m"; path = "FBSnapshotTestCase/Categories/UIImage+Diff.m"; sourceTree = ""; }; + CE2814C356DFE997CE1B06E847237640 /* FBSnapshotTestCase-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBSnapshotTestCase-umbrella.h"; sourceTree = ""; }; + CF978D18A7D2C7A3DA34B9DD3E81267A /* EXPFloatTuple.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPFloatTuple.m; path = Expecta/EXPFloatTuple.m; sourceTree = ""; }; + D183F238E84B5982C553CD6DB03D31F3 /* EXPMatchers+beSubclassOf.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+beSubclassOf.m"; path = "Expecta/Matchers/EXPMatchers+beSubclassOf.m"; sourceTree = ""; }; + D3B0BAE8C47A348AD8B4C9FF3AEA6838 /* EXPMatchers+beGreaterThanOrEqualTo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+beGreaterThanOrEqualTo.m"; path = "Expecta/Matchers/EXPMatchers+beGreaterThanOrEqualTo.m"; sourceTree = ""; }; + D54BA304D115C3ADB50CC734BFD1D787 /* NSDate_Utils.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = NSDate_Utils.xcconfig; sourceTree = ""; }; + D5D8008BB3FD26F3B1AE8E2707FC3B13 /* EXPMatchers+beSupersetOf.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+beSupersetOf.m"; path = "Expecta/Matchers/EXPMatchers+beSupersetOf.m"; sourceTree = ""; }; + D67491E19D55251F9D647C0CF2F0332F /* EXPDoubleTuple.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPDoubleTuple.m; path = Expecta/EXPDoubleTuple.m; sourceTree = ""; }; + D73A1078B1410ADAAF9176486AF0098B /* DJLocalization-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DJLocalization-dummy.m"; sourceTree = ""; }; + D7A0092E9DFF8FBA9B9619E1C94D11A4 /* SpectaDSL.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SpectaDSL.m; path = Specta/Specta/SpectaDSL.m; sourceTree = ""; }; + D860306098188AB361A4850BFC3C0FCF /* EXPMatchers+beCloseTo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+beCloseTo.m"; path = "Expecta/Matchers/EXPMatchers+beCloseTo.m"; sourceTree = ""; }; + D9261CD15AB8874F79A6009E67481836 /* Specta-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Specta-umbrella.h"; sourceTree = ""; }; + D9C2FA922264888CB0FCD17395F478EC /* DJLocalization-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DJLocalization-prefix.pch"; sourceTree = ""; }; + DA646588644582F7EE9614FEB9FAE2BF /* XCTest+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "XCTest+Private.h"; path = "Specta/Specta/XCTest+Private.h"; sourceTree = ""; }; DAC692B1EA01A75EBFF00D8E6EA157F4 /* Pods-NSDate_Utils_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-NSDate_Utils_Tests.release.xcconfig"; sourceTree = ""; }; - DACE406B2E53BE18445F22E26993E5B9 /* SpectaDSL.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SpectaDSL.m; path = Specta/Specta/SpectaDSL.m; sourceTree = ""; }; - DAD6E6C6CD2E4105AE9595FA4CC6137C /* FBSnapshotTestCase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSnapshotTestCase.m; path = FBSnapshotTestCase/FBSnapshotTestCase.m; sourceTree = ""; }; - DD84E61E0677EE091554A196E4EFCC8B /* FBSnapshotTestCase-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBSnapshotTestCase-prefix.pch"; sourceTree = ""; }; - DF3AB94D4C9998999433E32EB7DA835D /* Pods_NSDate_Utils_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_NSDate_Utils_Tests.framework; path = "Pods-NSDate_Utils_Tests.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; - DF4BD2050ABE1205D1B1A164803A18DA /* EXPMatchers+beKindOf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+beKindOf.h"; path = "Expecta/Matchers/EXPMatchers+beKindOf.h"; sourceTree = ""; }; + DD3CCF88DAB2DA65A8B231D549FD8CE4 /* Pods_NSDate_Utils_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_NSDate_Utils_Example.framework; path = "Pods-NSDate_Utils_Example.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; + DEBC113B61BE9F3CF3D7CDA5463A3F99 /* SPTSharedExampleGroups.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SPTSharedExampleGroups.m; path = Specta/Specta/SPTSharedExampleGroups.m; sourceTree = ""; }; E028C38BB201BD663E93FCF54EA00BDE /* Pods-NSDate_Utils_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-NSDate_Utils_Tests-acknowledgements.plist"; sourceTree = ""; }; - E25B1FF88D05AA09706C2609C79A845C /* NSDate+NSDate_Util.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSDate+NSDate_Util.m"; sourceTree = ""; }; - E42AB63F84DC20AD246EB8FFA3EFEF2C /* SPTSharedExampleGroups.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SPTSharedExampleGroups.m; path = Specta/Specta/SPTSharedExampleGroups.m; sourceTree = ""; }; - E47922AA0F6D472C6BD29B15DF2DE148 /* Expecta.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Expecta.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + E19EA097A8A92D57BC634A9B40F3FB8F /* UIApplication+StrictKeyWindow.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIApplication+StrictKeyWindow.m"; path = "FBSnapshotTestCase/Categories/UIApplication+StrictKeyWindow.m"; sourceTree = ""; }; E5075B21DA37343859168F7E32988F50 /* Pods-NSDate_Utils_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-NSDate_Utils_Tests-frameworks.sh"; sourceTree = ""; }; - E5970E5D763F65673B9F5F4C5D0A9D0F /* SPTExample.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SPTExample.h; path = Specta/Specta/SPTExample.h; sourceTree = ""; }; - E5B05516F560C08699BF135F729DD5E4 /* SPTExampleGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SPTExampleGroup.h; path = Specta/Specta/SPTExampleGroup.h; sourceTree = ""; }; - F0550288A3E4DA5B207A666BE8E62168 /* SPTCallSite.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SPTCallSite.h; path = Specta/Specta/SPTCallSite.h; sourceTree = ""; }; - F246B37B7EC4CBE5B419E2AA9987A3C7 /* NSDate_Utils-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSDate_Utils-prefix.pch"; sourceTree = ""; }; - F2D3A79E58CE53867199D68A7690BE0C /* EXPMatchers+beLessThan.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+beLessThan.h"; path = "Expecta/Matchers/EXPMatchers+beLessThan.h"; sourceTree = ""; }; + E5BF73836E2C1AF376089D72F267FEA6 /* NSObject+Expecta.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+Expecta.h"; path = "Expecta/NSObject+Expecta.h"; sourceTree = ""; }; + E6BBF466A77A4141B80983728542358E /* EXPMatchers+beIdenticalTo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+beIdenticalTo.h"; path = "Expecta/Matchers/EXPMatchers+beIdenticalTo.h"; sourceTree = ""; }; + E8563536589B7E4FFFCDDD4ED34C402E /* XCTestCase+Specta.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "XCTestCase+Specta.m"; path = "Specta/Specta/XCTestCase+Specta.m"; sourceTree = ""; }; + EA2574F700810A472A1E85DDD2D62949 /* EXPMatchers+beGreaterThanOrEqualTo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+beGreaterThanOrEqualTo.h"; path = "Expecta/Matchers/EXPMatchers+beGreaterThanOrEqualTo.h"; sourceTree = ""; }; + EA3E48851125D08986C9BFDCF7811957 /* EXPMatchers+FBSnapshotTest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXPMatchers+FBSnapshotTest.h"; sourceTree = ""; }; + EB1155BBBF8A1CE1E1187E00C523E6BD /* DJLocalizableString.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DJLocalizableString.m; path = DJLocalization/DJLocalizableString.m; sourceTree = ""; }; + ECB49D9F14B38696FAD9FE4FF60EB021 /* Expecta-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Expecta-dummy.m"; sourceTree = ""; }; + ED6C0717CFA863667D50D04A1282B2DE /* EXPMatchers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPMatchers.h; path = Expecta/Matchers/EXPMatchers.h; sourceTree = ""; }; + EE4FC6E1449C85B5017C343BE04EA18B /* Specta.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = Specta.modulemap; sourceTree = ""; }; + F02B60B0294A0CBFE4635D354347F8BC /* EXPMatchers+beLessThanOrEqualTo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+beLessThanOrEqualTo.m"; path = "Expecta/Matchers/EXPMatchers+beLessThanOrEqualTo.m"; sourceTree = ""; }; + F04AE0F0C46B205D79272B4854FAB5B4 /* Expecta_Snapshots.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Expecta_Snapshots.framework; path = "Expecta+Snapshots.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; + F0CED164053A8E3C84C6C7B54977739E /* SpectaUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SpectaUtility.m; path = Specta/Specta/SpectaUtility.m; sourceTree = ""; }; + F1E169F4ECDEED0F64B401C26019F328 /* EXPMatchers+beNil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+beNil.h"; path = "Expecta/Matchers/EXPMatchers+beNil.h"; sourceTree = ""; }; + F52EB69D0C3A7CB9C29DD10EC19F0C8E /* EXPMatchers+beInTheRangeOf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+beInTheRangeOf.h"; path = "Expecta/Matchers/EXPMatchers+beInTheRangeOf.h"; sourceTree = ""; }; F554AB2EC862570B49A7A91593FBCA59 /* Pods-NSDate_Utils_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-NSDate_Utils_Example-umbrella.h"; sourceTree = ""; }; - F6636C0229E54793FBCF41941077A50A /* EXPMatchers+beInstanceOf.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+beInstanceOf.h"; path = "Expecta/Matchers/EXPMatchers+beInstanceOf.h"; sourceTree = ""; }; - F6ACA95F6EDBB1752AADF70C323E1E5F /* EXPMatchers+contain.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+contain.h"; path = "Expecta/Matchers/EXPMatchers+contain.h"; sourceTree = ""; }; - F787B4263348644844F9D18CCBA4A124 /* UIApplication+StrictKeyWindow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIApplication+StrictKeyWindow.h"; path = "FBSnapshotTestCase/Categories/UIApplication+StrictKeyWindow.h"; sourceTree = ""; }; - FB362E8DBE566CD58ABD4124535F2081 /* Specta.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Specta.h; path = Specta/Specta/Specta.h; sourceTree = ""; }; - FB93C123AC6F580DF978D60A8191F679 /* SpectaDSL.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SpectaDSL.h; path = Specta/Specta/SpectaDSL.h; sourceTree = ""; }; - FBA78AD493C15517AB45ED930E51A1E0 /* EXPMatchers+raise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+raise.m"; path = "Expecta/Matchers/EXPMatchers+raise.m"; sourceTree = ""; }; + F622840543E280DCB3CC14D7E725281C /* Specta-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Specta-prefix.pch"; sourceTree = ""; }; + F9AC9D7C6680BD955CE8ABF074F53DEF /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + FB373F14F0DFD13542A7E2ED7BA98449 /* EXPMatchers+beTruthy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "EXPMatchers+beTruthy.h"; path = "Expecta/Matchers/EXPMatchers+beTruthy.h"; sourceTree = ""; }; + FBB3A6FB8D54EAF015CFFBFA0E54AB7B /* SPTExample.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SPTExample.h; path = Specta/Specta/SPTExample.h; sourceTree = ""; }; + FBCDE4515D25E5D636494AAC219C0EA4 /* SPTGlobalBeforeAfterEach.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SPTGlobalBeforeAfterEach.h; path = Specta/Specta/SPTGlobalBeforeAfterEach.h; sourceTree = ""; }; FC2BE82DED7FDB75BEA1F5DBC0D0B91F /* Pods-NSDate_Utils_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-NSDate_Utils_Tests-dummy.m"; sourceTree = ""; }; - FDB667FDEC11589B26C54AE25F550F2C /* EXPMatchers+beInTheRangeOf.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "EXPMatchers+beInTheRangeOf.m"; path = "Expecta/Matchers/EXPMatchers+beInTheRangeOf.m"; sourceTree = ""; }; - FDCE6B50DE0D7A5065D903E6D5216FFA /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - FDE880572CC4AF9A3FB007D3FBAB3FC9 /* SpectaUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SpectaUtility.m; path = Specta/Specta/SpectaUtility.m; sourceTree = ""; }; - FFCA6E23CE38D336A38AFCF29986180A /* Expecta.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = Expecta.modulemap; sourceTree = ""; }; + FC2C1F74F518EB9C29DE33BC68CA53A6 /* Specta.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Specta.xcconfig; sourceTree = ""; }; + FD2A937A2F110DD5E5178BF7ABADD3BB /* Specta.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Specta.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + FF2482B26EC455C47EE2DE0B79B1AAAF /* UIApplication+StrictKeyWindow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIApplication+StrictKeyWindow.h"; path = "FBSnapshotTestCase/Categories/UIApplication+StrictKeyWindow.h"; sourceTree = ""; }; + FF88F2AC48993E37847D4122C697A0B3 /* SPTCompiledExample.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SPTCompiledExample.m; path = Specta/Specta/SPTCompiledExample.m; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -416,18 +466,10 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 82E5A07FA4CEECF136C15FBF6E39250F /* Foundation.framework in Frameworks */, - 1492F065F5EFD049EE05C202CDDF78F9 /* QuartzCore.framework in Frameworks */, - 4C90F652C7F43AB6C049AF2A77119222 /* UIKit.framework in Frameworks */, - 6FA693F86B8C583ED94F45EC0BDECBD2 /* XCTest.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 275C591E9B4391102AD2311609F973B6 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - F550E209CD87F8B799ED7F30DA4C281D /* Foundation.framework in Frameworks */, + 19B6B108A674BD810C36A118644862C4 /* Foundation.framework in Frameworks */, + E8CCC7289747C081F6D6A10DA4239FC9 /* QuartzCore.framework in Frameworks */, + A80F4BE1409F96416E2EB28A8E230556 /* UIKit.framework in Frameworks */, + C2AC23E0FE8257233E90748E4DD9651F /* XCTest.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -435,16 +477,42 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - C8291FF9EB9DFF1D78EDDF416F1A5325 /* Foundation.framework in Frameworks */, - 5F175CA5FAF2F1209EBBE9240C06063C /* XCTest.framework in Frameworks */, + 85BB92CC3FF4FB4A54F20BCBF1666A55 /* Foundation.framework in Frameworks */, + BD157AEB9B3A78A56264FA33306071A1 /* XCTest.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 7971F0E5BB24B850A9F4C91873EAE1AD /* Frameworks */ = { + 2BAF96285454775929F4A6BD82CEFD41 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 61680D5413DD7EE723783B324EE3BEBA /* Foundation.framework in Frameworks */, + 7910EB9A4E7153395FC3E94D0328C9A4 /* Foundation.framework in Frameworks */, + A4A2C087AA4AA349960073F575E15A40 /* UIKit.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 38C4F6E806BC93A04FF58A8158B8814A /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 1A2DC4B200DC897F4435FCB10FADCA37 /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 92C16A73E18EBDB267A1DFAB74EEBF2D /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + B9CB0F21C82E0B324F690955DEA7CC9C /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + AF7E415D9D66C6AA0BFDE0956E95DCD3 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FC8AB29D9DACB0D79A46DCA17DD4FB95 /* DJLocalization.framework in Frameworks */, + 0A11766BD3EF551C7915398A9738375E /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -452,16 +520,8 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 3D1C615E741E95E2199E36C47AFE618A /* Foundation.framework in Frameworks */, - 0B11B174B2ADC6056A89A3EBE624151D /* XCTest.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - E21DC993C97461EBC725CD3244AAA559 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - EE1E8A4B8C4473D82433155B14C28782 /* Foundation.framework in Frameworks */, + 09B18A0AFD81C25D53BC3FC246DA2349 /* Foundation.framework in Frameworks */, + 11948E16BF3548C7BABF77C532966B84 /* XCTest.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -471,82 +531,100 @@ files = ( CA12FB380E35F806A03D6094BC278F1B /* Expecta.framework in Frameworks */, 9CFF07440060332E5BCB557D40336E55 /* FBSnapshotTestCase.framework in Frameworks */, - 9242EFA2F87E7A82ED4009423DA1A942 /* Foundation.framework in Frameworks */, + 21B3DAADDCABBFDD03478CCBF5DE49D4 /* Foundation.framework in Frameworks */, B89A19FA40C5F590F0AAD91908FD9DDB /* Specta.framework in Frameworks */, - EA5294C319F94E8A4032A59807673349 /* XCTest.framework in Frameworks */, + 4ECDE8F58F60C36F96F38533B715BD92 /* XCTest.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ - 021E0CA43530E223061EE9176D0D28FE /* NSDate_Utils */ = { + 059074DFB239E01FDFB83535DCC11E78 /* SwiftSupport */ = { isa = PBXGroup; children = ( - 3A4F952369D10E166DE30E8ECC4EEBE5 /* Pod */, - FC3C07F729069F7E038E69208B5EC063 /* Support Files */, + 4F8A2DE743C26793CF9D2CCB71D320B2 /* SwiftSupport.swift */, ); - name = NSDate_Utils; - path = ../..; + name = SwiftSupport; sourceTree = ""; }; - 08D965B0F9B0084EEFBE7A581FFDD562 /* Pods */ = { + 1F8DB9E5040F241DD3A62A49E59155DB /* DJLocalization */ = { isa = PBXGroup; children = ( - 79484769BF08DC1D5243733A16B26307 /* Expecta */, - D444F89BC8BA24BC0761D553BC8F0231 /* Expecta+Snapshots */, - 778606D5FF2F934B11EBF31C35276646 /* FBSnapshotTestCase */, - C29C93E7F175EC9CDE6E55BE676C8B75 /* Specta */, + BC76886A7FA510A4D8F483500D0C962C /* Core */, + BE4A640F3C9A98C265827A44FDB03479 /* Support Files */, ); - name = Pods; + name = DJLocalization; + path = DJLocalization; sourceTree = ""; }; - 1922ED2492F2CD5F07BAE0E198724705 /* Frameworks */ = { + 3B7C7BC5B3532DBAAD7A215B31B6DD97 /* Support Files */ = { isa = PBXGroup; children = ( - E47922AA0F6D472C6BD29B15DF2DE148 /* Expecta.framework */, - C93D23F4DB7569CC800036F3F8FAFE2E /* FBSnapshotTestCase.framework */, - 3C69DF8F7AD5A0ABA3453069F77F5742 /* Specta.framework */, - E17C555CEDD943D4BAB4FB0A4B485534 /* iOS */, - ); - name = Frameworks; - sourceTree = ""; - }; - 25569E96824C4F1200539B5948CEF428 /* Support Files */ = { - isa = PBXGroup; - children = ( - 3E5CA004F4DF355EA4719088D8D69D6D /* FBSnapshotTestCase.modulemap */, - 65151D31448276A43462B5C47014D6AB /* FBSnapshotTestCase.xcconfig */, - 3AD199F953A76C011AAE0FEC9C76880F /* FBSnapshotTestCase-dummy.m */, - DD84E61E0677EE091554A196E4EFCC8B /* FBSnapshotTestCase-prefix.pch */, - 389932E25AB5180C7024CD173A4B6D4B /* FBSnapshotTestCase-umbrella.h */, - C073D055C5E9A286CA57C81549647C98 /* Info.plist */, + 4A44937A6A67D87E3AC6A61F9CE0D94A /* Info.plist */, + EE4FC6E1449C85B5017C343BE04EA18B /* Specta.modulemap */, + FC2C1F74F518EB9C29DE33BC68CA53A6 /* Specta.xcconfig */, + 76DB9CB5AB41CB7628D38A3875602876 /* Specta-dummy.m */, + F622840543E280DCB3CC14D7E725281C /* Specta-prefix.pch */, + D9261CD15AB8874F79A6009E67481836 /* Specta-umbrella.h */, ); name = "Support Files"; - path = "../Target Support Files/FBSnapshotTestCase"; + path = "../Target Support Files/Specta"; sourceTree = ""; }; - 2D10E3A58DE1576CA21DF3FB7F432051 /* Support Files */ = { + 3BE625E4D8BA664029487437F732F0EB /* Support Files */ = { isa = PBXGroup; children = ( - FFCA6E23CE38D336A38AFCF29986180A /* Expecta.modulemap */, - A193DEFA4D1CD24BE0FE7815E44EC372 /* Expecta.xcconfig */, - A9A4579B877C302F516E9CEE77766372 /* Expecta-dummy.m */, - 428F5AA64CB12DFC1C335C47914064E0 /* Expecta-prefix.pch */, - 370C8488ABDC015700FCF97F059BFD42 /* Expecta-umbrella.h */, - D41D99FA9E9AAB2466DF45604137EF43 /* Info.plist */, + 40756DCD53D113C323C5C9428E84C845 /* Expecta.modulemap */, + 88AB2BB4E1682EA0AC83820746E26F2A /* Expecta.xcconfig */, + ECB49D9F14B38696FAD9FE4FF60EB021 /* Expecta-dummy.m */, + 4C4DF2B23B4190D294C9D825482EDBD3 /* Expecta-prefix.pch */, + 1B3387393C5A85EC4F81AC582F3D5C73 /* Expecta-umbrella.h */, + C3AB14F77137804624D0943A02FA1E12 /* Info.plist */, ); name = "Support Files"; path = "../Target Support Files/Expecta"; sourceTree = ""; }; - 3A4F952369D10E166DE30E8ECC4EEBE5 /* Pod */ = { + 3F1387F8DE6631A8331F322C8CC4707B /* Products */ = { isa = PBXGroup; children = ( - 4B2FAAD8A616C87D464A33C57D4E1915 /* Classes */, + 64E14C573EE159963665AB4DDF11B156 /* DJLocalization.framework */, + 5944CE89161A82FA084C04F5921DADE7 /* Expecta.framework */, + F04AE0F0C46B205D79272B4854FAB5B4 /* Expecta_Snapshots.framework */, + B0955C0FDFFEF5760C7578511048C9DA /* FBSnapshotTestCase.framework */, + 47819686B6C08EF45B999B87C2F42A88 /* NSDate_Utils.framework */, + DD3CCF88DAB2DA65A8B231D549FD8CE4 /* Pods_NSDate_Utils_Example.framework */, + 0B2CA9A5ADA37DAD3EFB479356D3551B /* Pods_NSDate_Utils_Tests.framework */, + B6F519EB956BCA3CF7D1F537330F652C /* Specta.framework */, ); - name = Pod; - path = Pod; + name = Products; + sourceTree = ""; + }; + 4648B41054BFF2541985B1489318A031 /* Frameworks */ = { + isa = PBXGroup; + children = ( + 2A26C2B319A86358ABE4AB60EB557CE1 /* DJLocalization.framework */, + C3BD366719D715C35E6281F81A74EB3A /* Expecta.framework */, + 8B28A7F41C730D5F7C2512AA6EE08788 /* FBSnapshotTestCase.framework */, + FD2A937A2F110DD5E5178BF7ABADD3BB /* Specta.framework */, + A03A8F5E354187046D372631868D39F5 /* iOS */, + ); + name = Frameworks; + sourceTree = ""; + }; + 46CE71C688F4DB1028FD32C0BB99ED73 /* Support Files */ = { + isa = PBXGroup; + children = ( + 8E8EEBE81B2486D1604568FC1542B718 /* Info.plist */, + A81308A67D84E4D5C3683046B2FF907F /* NSDate_Utils.modulemap */, + D54BA304D115C3ADB50CC734BFD1D787 /* NSDate_Utils.xcconfig */, + 4544E5E89C90C6D97A443F1E0073D767 /* NSDate_Utils-dummy.m */, + 5F5009F328F7F224ED9BA2EA6193C28A /* NSDate_Utils-prefix.pch */, + C6557A21FBD2AB91054D8BFE66258134 /* NSDate_Utils-umbrella.h */, + ); + name = "Support Files"; + path = "Example/Pods/Target Support Files/NSDate_Utils"; sourceTree = ""; }; 493216F006D64AD370E9DC8917E31028 /* Targets Support Files */ = { @@ -558,135 +636,146 @@ name = "Targets Support Files"; sourceTree = ""; }; - 4B2FAAD8A616C87D464A33C57D4E1915 /* Classes */ = { + 5CB8DEC063F101FC66FD132A990E2823 /* NSDate_Utils */ = { isa = PBXGroup; children = ( - 294F2CFB4F79D03BBF16DA0AC8CFB95B /* NSDate+NSDate_Util.h */, - E25B1FF88D05AA09706C2609C79A845C /* NSDate+NSDate_Util.m */, + 2000E3B087108D485D53394E862354E2 /* NSDate+NSDate_Util.h */, + 5EDC26863BA9C354E602811D4906C16A /* NSDate+NSDate_Util.m */, + 46CE71C688F4DB1028FD32C0BB99ED73 /* Support Files */, ); - name = Classes; - path = Classes; + name = NSDate_Utils; + path = ../..; sourceTree = ""; }; - 53993025537DDE69A6DD6363DAC98FA0 /* Products */ = { + 76F7F4B222C091ECF28ECA02107B6EFA /* Expecta+Snapshots */ = { isa = PBXGroup; children = ( - D1F38C539F4C1079FD2CD2D05B64BCE4 /* Expecta.framework */, - 1ECA9AE864C24BC9A24DFF4E66632E1E /* Expecta_Snapshots.framework */, - 171770FEF3943F46FCA2474D71267AF2 /* FBSnapshotTestCase.framework */, - 4B01698ED41EF20D288CCA42A3A8AD0F /* NSDate_Utils.framework */, - 10F53C0C4FB54FFA148A9FBEEC6A5147 /* Pods_NSDate_Utils_Example.framework */, - DF3AB94D4C9998999433E32EB7DA835D /* Pods_NSDate_Utils_Tests.framework */, - 3463D27B14FF06E942E3013737F5A139 /* Specta.framework */, + 1DA2B60F8F2FE94F101D30759CC4E483 /* ExpectaObject+FBSnapshotTest.h */, + BB6CF95E72C9E661A71CCDB8877B9A84 /* ExpectaObject+FBSnapshotTest.m */, + EA3E48851125D08986C9BFDCF7811957 /* EXPMatchers+FBSnapshotTest.h */, + 253BD53062D5A83379CA8FD7898078BC /* EXPMatchers+FBSnapshotTest.m */, + DD68CE2944012E09A42FCB6BC943A701 /* Support Files */, ); - name = Products; + name = "Expecta+Snapshots"; + path = "Expecta+Snapshots"; sourceTree = ""; }; - 778606D5FF2F934B11EBF31C35276646 /* FBSnapshotTestCase */ = { + 780C65C273527D58F979445CC6B9A205 /* Expecta */ = { isa = PBXGroup; children = ( - E8FBC94E8894CD530C326FD84068F43E /* Core */, - 25569E96824C4F1200539B5948CEF428 /* Support Files */, - A5146D344D0BDF4F9705D174EE7D3186 /* SwiftSupport */, - ); - name = FBSnapshotTestCase; - path = FBSnapshotTestCase; - sourceTree = ""; - }; - 79484769BF08DC1D5243733A16B26307 /* Expecta */ = { - isa = PBXGroup; - children = ( - 1795ED3D682D8EDC5CEC1EA831BEECEA /* EXPBlockDefinedMatcher.h */, - C09805DD701F05B0FA3348EDA3BDC7CB /* EXPBlockDefinedMatcher.m */, - 91EC2AD8B04A0D0F0EC345F2B7070A95 /* EXPDefines.h */, - B4A617F1464A48980127A218AB18B898 /* EXPDoubleTuple.h */, - 3E348D84229E9000F93233339AFC317B /* EXPDoubleTuple.m */, - D148E142A756A0CD8BA055B657862814 /* Expecta.h */, - D24C93A44A823E785EE91D78394D63B9 /* ExpectaObject.h */, - C4016D8E6902B23AF2CA1BB3EBE78467 /* ExpectaObject.m */, - 8B52C3887A118767CC0A773555B7C029 /* ExpectaSupport.h */, - 71AF85B6558D634E3F383BA6AAEF3267 /* ExpectaSupport.m */, - 8F63B0FF272D1EB750D82F3EADA2D2CA /* EXPExpect.h */, - B34472CAE1E8EC26152CEFB1E82BE050 /* EXPExpect.m */, - CD486E43B7465271EE4EBCB98E5DAF8D /* EXPFloatTuple.h */, - 57AF203F6B98E185A822F5F0BC6DB151 /* EXPFloatTuple.m */, - B647A866CAF55406F516ECE6F8AE7F8B /* EXPMatcher.h */, - 237C1D40E94ECB9726EC1CC5E6691588 /* EXPMatcherHelpers.h */, - C22221B3B6D1F46AB81218794BF7243C /* EXPMatcherHelpers.m */, - D23BC3A3A95CE0E0D9D4237760C716E8 /* EXPMatchers.h */, - 99C6B238F553535C865A990AB217F102 /* EXPMatchers+beCloseTo.h */, - D4EF39D56E8A55D649F9810E362FA318 /* EXPMatchers+beCloseTo.m */, - 51B34EFC4AB0895A9F930413755AC4EB /* EXPMatchers+beFalsy.h */, - 4A6FA6514DAE7C7226C8C112DFE74E58 /* EXPMatchers+beFalsy.m */, - D182CF13D4DB728DAAD9786E7E8143B2 /* EXPMatchers+beginWith.h */, - 91453F85BD953E023DC76351FFEA1D94 /* EXPMatchers+beginWith.m */, - A54AE821E3D5E7DF7DA3ED83AF9B4AF2 /* EXPMatchers+beGreaterThan.h */, - 75C3D8B18F8E2A5FB67C1A251F1D7AA4 /* EXPMatchers+beGreaterThan.m */, - BB4DC57B05E96C2EB152A59EFCDB6F12 /* EXPMatchers+beGreaterThanOrEqualTo.h */, - 64E62B947C08376C71E07F669D636FF8 /* EXPMatchers+beGreaterThanOrEqualTo.m */, - 959C603B0B7FDCFBCEC10840D84C91CE /* EXPMatchers+beIdenticalTo.h */, - 760BA7B5F09D477F128F7CD8D3AB7FF2 /* EXPMatchers+beIdenticalTo.m */, - F6636C0229E54793FBCF41941077A50A /* EXPMatchers+beInstanceOf.h */, - 758C1F02B714A0821AE887BC00092EF6 /* EXPMatchers+beInstanceOf.m */, - 222B35F590250B97F30D1C37C402B693 /* EXPMatchers+beInTheRangeOf.h */, - FDB667FDEC11589B26C54AE25F550F2C /* EXPMatchers+beInTheRangeOf.m */, - DF4BD2050ABE1205D1B1A164803A18DA /* EXPMatchers+beKindOf.h */, - C04E3E80E2CD18DEAE104F67CE80B85A /* EXPMatchers+beKindOf.m */, - F2D3A79E58CE53867199D68A7690BE0C /* EXPMatchers+beLessThan.h */, - 58335D3E2909BF5D62C81864F19B78F1 /* EXPMatchers+beLessThan.m */, - AB2DADCEEF4EB97FC102ACCDF8FB51E9 /* EXPMatchers+beLessThanOrEqualTo.h */, - CD7582733015B7D005A247EF5856A0D6 /* EXPMatchers+beLessThanOrEqualTo.m */, - 28980D1268BF5D8196D266D4FC2F50E4 /* EXPMatchers+beNil.h */, - AEFE305560483772516B366088F6E2B4 /* EXPMatchers+beNil.m */, - C4318C653F9355DDB7F7553A52F8890D /* EXPMatchers+beSubclassOf.h */, - 43D9D3D0C96D5284831B2C833DD79A36 /* EXPMatchers+beSubclassOf.m */, - 9ABA02BD58E16D9841A495FD86DF6334 /* EXPMatchers+beSupersetOf.h */, - C6C7CD39279BCFD392135DCF45F61F03 /* EXPMatchers+beSupersetOf.m */, - A9AD646C1FEAB8503FF6D57F404BC0E6 /* EXPMatchers+beTruthy.h */, - 19D7E0FEC362BEC211648D104511BD5C /* EXPMatchers+beTruthy.m */, - 15EE63300C3D43B1B92124CD21806E8C /* EXPMatchers+conformTo.h */, - 222277628576E6CB279473688BA88F01 /* EXPMatchers+conformTo.m */, - F6ACA95F6EDBB1752AADF70C323E1E5F /* EXPMatchers+contain.h */, - 79A18C1EB2EC337A87C21C89732639D4 /* EXPMatchers+contain.m */, - 306E137B97A38C22CEC1E6B27B33B78A /* EXPMatchers+endWith.h */, - 7EF2072991CBA5987025178150BD49F6 /* EXPMatchers+endWith.m */, - B618D49996FCD7F7FD5C94C024840087 /* EXPMatchers+equal.h */, - 0782314CEFBB6F81294F8002EBFB578E /* EXPMatchers+equal.m */, - C22A60459B7AF517FAFC1750AAABDCEB /* EXPMatchers+haveCountOf.h */, - 5267376A130B688AA8DC669933C16D9A /* EXPMatchers+haveCountOf.m */, - 7BE7EA43918F8547CCF8A9EABF75B788 /* EXPMatchers+match.h */, - 6A1F80FD765EB6D46AB2B2CDF719CFD7 /* EXPMatchers+match.m */, - 431B770DD18C6C810E0ECD250D063471 /* EXPMatchers+postNotification.h */, - 7A7D54F2046B9323D0CB2748E382BAA3 /* EXPMatchers+postNotification.m */, - D2F336ECC66909E2FC05C8E3D376CF12 /* EXPMatchers+raise.h */, - FBA78AD493C15517AB45ED930E51A1E0 /* EXPMatchers+raise.m */, - A833BC98F95E74ABFF866C85B3FC9338 /* EXPMatchers+raiseWithReason.h */, - 3BC296A75FAF73BAC957A272364A7351 /* EXPMatchers+raiseWithReason.m */, - 158CEFBA77071AB835E435120F4CE616 /* EXPMatchers+respondTo.h */, - 69BE855C76546F434D61EAC92F2988BD /* EXPMatchers+respondTo.m */, - 8CE42337022021AE45B4E067D494C32F /* EXPUnsupportedObject.h */, - 9D21C236068062A9C4DDD612C5A3467B /* EXPUnsupportedObject.m */, - 2F1E859E32D523B17CD8D94AED21A1D4 /* NSObject+Expecta.h */, - 1ABB2201E2C23ED09ECB1930B874AA59 /* NSValue+Expecta.h */, - 064D45869BC2F37AD341CBDE9F822387 /* NSValue+Expecta.m */, - 2D10E3A58DE1576CA21DF3FB7F432051 /* Support Files */, + 975FE7AC40399A8F4A2418E78AFEBF37 /* EXPBlockDefinedMatcher.h */, + 728B4EAD5E170333D831F46346AB295B /* EXPBlockDefinedMatcher.m */, + C3718A8B8487C9B0E5B408AC58790145 /* EXPDefines.h */, + 782B862CAB92C5E72C8DDBD21C3D5E30 /* EXPDoubleTuple.h */, + D67491E19D55251F9D647C0CF2F0332F /* EXPDoubleTuple.m */, + A4C8FC0BE523A503B73DC2D196AC6AD7 /* Expecta.h */, + B8D8CAB30539AAAC27CE1C1DFE1B7898 /* ExpectaObject.h */, + 9AD8060B45FAD0C3DE6E833CE2388E07 /* ExpectaObject.m */, + CB9D5FAED59C7821A4B9484A955168F9 /* ExpectaSupport.h */, + 744010E8F6616F0F42DD2EFD2EE1746A /* ExpectaSupport.m */, + C13D921E7472278E485614564B5883EE /* EXPExpect.h */, + 98777E7162B329389C99C304BB8796EE /* EXPExpect.m */, + 2C3B83C3F9D40942B3CB7B2DD4961167 /* EXPFloatTuple.h */, + CF978D18A7D2C7A3DA34B9DD3E81267A /* EXPFloatTuple.m */, + 1967A27D64BDE056F3D97185336249B1 /* EXPMatcher.h */, + CB8E1721BDC36F96B902B013614BDA8E /* EXPMatcherHelpers.h */, + 256AE66FF1FF19ADCACBDA5B19EF2B04 /* EXPMatcherHelpers.m */, + ED6C0717CFA863667D50D04A1282B2DE /* EXPMatchers.h */, + BE07A0F6F6FBAACC2A7B1396BD50F799 /* EXPMatchers+beCloseTo.h */, + D860306098188AB361A4850BFC3C0FCF /* EXPMatchers+beCloseTo.m */, + BC3728C16F7414B9FB2C5255696D60AD /* EXPMatchers+beFalsy.h */, + 1B9D64D0043E1466DA1ADE4B55C3C22D /* EXPMatchers+beFalsy.m */, + 8963FBCC11E8AFF14103D22D533C74CA /* EXPMatchers+beginWith.h */, + B2990E0501A450545F356E05211B8B52 /* EXPMatchers+beginWith.m */, + 4075EC638B59E883F29B97EDB6AD6D82 /* EXPMatchers+beGreaterThan.h */, + 4EC8997036DFE35789D1D1E98E609CAB /* EXPMatchers+beGreaterThan.m */, + EA2574F700810A472A1E85DDD2D62949 /* EXPMatchers+beGreaterThanOrEqualTo.h */, + D3B0BAE8C47A348AD8B4C9FF3AEA6838 /* EXPMatchers+beGreaterThanOrEqualTo.m */, + E6BBF466A77A4141B80983728542358E /* EXPMatchers+beIdenticalTo.h */, + CB8547189C539D2C46AEDEE26882F5F6 /* EXPMatchers+beIdenticalTo.m */, + C267A718251527D0F8220AF781C4205C /* EXPMatchers+beInstanceOf.h */, + A50CB307B9D7096D1EFA93F3153D46F8 /* EXPMatchers+beInstanceOf.m */, + F52EB69D0C3A7CB9C29DD10EC19F0C8E /* EXPMatchers+beInTheRangeOf.h */, + 0DF812A3816BB93843A01F8AD080DDCE /* EXPMatchers+beInTheRangeOf.m */, + ABB0BC59D7E99775578653D2B1217EAC /* EXPMatchers+beKindOf.h */, + 0343583F5E462BEE31FE6C0D32C466F9 /* EXPMatchers+beKindOf.m */, + 24ED4D0A462E8A8E160E8C071A30DE65 /* EXPMatchers+beLessThan.h */, + 65C3A66A3856E9AB7A5C3F4DC8F5BB50 /* EXPMatchers+beLessThan.m */, + 4C6D801798A0B90C913D603BC7D0A629 /* EXPMatchers+beLessThanOrEqualTo.h */, + F02B60B0294A0CBFE4635D354347F8BC /* EXPMatchers+beLessThanOrEqualTo.m */, + F1E169F4ECDEED0F64B401C26019F328 /* EXPMatchers+beNil.h */, + B46D04DC87188B48EE1B2F63D626F796 /* EXPMatchers+beNil.m */, + 31581AD83AFAB635A18A33D1E26D1093 /* EXPMatchers+beSubclassOf.h */, + D183F238E84B5982C553CD6DB03D31F3 /* EXPMatchers+beSubclassOf.m */, + 7DF1C7995B0F8E1A82FA1413C1F67B13 /* EXPMatchers+beSupersetOf.h */, + D5D8008BB3FD26F3B1AE8E2707FC3B13 /* EXPMatchers+beSupersetOf.m */, + FB373F14F0DFD13542A7E2ED7BA98449 /* EXPMatchers+beTruthy.h */, + 06AD8E24600C3C272B2923812D9D3C33 /* EXPMatchers+beTruthy.m */, + AF5F8F1D21FF99944EF5D0951DD39A6A /* EXPMatchers+conformTo.h */, + 2B7362DCE8C741388CC5FF4E865C48CF /* EXPMatchers+conformTo.m */, + 236748E01769680E0CFE5606EFD41D7D /* EXPMatchers+contain.h */, + 0DB65F87A6FED2FAEE0D2E7B1FFF8270 /* EXPMatchers+contain.m */, + 37E42CCA5D6B2B43529571D68F11C00A /* EXPMatchers+endWith.h */, + 4B1774FF20D553DAE24FBE8BD1BF5252 /* EXPMatchers+endWith.m */, + 8F30D819B812A33D362678E4A4991F71 /* EXPMatchers+equal.h */, + C4602C3A6F1EEEA8014F646123B93D62 /* EXPMatchers+equal.m */, + 4E4245A458F69131072967E3568C61D1 /* EXPMatchers+haveCountOf.h */, + 31B788FD0BC9757CEC617B0254C42983 /* EXPMatchers+haveCountOf.m */, + AEF911B333853F0FC2298BDEAC4017F9 /* EXPMatchers+match.h */, + 5A6BBCE149C193E06EB144E40B257B34 /* EXPMatchers+match.m */, + 31A0380C0A4041C96F5D8B5274E549C4 /* EXPMatchers+postNotification.h */, + 7F6396B3EA23B455CC1CFC8E92883DD2 /* EXPMatchers+postNotification.m */, + 58EE24444C8FE3C8D81E991B30A26EB9 /* EXPMatchers+raise.h */, + 49581B9391CFA744C45EAE9B8B90C426 /* EXPMatchers+raise.m */, + 484D055801189D3B4A84BDD1AA3D6BFA /* EXPMatchers+raiseWithReason.h */, + 5BA44B7F9BEA233230BDCC6ED2924E69 /* EXPMatchers+raiseWithReason.m */, + B8D5BC2CD67D6058C07719F7A66B5BD7 /* EXPMatchers+respondTo.h */, + 3ABA1BD221F7E695FF8A5A622604B8AC /* EXPMatchers+respondTo.m */, + BD06014DD99D9619F6B1270D9935AE6D /* EXPUnsupportedObject.h */, + 438FAB8FC475E362298734C43DC806EB /* EXPUnsupportedObject.m */, + E5BF73836E2C1AF376089D72F267FEA6 /* NSObject+Expecta.h */, + B193B28455AAB88A39B598FCD0DF200E /* NSValue+Expecta.h */, + 2DCA07CB3515715DE3A2D1755F23C16C /* NSValue+Expecta.m */, + 3BE625E4D8BA664029487437F732F0EB /* Support Files */, ); name = Expecta; path = Expecta; sourceTree = ""; }; + 7A942F5A41F88A650D976752A3E4F9C5 /* Development Pods */ = { + isa = PBXGroup; + children = ( + 5CB8DEC063F101FC66FD132A990E2823 /* NSDate_Utils */, + ); + name = "Development Pods"; + sourceTree = ""; + }; 7DB346D0F39D3F0E887471402A8071AB = { isa = PBXGroup; children = ( 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */, - EFA91B00354A09F1404D8F010DF58B74 /* Development Pods */, - 1922ED2492F2CD5F07BAE0E198724705 /* Frameworks */, - 08D965B0F9B0084EEFBE7A581FFDD562 /* Pods */, - 53993025537DDE69A6DD6363DAC98FA0 /* Products */, + 7A942F5A41F88A650D976752A3E4F9C5 /* Development Pods */, + 4648B41054BFF2541985B1489318A031 /* Frameworks */, + FC92D6B76990126904ED239475DD1E91 /* Pods */, + 3F1387F8DE6631A8331F322C8CC4707B /* Products */, 493216F006D64AD370E9DC8917E31028 /* Targets Support Files */, ); sourceTree = ""; }; + 813540B73C677608E799EAC3908573D6 /* Support Files */ = { + isa = PBXGroup; + children = ( + 9DFF92BB923AE74BC7AA1921A532BC68 /* FBSnapshotTestCase.modulemap */, + BAECF85159B1D09C446FE5518F3C837A /* FBSnapshotTestCase.xcconfig */, + 4A153490D0C3CAA22B6546DD8FE64EEF /* FBSnapshotTestCase-dummy.m */, + 31865A1248C153FDF2A68544D698B43A /* FBSnapshotTestCase-prefix.pch */, + CE2814C356DFE997CE1B06E847237640 /* FBSnapshotTestCase-umbrella.h */, + 0B28DDC300D3CC464C6BC45C7E07C1B8 /* Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/FBSnapshotTestCase"; + sourceTree = ""; + }; 9774BC1EC41ED5C5F9BD4AA739A8665E /* Pods-NSDate_Utils_Tests */ = { isa = PBXGroup; children = ( @@ -705,70 +794,103 @@ path = "Target Support Files/Pods-NSDate_Utils_Tests"; sourceTree = ""; }; - A5146D344D0BDF4F9705D174EE7D3186 /* SwiftSupport */ = { + A03A8F5E354187046D372631868D39F5 /* iOS */ = { isa = PBXGroup; children = ( - D15181A2A90AA8A9F24D97664729A1B2 /* SwiftSupport.swift */, + 1AAC48CBAA1D6BC48D3BA712BE36622F /* Foundation.framework */, + 4CE452B9EC62443E588CB55DD4D7E12A /* QuartzCore.framework */, + 19AE2F085EF196486BAF6DEE803C4A87 /* UIKit.framework */, + B0D212FD70B51FC967FF60308DD79C9F /* XCTest.framework */, ); - name = SwiftSupport; + name = iOS; sourceTree = ""; }; - C29C93E7F175EC9CDE6E55BE676C8B75 /* Specta */ = { + BC76886A7FA510A4D8F483500D0C962C /* Core */ = { isa = PBXGroup; children = ( - FB362E8DBE566CD58ABD4124535F2081 /* Specta.h */, - FB93C123AC6F580DF978D60A8191F679 /* SpectaDSL.h */, - DACE406B2E53BE18445F22E26993E5B9 /* SpectaDSL.m */, - 15F9AB2173995E9AF3D7647F10735FD6 /* SpectaTypes.h */, - 6732C58C04F8341AD50DE36AEE2EBF41 /* SpectaUtility.h */, - FDE880572CC4AF9A3FB007D3FBAB3FC9 /* SpectaUtility.m */, - F0550288A3E4DA5B207A666BE8E62168 /* SPTCallSite.h */, - 827940DAD186863374E719CC8D5FCE23 /* SPTCallSite.m */, - 3A35BE0267849F84514C1480B43A470C /* SPTCompiledExample.h */, - C468A58BBD0142C1B15D5D1E99CD14D2 /* SPTCompiledExample.m */, - E5970E5D763F65673B9F5F4C5D0A9D0F /* SPTExample.h */, - 0C75DFE8C463E28459A9A9DD7E921822 /* SPTExample.m */, - E5B05516F560C08699BF135F729DD5E4 /* SPTExampleGroup.h */, - 707C1B7180164DF6560719973AEC92C1 /* SPTExampleGroup.m */, - 5514D13D44B78009D4AFEEDFA4E4FDBB /* SPTExcludeGlobalBeforeAfterEach.h */, - 0160D7EDEB19856BC505CA9E9075EC06 /* SPTGlobalBeforeAfterEach.h */, - 0A5F6EC9C4C2795348152BA100C32B10 /* SPTSharedExampleGroups.h */, - E42AB63F84DC20AD246EB8FFA3EFEF2C /* SPTSharedExampleGroups.m */, - BF701C1C8F03B74819BFFD19C9DEA426 /* SPTSpec.h */, - 5C8175700E46E467915FC3D84336F6A3 /* SPTSpec.m */, - BEC4D7D2259B4B710DED71BD7949BACA /* SPTTestSuite.h */, - 9DC5EEA6B4746F1531DD69BC488E69F4 /* SPTTestSuite.m */, - 70879F4C3E0CE4C4593A08B4BB1C1AF0 /* XCTest+Private.h */, - 7085F5CB16BF96F625D6465A4DA29F6F /* XCTestCase+Specta.h */, - 33C35331B5791C85920198E31A6E6396 /* XCTestCase+Specta.m */, - EC13DDF6CA2C4CAAA835ABE5DA3A731F /* Support Files */, + 7AB02A7A1906F7AFE86D7838A7A63553 /* DJLocalizableString.h */, + EB1155BBBF8A1CE1E1187E00C523E6BD /* DJLocalizableString.m */, + C972B5CA1AA5A94CDC987E7C6AB70507 /* DJLocalization.h */, + 2B7CA1E144F183102ED9EB853A6EE9E5 /* DJLocalizationSystem.h */, + 0D91388C794E22A24574945D66FD489C /* DJLocalizationSystem.m */, + 0CD4AD8D21AE55CD1116C85DE8AA3290 /* DJLocalizationSystem+Private.h */, + 543FF0C7020E314B4BC16AE19597BC4D /* UIStoryboard+DJLocalization.h */, + 4058FCFBD43A31D7F420AD37E34244CA /* UIStoryboard+DJLocalization.m */, + ); + name = Core; + sourceTree = ""; + }; + BE4A640F3C9A98C265827A44FDB03479 /* Support Files */ = { + isa = PBXGroup; + children = ( + 65862397A692E296190C8BE414DC1216 /* DJLocalization.modulemap */, + 064AC83C8DEAC3FAA289184FE17B0BC6 /* DJLocalization.xcconfig */, + D73A1078B1410ADAAF9176486AF0098B /* DJLocalization-dummy.m */, + D9C2FA922264888CB0FCD17395F478EC /* DJLocalization-prefix.pch */, + 2E8CFDE41AA38E441EEAA3591974CB5F /* DJLocalization-umbrella.h */, + F9AC9D7C6680BD955CE8ABF074F53DEF /* Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/DJLocalization"; + sourceTree = ""; + }; + DA1D898FA8F74210998C60946D57837D /* Specta */ = { + isa = PBXGroup; + children = ( + 1AD4A139443FC994428C843D5DBC288B /* Specta.h */, + B4265BAF4DE1AC008BA3D7808D12521D /* SpectaDSL.h */, + D7A0092E9DFF8FBA9B9619E1C94D11A4 /* SpectaDSL.m */, + 1FF0C6FA10AE3FB76CEE273BBBC9116A /* SpectaTypes.h */, + AA590806FD8DB4D629738D5E7A8ACCB1 /* SpectaUtility.h */, + F0CED164053A8E3C84C6C7B54977739E /* SpectaUtility.m */, + 7D5CE34D7C4B150E05C1FF9B130F846F /* SPTCallSite.h */, + 8C8EF8FE1B80C900B64E42F55BEDB1F0 /* SPTCallSite.m */, + 71A02784A0D646BBEC4DC650B13AE4C4 /* SPTCompiledExample.h */, + FF88F2AC48993E37847D4122C697A0B3 /* SPTCompiledExample.m */, + FBB3A6FB8D54EAF015CFFBFA0E54AB7B /* SPTExample.h */, + 687ABB05587519F7D7D5DBA1FE5B1F04 /* SPTExample.m */, + B96BB8616784F07F68B5F97B4DF691EE /* SPTExampleGroup.h */, + 82981E3BCEFDF22C32D76A803F63E519 /* SPTExampleGroup.m */, + 316C49B3F4CEBA7EE181DA4E0D89A85B /* SPTExcludeGlobalBeforeAfterEach.h */, + FBCDE4515D25E5D636494AAC219C0EA4 /* SPTGlobalBeforeAfterEach.h */, + 5E8E84D675C4A5C33ED694414CDB864A /* SPTSharedExampleGroups.h */, + DEBC113B61BE9F3CF3D7CDA5463A3F99 /* SPTSharedExampleGroups.m */, + 61C8FD253B5773CF185956431AD1C47F /* SPTSpec.h */, + 2706D5FC4DC09EA3C6B139354478559D /* SPTSpec.m */, + 44E0C39C38BA51B8C26A52B952C76DB0 /* SPTTestSuite.h */, + 902FFD7EB73EE618036907E56C50D54F /* SPTTestSuite.m */, + DA646588644582F7EE9614FEB9FAE2BF /* XCTest+Private.h */, + 84DE42204256F73549F695E81787F624 /* XCTestCase+Specta.h */, + E8563536589B7E4FFFCDDD4ED34C402E /* XCTestCase+Specta.m */, + 3B7C7BC5B3532DBAAD7A215B31B6DD97 /* Support Files */, ); name = Specta; path = Specta; sourceTree = ""; }; - D444F89BC8BA24BC0761D553BC8F0231 /* Expecta+Snapshots */ = { + DA50C08F0B96CA8CF419847CABC35C52 /* FBSnapshotTestCase */ = { isa = PBXGroup; children = ( - 3DA8473E9C7CE1583F74DFBDAE8B0854 /* ExpectaObject+FBSnapshotTest.h */, - 7874ECE957DC7F80946CB43F9419C903 /* ExpectaObject+FBSnapshotTest.m */, - 6B959D8DDAA2ED93C94CF628C922CD14 /* EXPMatchers+FBSnapshotTest.h */, - 22C6E607E674AB20554080B3E2A4B463 /* EXPMatchers+FBSnapshotTest.m */, - F4013618912B558D4DF190A95A39EFD4 /* Support Files */, + F670B72039F6C38DF0B674A3A5E0BC3B /* Core */, + 813540B73C677608E799EAC3908573D6 /* Support Files */, + 059074DFB239E01FDFB83535DCC11E78 /* SwiftSupport */, ); - name = "Expecta+Snapshots"; - path = "Expecta+Snapshots"; + name = FBSnapshotTestCase; + path = FBSnapshotTestCase; sourceTree = ""; }; - E17C555CEDD943D4BAB4FB0A4B485534 /* iOS */ = { + DD68CE2944012E09A42FCB6BC943A701 /* Support Files */ = { isa = PBXGroup; children = ( - A8DB1C700296DFB23B88DE8C25EAC168 /* Foundation.framework */, - 6F1777B40A6AD81F254190979323F8E4 /* QuartzCore.framework */, - 05C5BAC93F600FCB00D99EC7370D8C32 /* UIKit.framework */, - 0438870BEF19EF2588872D886D220DCE /* XCTest.framework */, + 504C0ACBF3358BAF1D065B828A617038 /* Expecta+Snapshots.modulemap */, + 4726B0A5C942D8715EE5456C2B2F7DFE /* Expecta+Snapshots.xcconfig */, + 9A6CBEE01E709C15BF863B8AAB7CCCC9 /* Expecta+Snapshots-dummy.m */, + A92FA21CF250F41C90FE35F4C58B8EEE /* Expecta+Snapshots-prefix.pch */, + 06D57A881101AC87215A734BDFCC4443 /* Expecta+Snapshots-umbrella.h */, + 6C6465F99811C589B47BB862DC79109D /* Info.plist */, ); - name = iOS; + name = "Support Files"; + path = "../Target Support Files/Expecta+Snapshots"; sourceTree = ""; }; E500ABBBD23506A2387FB488F3EA317A /* Pods-NSDate_Utils_Example */ = { @@ -789,94 +911,60 @@ path = "Target Support Files/Pods-NSDate_Utils_Example"; sourceTree = ""; }; - E8FBC94E8894CD530C326FD84068F43E /* Core */ = { + F670B72039F6C38DF0B674A3A5E0BC3B /* Core */ = { isa = PBXGroup; children = ( - D417CB778FB662CFE79DB7FD9E6554A8 /* FBSnapshotTestCase.h */, - DAD6E6C6CD2E4105AE9595FA4CC6137C /* FBSnapshotTestCase.m */, - 4A7DDD4A7CE0636458E013320B3DCFC2 /* FBSnapshotTestCasePlatform.h */, - C685971A6CB0538D27790478B960CFD8 /* FBSnapshotTestCasePlatform.m */, - 5E61F0C06E6807EE9DB324F266909BED /* FBSnapshotTestController.h */, - 2B0529E4A817BCF5BF22ADA77866D0B7 /* FBSnapshotTestController.m */, - F787B4263348644844F9D18CCBA4A124 /* UIApplication+StrictKeyWindow.h */, - A29BA8C3E774C364BD56A4AAFFF1E6AA /* UIApplication+StrictKeyWindow.m */, - 42785F13EF84B082ACE2FE7CAE842881 /* UIImage+Compare.h */, - 2D87B9B77C0C44AA9110F83844B1744F /* UIImage+Compare.m */, - 39686FFA13DAF68BB30B71BF78A974C3 /* UIImage+Diff.h */, - 7F5D1A0E9BD4DDFBC87E078DEC833A16 /* UIImage+Diff.m */, - 612DFA52478D8CE9C4866818C95C29E9 /* UIImage+Snapshot.h */, - B44593C7806808BFFCA8CE943799073B /* UIImage+Snapshot.m */, + 9F85B7BC86AA18D4D80D48266B4BEFF3 /* FBSnapshotTestCase.h */, + C894D5C3B3BD9AF0219E5ACAF350BEA7 /* FBSnapshotTestCase.m */, + 2AEB1FF182255E4EF30E68AEFBB130E9 /* FBSnapshotTestCasePlatform.h */, + 4581A641A5CEABCE2CC583CF0888738E /* FBSnapshotTestCasePlatform.m */, + CC1437E4742170F3F681FA4F2B5F7CCD /* FBSnapshotTestController.h */, + 4FC3C702BC49D76CB4CA7D5992C08FD4 /* FBSnapshotTestController.m */, + FF2482B26EC455C47EE2DE0B79B1AAAF /* UIApplication+StrictKeyWindow.h */, + E19EA097A8A92D57BC634A9B40F3FB8F /* UIApplication+StrictKeyWindow.m */, + AA2F4A79BE6DD21C27618B48FF4E9214 /* UIImage+Compare.h */, + 9141BC3230EC75BAA27250BD1940F56C /* UIImage+Compare.m */, + A049570B9E13B811B977AFC6DC462F52 /* UIImage+Diff.h */, + CC36CF9278A80E8D8C7E1032FB158DF4 /* UIImage+Diff.m */, + 4420C2EF18082FE3509C4379BA0A65ED /* UIImage+Snapshot.h */, + 3A137A8B69796D104B719A9EEC4FF648 /* UIImage+Snapshot.m */, ); name = Core; sourceTree = ""; }; - EC13DDF6CA2C4CAAA835ABE5DA3A731F /* Support Files */ = { + FC92D6B76990126904ED239475DD1E91 /* Pods */ = { isa = PBXGroup; children = ( - 6F171023695E78011482097406A42BC8 /* Info.plist */, - 3F862797664D0A6668AE953CB22045C0 /* Specta.modulemap */, - 581C5F5012EB4722B076757D7F522B51 /* Specta.xcconfig */, - 757732CABCCD0D3A3DECF0188321177D /* Specta-dummy.m */, - 1E7BBDA96EB748B4566D121043C548C0 /* Specta-prefix.pch */, - 7D657B34A1C94FBF176F35C1081FD8A9 /* Specta-umbrella.h */, + 1F8DB9E5040F241DD3A62A49E59155DB /* DJLocalization */, + 780C65C273527D58F979445CC6B9A205 /* Expecta */, + 76F7F4B222C091ECF28ECA02107B6EFA /* Expecta+Snapshots */, + DA50C08F0B96CA8CF419847CABC35C52 /* FBSnapshotTestCase */, + DA1D898FA8F74210998C60946D57837D /* Specta */, ); - name = "Support Files"; - path = "../Target Support Files/Specta"; - sourceTree = ""; - }; - EFA91B00354A09F1404D8F010DF58B74 /* Development Pods */ = { - isa = PBXGroup; - children = ( - 021E0CA43530E223061EE9176D0D28FE /* NSDate_Utils */, - ); - name = "Development Pods"; - sourceTree = ""; - }; - F4013618912B558D4DF190A95A39EFD4 /* Support Files */ = { - isa = PBXGroup; - children = ( - 921C86B70AE5EE1E10BD09948738EF96 /* Expecta+Snapshots.modulemap */, - 4A13AEBD3A512EC975C2DD3AF8D8931D /* Expecta+Snapshots.xcconfig */, - B4E553ECAD689166E16E72CBB083D61A /* Expecta+Snapshots-dummy.m */, - 419377E544AC43AB5272D6BABBDFC7F4 /* Expecta+Snapshots-prefix.pch */, - 26B782A5F5606BC64AF7B709A1D93B4E /* Expecta+Snapshots-umbrella.h */, - 07BC24DA84E3F15453DEC37314546A77 /* Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/Expecta+Snapshots"; - sourceTree = ""; - }; - FC3C07F729069F7E038E69208B5EC063 /* Support Files */ = { - isa = PBXGroup; - children = ( - FDCE6B50DE0D7A5065D903E6D5216FFA /* Info.plist */, - 04BA3CB0925A5177251D524DF6DDFCDC /* NSDate_Utils.modulemap */, - 6D5CBFD25D4A2E10C5E330B622094D70 /* NSDate_Utils.xcconfig */, - 6B9A604A22517317ECC105AA77659CAA /* NSDate_Utils-dummy.m */, - F246B37B7EC4CBE5B419E2AA9987A3C7 /* NSDate_Utils-prefix.pch */, - 895885A7B46A44F2D148C3BA7476BD81 /* NSDate_Utils-umbrella.h */, - ); - name = "Support Files"; - path = "Example/Pods/Target Support Files/NSDate_Utils"; + name = Pods; sourceTree = ""; }; /* End PBXGroup section */ /* Begin PBXHeadersBuildPhase section */ - 0E60964CC4D0AA4A19BBB18D47A0420F /* Headers */ = { + 06498544C4DA16E51B95D5DB99F88CD2 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - CF97CF9E6FFADE4494B0CF3D987095E4 /* NSDate+NSDate_Util.h in Headers */, - 902484060770C69D57D4865C4EED84EF /* NSDate_Utils-umbrella.h in Headers */, + 2B224E156F7AB61299D401AD619FA9C3 /* Pods-NSDate_Utils_Tests-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 43303EB8CE6DED6F7B4C28E8090BA7A6 /* Headers */ = { + 28722E849928975092798173C8DCC983 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 536C8AA0E13CB20FCCDBD96A3D98E330 /* Pods-NSDate_Utils_Tests-umbrella.h in Headers */, + 3DC79943B1DDD329253CF04413FF5372 /* DJLocalizableString.h in Headers */, + BC4A3F392D78ABB11CD4381E94C90889 /* DJLocalization-umbrella.h in Headers */, + 1780C12E873269455D238406C1480501 /* DJLocalization.h in Headers */, + 576E82D018C9BCE5B4F4D79BE724E909 /* DJLocalizationSystem+Private.h in Headers */, + B83B015B5F0143A1D2FED54771A4B68E /* DJLocalizationSystem.h in Headers */, + 51E3F8E47A2429857F390CD53E3A1D3C /* UIStoryboard+DJLocalization.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -965,6 +1053,23 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + AB530D3835E971FA3625574FEFA3E647 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 709E175BC1EB4163515F223445E97010 /* Pods-NSDate_Utils_Example-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + AF40A152BAA29DE0A267F60AE60D67CB /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 1E46B4CD3EEED028726B696B07BE358E /* NSDate+NSDate_Util.h in Headers */, + FCF94E8687B71E31EE72D0D4BA626D5C /* NSDate_Utils-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; CDFD4A1DE3E4E3CABD4EC05ABC8A520C /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -975,14 +1080,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - E2B0A7C96F4319C5FF1EFA84266C9CB1 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - EACB6796872432A0674F191F3BF5F8F5 /* Pods-NSDate_Utils_Example-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; /* End PBXHeadersBuildPhase section */ /* Begin PBXNativeTarget section */ @@ -1000,29 +1097,47 @@ ); name = Specta; productName = Specta; - productReference = 3463D27B14FF06E942E3013737F5A139 /* Specta.framework */; + productReference = B6F519EB956BCA3CF7D1F537330F652C /* Specta.framework */; productType = "com.apple.product-type.framework"; }; - 5C1CCAB5AD8CE9E6218710C903DCB25A /* Pods-NSDate_Utils_Tests */ = { + 388B80063BAAB65340E47F9B5774F32E /* Pods-NSDate_Utils_Tests */ = { isa = PBXNativeTarget; - buildConfigurationList = AC3020FBA27A0C2372F9490341E4A872 /* Build configuration list for PBXNativeTarget "Pods-NSDate_Utils_Tests" */; + buildConfigurationList = 0CAA7FF77580ABDC85AE8232144D25E4 /* Build configuration list for PBXNativeTarget "Pods-NSDate_Utils_Tests" */; buildPhases = ( - 4FF56D5A79AE2F39998B288329DDFAFB /* Sources */, - E21DC993C97461EBC725CD3244AAA559 /* Frameworks */, - 43303EB8CE6DED6F7B4C28E8090BA7A6 /* Headers */, + AB8D1BE5FA685456783832B963994D0A /* Sources */, + 92C16A73E18EBDB267A1DFAB74EEBF2D /* Frameworks */, + 06498544C4DA16E51B95D5DB99F88CD2 /* Headers */, ); buildRules = ( ); dependencies = ( - 16B5160517A601D2B010C04024452E7C /* PBXTargetDependency */, - 42A983AC42C8B487BCEA96EDF498945C /* PBXTargetDependency */, - EBA329A0C9B573E95F1F7D42DFE1E030 /* PBXTargetDependency */, - 0F4A98E042092A99324052E1A0109F40 /* PBXTargetDependency */, - 7E098222688A7A1700F0113EEE66F238 /* PBXTargetDependency */, + 09CC7BDFAACCEE73E98703FBCF06E72A /* PBXTargetDependency */, + 127F0F6AF320DF421748501C48E34474 /* PBXTargetDependency */, + 4F8699924965ECD466178F8BEE457885 /* PBXTargetDependency */, + 8B4E09D60621F8790999AA475FBD81B0 /* PBXTargetDependency */, + E075497687A5072B9F0F06BB2C8CC0E0 /* PBXTargetDependency */, + 1BC4F03DEB1D91B6A86B9DBE16A59DBA /* PBXTargetDependency */, ); name = "Pods-NSDate_Utils_Tests"; productName = "Pods-NSDate_Utils_Tests"; - productReference = DF3AB94D4C9998999433E32EB7DA835D /* Pods_NSDate_Utils_Tests.framework */; + productReference = 0B2CA9A5ADA37DAD3EFB479356D3551B /* Pods_NSDate_Utils_Tests.framework */; + productType = "com.apple.product-type.framework"; + }; + 3E8E8C1AA879E4E3A20A8E6F67001A6E /* DJLocalization */ = { + isa = PBXNativeTarget; + buildConfigurationList = 3A67E131704D0D862165B5DC57DE95E7 /* Build configuration list for PBXNativeTarget "DJLocalization" */; + buildPhases = ( + B65680297F289298E85A01433CEC943B /* Sources */, + 2BAF96285454775929F4A6BD82CEFD41 /* Frameworks */, + 28722E849928975092798173C8DCC983 /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = DJLocalization; + productName = DJLocalization; + productReference = 64E14C573EE159963665AB4DDF11B156 /* DJLocalization.framework */; productType = "com.apple.product-type.framework"; }; 5D161BA711701D7E41E02A5702FD024E /* Expecta */ = { @@ -1039,24 +1154,44 @@ ); name = Expecta; productName = Expecta; - productReference = D1F38C539F4C1079FD2CD2D05B64BCE4 /* Expecta.framework */; + productReference = 5944CE89161A82FA084C04F5921DADE7 /* Expecta.framework */; productType = "com.apple.product-type.framework"; }; - 68E501DEBC19E7D6794DEBEE8FCF317A /* NSDate_Utils */ = { + 871B2BCE897E7E5EFAE614F16AC195F3 /* NSDate_Utils */ = { isa = PBXNativeTarget; - buildConfigurationList = 60A508A3CABC0F7DE5B7A75D51FF1C8C /* Build configuration list for PBXNativeTarget "NSDate_Utils" */; + buildConfigurationList = C36E5EDC808D4A23B75E8CCE8E14424F /* Build configuration list for PBXNativeTarget "NSDate_Utils" */; buildPhases = ( - 3480DB69E12D282D0B418B18408A1F6E /* Sources */, - 7971F0E5BB24B850A9F4C91873EAE1AD /* Frameworks */, - 0E60964CC4D0AA4A19BBB18D47A0420F /* Headers */, + 336221356480E32A1E0EDDC73F2491DC /* Sources */, + AF7E415D9D66C6AA0BFDE0956E95DCD3 /* Frameworks */, + AF40A152BAA29DE0A267F60AE60D67CB /* Headers */, ); buildRules = ( ); dependencies = ( + 9B85C747988D90A378736F2CD7D99DBD /* PBXTargetDependency */, ); name = NSDate_Utils; productName = NSDate_Utils; - productReference = 4B01698ED41EF20D288CCA42A3A8AD0F /* NSDate_Utils.framework */; + productReference = 47819686B6C08EF45B999B87C2F42A88 /* NSDate_Utils.framework */; + productType = "com.apple.product-type.framework"; + }; + CB6B56911E7F7E1C2CED2F02B4695253 /* Pods-NSDate_Utils_Example */ = { + isa = PBXNativeTarget; + buildConfigurationList = DF5FFCA2B5CE6E17E71C0D92801A11D2 /* Build configuration list for PBXNativeTarget "Pods-NSDate_Utils_Example" */; + buildPhases = ( + 6B8F60D2C862683A77836B6CF82870D5 /* Sources */, + 38C4F6E806BC93A04FF58A8158B8814A /* Frameworks */, + AB530D3835E971FA3625574FEFA3E647 /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + C2A771A04537C35144A9916EBE65CFE7 /* PBXTargetDependency */, + 1AF713504406212883C6ECD1CFBBA7F6 /* PBXTargetDependency */, + ); + name = "Pods-NSDate_Utils_Example"; + productName = "Pods-NSDate_Utils_Example"; + productReference = DD3CCF88DAB2DA65A8B231D549FD8CE4 /* Pods_NSDate_Utils_Example.framework */; productType = "com.apple.product-type.framework"; }; D3054FB7F84727519F50B6AD1E49531E /* FBSnapshotTestCase */ = { @@ -1073,25 +1208,7 @@ ); name = FBSnapshotTestCase; productName = FBSnapshotTestCase; - productReference = 171770FEF3943F46FCA2474D71267AF2 /* FBSnapshotTestCase.framework */; - productType = "com.apple.product-type.framework"; - }; - D339EAD39AD7B4446D9231377EC3EA6A /* Pods-NSDate_Utils_Example */ = { - isa = PBXNativeTarget; - buildConfigurationList = BE336C5BCB5246B57372A03CC996C1D0 /* Build configuration list for PBXNativeTarget "Pods-NSDate_Utils_Example" */; - buildPhases = ( - 9E294EC315E7BF4B8B254835A3E07AC9 /* Sources */, - 275C591E9B4391102AD2311609F973B6 /* Frameworks */, - E2B0A7C96F4319C5FF1EFA84266C9CB1 /* Headers */, - ); - buildRules = ( - ); - dependencies = ( - 3CB3A09A92B4ABD8983AF11622064C76 /* PBXTargetDependency */, - ); - name = "Pods-NSDate_Utils_Example"; - productName = "Pods-NSDate_Utils_Example"; - productReference = 10F53C0C4FB54FFA148A9FBEEC6A5147 /* Pods_NSDate_Utils_Example.framework */; + productReference = B0955C0FDFFEF5760C7578511048C9DA /* FBSnapshotTestCase.framework */; productType = "com.apple.product-type.framework"; }; E427C6DCA153E01C52C89563011E9C39 /* Expecta+Snapshots */ = { @@ -1111,7 +1228,7 @@ ); name = "Expecta+Snapshots"; productName = "Expecta+Snapshots"; - productReference = 1ECA9AE864C24BC9A24DFF4E66632E1E /* Expecta_Snapshots.framework */; + productReference = F04AE0F0C46B205D79272B4854FAB5B4 /* Expecta_Snapshots.framework */; productType = "com.apple.product-type.framework"; }; /* End PBXNativeTarget section */ @@ -1120,7 +1237,7 @@ D41D8CD98F00B204E9800998ECF8427E /* Project object */ = { isa = PBXProject; attributes = { - LastSwiftUpdateCheck = 0730; + LastSwiftUpdateCheck = 0830; LastUpgradeCheck = 0700; }; buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */; @@ -1131,28 +1248,29 @@ en, ); mainGroup = 7DB346D0F39D3F0E887471402A8071AB; - productRefGroup = 53993025537DDE69A6DD6363DAC98FA0 /* Products */; + productRefGroup = 3F1387F8DE6631A8331F322C8CC4707B /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( + 3E8E8C1AA879E4E3A20A8E6F67001A6E /* DJLocalization */, 5D161BA711701D7E41E02A5702FD024E /* Expecta */, E427C6DCA153E01C52C89563011E9C39 /* Expecta+Snapshots */, D3054FB7F84727519F50B6AD1E49531E /* FBSnapshotTestCase */, - 68E501DEBC19E7D6794DEBEE8FCF317A /* NSDate_Utils */, - D339EAD39AD7B4446D9231377EC3EA6A /* Pods-NSDate_Utils_Example */, - 5C1CCAB5AD8CE9E6218710C903DCB25A /* Pods-NSDate_Utils_Tests */, + 871B2BCE897E7E5EFAE614F16AC195F3 /* NSDate_Utils */, + CB6B56911E7F7E1C2CED2F02B4695253 /* Pods-NSDate_Utils_Example */, + 388B80063BAAB65340E47F9B5774F32E /* Pods-NSDate_Utils_Tests */, 21B910E0FB008FE15458D3D9B59BED16 /* Specta */, ); }; /* End PBXProject section */ /* Begin PBXSourcesBuildPhase section */ - 3480DB69E12D282D0B418B18408A1F6E /* Sources */ = { + 336221356480E32A1E0EDDC73F2491DC /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 640BE70F1E7AE853A88259A9A192DDA7 /* NSDate+NSDate_Util.m in Sources */, - 67C1AE1B989FDCA50BC0E7FC807CE386 /* NSDate_Utils-dummy.m in Sources */, + 5DBF09C279EBC072D4B59C0EEE75A73B /* NSDate+NSDate_Util.m in Sources */, + 896101BE9C9418E16348EA032E34ADB0 /* NSDate_Utils-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1172,14 +1290,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4FF56D5A79AE2F39998B288329DDFAFB /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 06A3305D0809E503914727643B3DDFB5 /* Pods-NSDate_Utils_Tests-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 5BB3FBA1C308E80B904A714F4F781F69 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -1198,11 +1308,30 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 9E294EC315E7BF4B8B254835A3E07AC9 /* Sources */ = { + 6B8F60D2C862683A77836B6CF82870D5 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 44CEA6756C5E1880C9B3BFC6F0380E7A /* Pods-NSDate_Utils_Example-dummy.m in Sources */, + A3DC50EB3B529963BDBB4E9DF0F6243C /* Pods-NSDate_Utils_Example-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + AB8D1BE5FA685456783832B963994D0A /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 37796DE5D741F172BEDADE743D46C8E4 /* Pods-NSDate_Utils_Tests-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B65680297F289298E85A01433CEC943B /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + B1FB214C8508C15E0A07DA4F56E8C259 /* DJLocalizableString.m in Sources */, + 74B60B3D5F7834637905C08815B88D1E /* DJLocalization-dummy.m in Sources */, + C49FA290256E683C5E1E22F59365E782 /* DJLocalizationSystem.m in Sources */, + F255830C94C00E4FA4DAD37403E891E8 /* UIStoryboard+DJLocalization.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1261,23 +1390,29 @@ /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 0F4A98E042092A99324052E1A0109F40 /* PBXTargetDependency */ = { + 09CC7BDFAACCEE73E98703FBCF06E72A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = NSDate_Utils; - target = 68E501DEBC19E7D6794DEBEE8FCF317A /* NSDate_Utils */; - targetProxy = D836409548355CC603B0C3C9347E5D7F /* PBXContainerItemProxy */; + name = DJLocalization; + target = 3E8E8C1AA879E4E3A20A8E6F67001A6E /* DJLocalization */; + targetProxy = 75AC65EB80D587F2DE8F817488ABE57D /* PBXContainerItemProxy */; }; - 16B5160517A601D2B010C04024452E7C /* PBXTargetDependency */ = { + 127F0F6AF320DF421748501C48E34474 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Expecta; target = 5D161BA711701D7E41E02A5702FD024E /* Expecta */; - targetProxy = A0B9AB958D1441513948E080152FB1FC /* PBXContainerItemProxy */; + targetProxy = A52265EC093415D865FE7373C3F4C463 /* PBXContainerItemProxy */; }; - 3CB3A09A92B4ABD8983AF11622064C76 /* PBXTargetDependency */ = { + 1AF713504406212883C6ECD1CFBBA7F6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = NSDate_Utils; - target = 68E501DEBC19E7D6794DEBEE8FCF317A /* NSDate_Utils */; - targetProxy = 5A23989EECA4352CDE0D2D65A87D9954 /* PBXContainerItemProxy */; + target = 871B2BCE897E7E5EFAE614F16AC195F3 /* NSDate_Utils */; + targetProxy = 4BBA2E9E8950F6DB33B5F604D5F5907B /* PBXContainerItemProxy */; + }; + 1BC4F03DEB1D91B6A86B9DBE16A59DBA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Specta; + target = 21B910E0FB008FE15458D3D9B59BED16 /* Specta */; + targetProxy = CFD1BC212044D89EEAEB1A306AC8AF2A /* PBXContainerItemProxy */; }; 3D43A4E1E55598050189FEF026562CCB /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -1285,23 +1420,35 @@ target = 5D161BA711701D7E41E02A5702FD024E /* Expecta */; targetProxy = 5C6D7B5A976F2A92FE24BD14BCB09413 /* PBXContainerItemProxy */; }; - 42A983AC42C8B487BCEA96EDF498945C /* PBXTargetDependency */ = { + 4F8699924965ECD466178F8BEE457885 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Expecta+Snapshots"; target = E427C6DCA153E01C52C89563011E9C39 /* Expecta+Snapshots */; - targetProxy = C9A8E20CF3B05C1514CBE75640700066 /* PBXContainerItemProxy */; + targetProxy = 668AFE7EB20B8713FD41EE18B0C120EA /* PBXContainerItemProxy */; }; - 7E098222688A7A1700F0113EEE66F238 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Specta; - target = 21B910E0FB008FE15458D3D9B59BED16 /* Specta */; - targetProxy = 0F3D3630B2ED8EF83A7B5FEF0881B103 /* PBXContainerItemProxy */; - }; - EBA329A0C9B573E95F1F7D42DFE1E030 /* PBXTargetDependency */ = { + 8B4E09D60621F8790999AA475FBD81B0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FBSnapshotTestCase; target = D3054FB7F84727519F50B6AD1E49531E /* FBSnapshotTestCase */; - targetProxy = 3F41B574A720CC5C22AD432E11372E8D /* PBXContainerItemProxy */; + targetProxy = FC3549652C4BB09FD5D5279EF40C123D /* PBXContainerItemProxy */; + }; + 9B85C747988D90A378736F2CD7D99DBD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DJLocalization; + target = 3E8E8C1AA879E4E3A20A8E6F67001A6E /* DJLocalization */; + targetProxy = A0F6155396E592C1AB75F8FCD14CA30B /* PBXContainerItemProxy */; + }; + C2A771A04537C35144A9916EBE65CFE7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DJLocalization; + target = 3E8E8C1AA879E4E3A20A8E6F67001A6E /* DJLocalization */; + targetProxy = 3ACB7386740914E29321B09DF0ABCE14 /* PBXContainerItemProxy */; + }; + E075497687A5072B9F0F06BB2C8CC0E0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = NSDate_Utils; + target = 871B2BCE897E7E5EFAE614F16AC195F3 /* NSDate_Utils */; + targetProxy = 6CBA05820F20C3826B13226C3252B37C /* PBXContainerItemProxy */; }; F5725D79B2909BACC66D7838532A1F20 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -1318,11 +1465,45 @@ /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ - 015A368F878AC3E2CEAE21DDE8026304 /* Debug */ = { + 12DEA95637613F40D5DE9FDBC4BEEEF6 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 4726B0A5C942D8715EE5456C2B2F7DFE /* Expecta+Snapshots.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/Expecta+Snapshots/Expecta+Snapshots-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/Expecta+Snapshots/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/Expecta+Snapshots/Expecta+Snapshots.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = Expecta_Snapshots; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 1C7D17A37D091C98D2F0DD886C3A9320 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES; CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; CLANG_CXX_LIBRARY = "libc++"; CLANG_ENABLE_MODULES = YES; @@ -1330,10 +1511,13 @@ CLANG_WARN_BOOL_CONVERSION = YES; CLANG_WARN_CONSTANT_CONVERSION = YES; CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; CLANG_WARN_EMPTY_BODY = YES; CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; CLANG_WARN_INT_CONVERSION = YES; CLANG_WARN_OBJC_ROOT_CLASS = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; CLANG_WARN_UNREACHABLE_CODE = YES; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; CODE_SIGNING_REQUIRED = NO; @@ -1358,19 +1542,21 @@ ONLY_ACTIVE_ARCH = YES; PROVISIONING_PROFILE_SPECIFIER = NO_SIGNING/; STRIP_INSTALLED_PRODUCT = NO; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; SYMROOT = "${SRCROOT}/../build"; }; name = Debug; }; - 1987A3D9ED8636F007D24E1D0355EE5C /* Release */ = { + 1D6A53FBD0575A2C775BFD1EDA32A7E6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A193DEFA4D1CD24BE0FE7815E44EC372 /* Expecta.xcconfig */; + baseConfigurationReference = 88AB2BB4E1682EA0AC83820746E26F2A /* Expecta.xcconfig */; buildSettings = { + CODE_SIGN_IDENTITY = ""; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEBUG_INFORMATION_FORMAT = dwarf; DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; @@ -1383,83 +1569,60 @@ IPHONEOS_DEPLOYMENT_TARGET = 8.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; MODULEMAP_FILE = "Target Support Files/Expecta/Expecta.modulemap"; - MTL_ENABLE_DEBUG_INFO = NO; + MTL_ENABLE_DEBUG_INFO = YES; PRODUCT_NAME = Expecta; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 1E6C1DEF6DDE100AE47BA583737B4F53 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = DAC692B1EA01A75EBFF00D8E6EA157F4 /* Pods-NSDate_Utils_Tests.release.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + INFOPLIST_FILE = "Target Support Files/Pods-NSDate_Utils_Tests/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-NSDate_Utils_Tests/Pods-NSDate_Utils_Tests.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = Pods_NSDate_Utils_Tests; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; + SWIFT_VERSION = 3.0; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Release; }; - 21E19AE16A51330FB089AD5CAA7FA2F6 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 65151D31448276A43462B5C47014D6AB /* FBSnapshotTestCase.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = dwarf; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/FBSnapshotTestCase/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase.modulemap"; - MTL_ENABLE_DEBUG_INFO = YES; - PRODUCT_NAME = FBSnapshotTestCase; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 2F316A74A52502FDD1B557727441AB6C /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 6D5CBFD25D4A2E10C5E330B622094D70 /* NSDate_Utils.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = dwarf; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/NSDate_Utils/NSDate_Utils-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/NSDate_Utils/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/NSDate_Utils/NSDate_Utils.modulemap"; - MTL_ENABLE_DEBUG_INFO = YES; - PRODUCT_NAME = NSDate_Utils; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 44B8B4F5AECF4A7471513E5BBA5E9715 /* Debug */ = { + 28109566942581B0B2729E96550A4185 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 2516F32AED7B6B836E18919188343F93 /* Pods-NSDate_Utils_Example.debug.xcconfig */; buildSettings = { + CODE_SIGN_IDENTITY = ""; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; @@ -1491,11 +1654,45 @@ }; name = Debug; }; - 44CDBB6D11DE06DB64D6268622BDC47E /* Release */ = { + 2F95712EEA1D52B4D3D674D30A76FEB8 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = FC2C1F74F518EB9C29DE33BC68CA53A6 /* Specta.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/Specta/Specta-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/Specta/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/Specta/Specta.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + PRODUCT_NAME = Specta; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 34FE9531DA9AF2820790339988D5FF41 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES; CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; CLANG_CXX_LIBRARY = "libc++"; CLANG_ENABLE_MODULES = YES; @@ -1503,10 +1700,13 @@ CLANG_WARN_BOOL_CONVERSION = YES; CLANG_WARN_CONSTANT_CONVERSION = YES; CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; CLANG_WARN_EMPTY_BODY = YES; CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; CLANG_WARN_INT_CONVERSION = YES; CLANG_WARN_OBJC_ROOT_CLASS = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; CLANG_WARN_UNREACHABLE_CODE = YES; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; CODE_SIGNING_REQUIRED = NO; @@ -1531,10 +1731,83 @@ }; name = Release; }; - 4EF2C3BA2F967E6282640D8837A29F82 /* Release */ = { + 54EBA0F3C98E48F8B9E40A39C156B188 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 1624A2D778A8B11DF0D0A5C3DEDA5157 /* Pods-NSDate_Utils_Tests.debug.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + INFOPLIST_FILE = "Target Support Files/Pods-NSDate_Utils_Tests/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-NSDate_Utils_Tests/Pods-NSDate_Utils_Tests.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = Pods_NSDate_Utils_Tests; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 576B0407EB9966FD7EA4E72326BBF670 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 4726B0A5C942D8715EE5456C2B2F7DFE /* Expecta+Snapshots.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/Expecta+Snapshots/Expecta+Snapshots-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/Expecta+Snapshots/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/Expecta+Snapshots/Expecta+Snapshots.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + PRODUCT_NAME = Expecta_Snapshots; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 58D418E830C4F0916FAAAFA325A9713A /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 7F2174C918E439FD5E02CBB4C36F2EE2 /* Pods-NSDate_Utils_Example.release.xcconfig */; buildSettings = { + CODE_SIGN_IDENTITY = ""; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; @@ -1566,10 +1839,79 @@ }; name = Release; }; - 4F3CAE731DC8906B336A72A2FC9F0562 /* Release */ = { + 74E3C7CDC5C0A7D28FFE2D3938C68B88 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6D5CBFD25D4A2E10C5E330B622094D70 /* NSDate_Utils.xcconfig */; + baseConfigurationReference = 064AC83C8DEAC3FAA289184FE17B0BC6 /* DJLocalization.xcconfig */; buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/DJLocalization/DJLocalization-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/DJLocalization/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/DJLocalization/DJLocalization.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = DJLocalization; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 7C1A492515D1BE1DBF4B35525688E250 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = BAECF85159B1D09C446FE5518F3C837A /* FBSnapshotTestCase.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/FBSnapshotTestCase/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/FBSnapshotTestCase/FBSnapshotTestCase.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + PRODUCT_NAME = FBSnapshotTestCase; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 3.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + AA1F80CB6A6857976C687FB8E5F75C79 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D54BA304D115C3ADB50CC734BFD1D787 /* NSDate_Utils.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; @@ -1591,87 +1933,18 @@ PRODUCT_NAME = NSDate_Utils; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Release; }; - 629DAA12BE77994F29FFBCA57CECA2E1 /* Debug */ = { + C33455D3F4E4F89EEA34D8C746231596 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1624A2D778A8B11DF0D0A5C3DEDA5157 /* Pods-NSDate_Utils_Tests.debug.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = dwarf; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = "Target Support Files/Pods-NSDate_Utils_Tests/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-NSDate_Utils_Tests/Pods-NSDate_Utils_Tests.modulemap"; - MTL_ENABLE_DEBUG_INFO = YES; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = Pods_NSDate_Utils_Tests; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 65B871970971623AB192A39F0C7E5DC4 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = DAC692B1EA01A75EBFF00D8E6EA157F4 /* Pods-NSDate_Utils_Tests.release.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = "Target Support Files/Pods-NSDate_Utils_Tests/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-NSDate_Utils_Tests/Pods-NSDate_Utils_Tests.modulemap"; - MTL_ENABLE_DEBUG_INFO = NO; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = Pods_NSDate_Utils_Tests; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - A3AD6861A734A1A525204F9C33986B43 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 65151D31448276A43462B5C47014D6AB /* FBSnapshotTestCase.xcconfig */; + baseConfigurationReference = BAECF85159B1D09C446FE5518F3C837A /* FBSnapshotTestCase.xcconfig */; buildSettings = { + CODE_SIGN_IDENTITY = ""; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; @@ -1693,47 +1966,20 @@ PRODUCT_NAME = FBSnapshotTestCase; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; + SWIFT_VERSION = 3.0; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Release; }; - AC908661489499EDC885B35E7C7B3B4D /* Debug */ = { + D35785CCA2420CECB0EE8B86F8E02F3B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 581C5F5012EB4722B076757D7F522B51 /* Specta.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = dwarf; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/Specta/Specta-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/Specta/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/Specta/Specta.modulemap"; - MTL_ENABLE_DEBUG_INFO = YES; - PRODUCT_NAME = Specta; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - B430C6D72DD486DC1B1AADEE50082331 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 4A13AEBD3A512EC975C2DD3AF8D8931D /* Expecta+Snapshots.xcconfig */; + baseConfigurationReference = 88AB2BB4E1682EA0AC83820746E26F2A /* Expecta.xcconfig */; buildSettings = { + CODE_SIGN_IDENTITY = ""; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; @@ -1745,88 +1991,61 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_STRICT_OBJC_MSGSEND = YES; GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/Expecta+Snapshots/Expecta+Snapshots-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/Expecta+Snapshots/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/Expecta+Snapshots/Expecta+Snapshots.modulemap"; - MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = Expecta_Snapshots; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - DFA10E5A60D24B74BDDC8B09E5E844B5 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 4A13AEBD3A512EC975C2DD3AF8D8931D /* Expecta+Snapshots.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = dwarf; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/Expecta+Snapshots/Expecta+Snapshots-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/Expecta+Snapshots/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/Expecta+Snapshots/Expecta+Snapshots.modulemap"; - MTL_ENABLE_DEBUG_INFO = YES; - PRODUCT_NAME = Expecta_Snapshots; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - E4D0638570D08B8A27B34DC50D34F47E /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = A193DEFA4D1CD24BE0FE7815E44EC372 /* Expecta.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = dwarf; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; GCC_PREFIX_HEADER = "Target Support Files/Expecta/Expecta-prefix.pch"; INFOPLIST_FILE = "Target Support Files/Expecta/Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; MODULEMAP_FILE = "Target Support Files/Expecta/Expecta.modulemap"; - MTL_ENABLE_DEBUG_INFO = YES; + MTL_ENABLE_DEBUG_INFO = NO; PRODUCT_NAME = Expecta; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + E180D047DA607736FE3621CFDB3EE154 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D54BA304D115C3ADB50CC734BFD1D787 /* NSDate_Utils.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/NSDate_Utils/NSDate_Utils-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/NSDate_Utils/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/NSDate_Utils/NSDate_Utils.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + PRODUCT_NAME = NSDate_Utils; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Debug; }; - FA7FE7A0249A6393AD7E4D229CDEE6DF /* Release */ = { + F328E66523B286624975D7A59A8FD781 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 581C5F5012EB4722B076757D7F522B51 /* Specta.xcconfig */; + baseConfigurationReference = FC2C1F74F518EB9C29DE33BC68CA53A6 /* Specta.xcconfig */; buildSettings = { + CODE_SIGN_IDENTITY = ""; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; @@ -1848,20 +2067,63 @@ PRODUCT_NAME = Specta; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Release; }; + F79D38BC8465DA18EFCB6F8C3616FB5B /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 064AC83C8DEAC3FAA289184FE17B0BC6 /* DJLocalization.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/DJLocalization/DJLocalization-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/DJLocalization/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/DJLocalization/DJLocalization.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + PRODUCT_NAME = DJLocalization; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ 09381A9A84A0A8E73577B2BF10E583E5 /* Build configuration list for PBXNativeTarget "Expecta" */ = { isa = XCConfigurationList; buildConfigurations = ( - E4D0638570D08B8A27B34DC50D34F47E /* Debug */, - 1987A3D9ED8636F007D24E1D0355EE5C /* Release */, + 1D6A53FBD0575A2C775BFD1EDA32A7E6 /* Debug */, + D35785CCA2420CECB0EE8B86F8E02F3B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 0CAA7FF77580ABDC85AE8232144D25E4 /* Build configuration list for PBXNativeTarget "Pods-NSDate_Utils_Tests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 54EBA0F3C98E48F8B9E40A39C156B188 /* Debug */, + 1E6C1DEF6DDE100AE47BA583737B4F53 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -1869,8 +2131,17 @@ 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = { isa = XCConfigurationList; buildConfigurations = ( - 015A368F878AC3E2CEAE21DDE8026304 /* Debug */, - 44CDBB6D11DE06DB64D6268622BDC47E /* Release */, + 1C7D17A37D091C98D2F0DD886C3A9320 /* Debug */, + 34FE9531DA9AF2820790339988D5FF41 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 3A67E131704D0D862165B5DC57DE95E7 /* Build configuration list for PBXNativeTarget "DJLocalization" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + F79D38BC8465DA18EFCB6F8C3616FB5B /* Debug */, + 74E3C7CDC5C0A7D28FFE2D3938C68B88 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -1878,17 +2149,8 @@ 48C38E44B4EF5760ADB7DED06F65AD3A /* Build configuration list for PBXNativeTarget "Specta" */ = { isa = XCConfigurationList; buildConfigurations = ( - AC908661489499EDC885B35E7C7B3B4D /* Debug */, - FA7FE7A0249A6393AD7E4D229CDEE6DF /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 60A508A3CABC0F7DE5B7A75D51FF1C8C /* Build configuration list for PBXNativeTarget "NSDate_Utils" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 2F316A74A52502FDD1B557727441AB6C /* Debug */, - 4F3CAE731DC8906B336A72A2FC9F0562 /* Release */, + 2F95712EEA1D52B4D3D674D30A76FEB8 /* Debug */, + F328E66523B286624975D7A59A8FD781 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -1896,8 +2158,8 @@ 6785A8A6A739CF0A6DD6EB706419AD8D /* Build configuration list for PBXNativeTarget "Expecta+Snapshots" */ = { isa = XCConfigurationList; buildConfigurations = ( - DFA10E5A60D24B74BDDC8B09E5E844B5 /* Debug */, - B430C6D72DD486DC1B1AADEE50082331 /* Release */, + 576B0407EB9966FD7EA4E72326BBF670 /* Debug */, + 12DEA95637613F40D5DE9FDBC4BEEEF6 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -1905,26 +2167,26 @@ 7532F3D5919BEFE4887DF9894DEC5740 /* Build configuration list for PBXNativeTarget "FBSnapshotTestCase" */ = { isa = XCConfigurationList; buildConfigurations = ( - 21E19AE16A51330FB089AD5CAA7FA2F6 /* Debug */, - A3AD6861A734A1A525204F9C33986B43 /* Release */, + 7C1A492515D1BE1DBF4B35525688E250 /* Debug */, + C33455D3F4E4F89EEA34D8C746231596 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - AC3020FBA27A0C2372F9490341E4A872 /* Build configuration list for PBXNativeTarget "Pods-NSDate_Utils_Tests" */ = { + C36E5EDC808D4A23B75E8CCE8E14424F /* Build configuration list for PBXNativeTarget "NSDate_Utils" */ = { isa = XCConfigurationList; buildConfigurations = ( - 629DAA12BE77994F29FFBCA57CECA2E1 /* Debug */, - 65B871970971623AB192A39F0C7E5DC4 /* Release */, + E180D047DA607736FE3621CFDB3EE154 /* Debug */, + AA1F80CB6A6857976C687FB8E5F75C79 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - BE336C5BCB5246B57372A03CC996C1D0 /* Build configuration list for PBXNativeTarget "Pods-NSDate_Utils_Example" */ = { + DF5FFCA2B5CE6E17E71C0D92801A11D2 /* Build configuration list for PBXNativeTarget "Pods-NSDate_Utils_Example" */ = { isa = XCConfigurationList; buildConfigurations = ( - 44B8B4F5AECF4A7471513E5BBA5E9715 /* Debug */, - 4EF2C3BA2F967E6282640D8837A29F82 /* Release */, + 28109566942581B0B2729E96550A4185 /* Debug */, + 58D418E830C4F0916FAAAFA325A9713A /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; diff --git a/Example/Pods/Target Support Files/DJLocalization/DJLocalization-dummy.m b/Example/Pods/Target Support Files/DJLocalization/DJLocalization-dummy.m new file mode 100644 index 0000000..902f937 --- /dev/null +++ b/Example/Pods/Target Support Files/DJLocalization/DJLocalization-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_DJLocalization : NSObject +@end +@implementation PodsDummy_DJLocalization +@end diff --git a/Example/Pods/Target Support Files/DJLocalization/DJLocalization-prefix.pch b/Example/Pods/Target Support Files/DJLocalization/DJLocalization-prefix.pch new file mode 100644 index 0000000..beb2a24 --- /dev/null +++ b/Example/Pods/Target Support Files/DJLocalization/DJLocalization-prefix.pch @@ -0,0 +1,12 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + diff --git a/Example/Pods/Target Support Files/DJLocalization/DJLocalization-umbrella.h b/Example/Pods/Target Support Files/DJLocalization/DJLocalization-umbrella.h new file mode 100644 index 0000000..599bc2c --- /dev/null +++ b/Example/Pods/Target Support Files/DJLocalization/DJLocalization-umbrella.h @@ -0,0 +1,20 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + +#import "DJLocalizableString.h" +#import "DJLocalization.h" +#import "DJLocalizationSystem.h" +#import "UIStoryboard+DJLocalization.h" + +FOUNDATION_EXPORT double DJLocalizationVersionNumber; +FOUNDATION_EXPORT const unsigned char DJLocalizationVersionString[]; + diff --git a/Example/Pods/Target Support Files/DJLocalization/DJLocalization.modulemap b/Example/Pods/Target Support Files/DJLocalization/DJLocalization.modulemap new file mode 100644 index 0000000..667cc37 --- /dev/null +++ b/Example/Pods/Target Support Files/DJLocalization/DJLocalization.modulemap @@ -0,0 +1,6 @@ +framework module DJLocalization { + umbrella header "DJLocalization-umbrella.h" + + export * + module * { export * } +} diff --git a/Example/Pods/Target Support Files/DJLocalization/DJLocalization.xcconfig b/Example/Pods/Target Support Files/DJLocalization/DJLocalization.xcconfig new file mode 100644 index 0000000..0a36138 --- /dev/null +++ b/Example/Pods/Target Support Files/DJLocalization/DJLocalization.xcconfig @@ -0,0 +1,10 @@ +CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/DJLocalization +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" +OTHER_LDFLAGS = -framework "Foundation" -framework "UIKit" +PODS_BUILD_DIR = $BUILD_DIR +PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/DJLocalization +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES diff --git a/Example/Pods/Target Support Files/DJLocalization/Info.plist b/Example/Pods/Target Support Files/DJLocalization/Info.plist new file mode 100644 index 0000000..e433362 --- /dev/null +++ b/Example/Pods/Target Support Files/DJLocalization/Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.2.2 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Example/Pods/Target Support Files/Expecta/Info.plist b/Example/Pods/Target Support Files/Expecta/Info.plist index a5730fa..995c8fe 100644 --- a/Example/Pods/Target Support Files/Expecta/Info.plist +++ b/Example/Pods/Target Support Files/Expecta/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 1.0.5 + 1.0.6 CFBundleSignature ???? CFBundleVersion diff --git a/Example/Pods/Target Support Files/NSDate_Utils/Info.plist b/Example/Pods/Target Support Files/NSDate_Utils/Info.plist index 995c8fe..21a30b4 100644 --- a/Example/Pods/Target Support Files/NSDate_Utils/Info.plist +++ b/Example/Pods/Target Support Files/NSDate_Utils/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 1.0.6 + 1.1.0 CFBundleSignature ???? CFBundleVersion diff --git a/Example/Pods/Target Support Files/NSDate_Utils/NSDate_Utils.xcconfig b/Example/Pods/Target Support Files/NSDate_Utils/NSDate_Utils.xcconfig index cdfecad..dad43f6 100644 --- a/Example/Pods/Target Support Files/NSDate_Utils/NSDate_Utils.xcconfig +++ b/Example/Pods/Target Support Files/NSDate_Utils/NSDate_Utils.xcconfig @@ -1,4 +1,5 @@ CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/NSDate_Utils +FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/DJLocalization" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" PODS_BUILD_DIR = $BUILD_DIR diff --git a/Example/Pods/Target Support Files/Pods-NSDate_Utils_Example/Pods-NSDate_Utils_Example-acknowledgements.markdown b/Example/Pods/Target Support Files/Pods-NSDate_Utils_Example/Pods-NSDate_Utils_Example-acknowledgements.markdown index 5451ee0..f25f79e 100644 --- a/Example/Pods/Target Support Files/Pods-NSDate_Utils_Example/Pods-NSDate_Utils_Example-acknowledgements.markdown +++ b/Example/Pods/Target Support Files/Pods-NSDate_Utils_Example/Pods-NSDate_Utils_Example-acknowledgements.markdown @@ -1,6 +1,29 @@ # Acknowledgements This application makes use of the following third party libraries: +## DJLocalization + +Copyright (c) 2015 David Jennes + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +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. + + ## NSDate_Utils Copyright (c) 2015 Giuseppe Nucifora diff --git a/Example/Pods/Target Support Files/Pods-NSDate_Utils_Example/Pods-NSDate_Utils_Example-acknowledgements.plist b/Example/Pods/Target Support Files/Pods-NSDate_Utils_Example/Pods-NSDate_Utils_Example-acknowledgements.plist index 86d212f..3194a30 100644 --- a/Example/Pods/Target Support Files/Pods-NSDate_Utils_Example/Pods-NSDate_Utils_Example-acknowledgements.plist +++ b/Example/Pods/Target Support Files/Pods-NSDate_Utils_Example/Pods-NSDate_Utils_Example-acknowledgements.plist @@ -12,6 +12,35 @@ Type PSGroupSpecifier + + FooterText + Copyright (c) 2015 David Jennes <david.jennes@gmail.com> + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +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. + + License + MIT + Title + DJLocalization + Type + PSGroupSpecifier + FooterText Copyright (c) 2015 Giuseppe Nucifora <me@giuseppenucifora.com> diff --git a/Example/Pods/Target Support Files/Pods-NSDate_Utils_Example/Pods-NSDate_Utils_Example-frameworks.sh b/Example/Pods/Target Support Files/Pods-NSDate_Utils_Example/Pods-NSDate_Utils_Example-frameworks.sh index 4a7d818..bc7ba9e 100755 --- a/Example/Pods/Target Support Files/Pods-NSDate_Utils_Example/Pods-NSDate_Utils_Example-frameworks.sh +++ b/Example/Pods/Target Support Files/Pods-NSDate_Utils_Example/Pods-NSDate_Utils_Example-frameworks.sh @@ -6,6 +6,10 @@ mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" +# This protects against multiple targets copying the same framework dependency at the same time. The solution +# was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html +RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") + install_framework() { if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then @@ -23,9 +27,9 @@ install_framework() source="$(readlink "${source}")" fi - # use filter instead of exclude so missing patterns dont' throw errors - echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" - rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" + # Use filter instead of exclude so missing patterns don't throw errors. + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" local basename basename="$(basename -s .framework "$1")" @@ -54,6 +58,15 @@ install_framework() fi } +# Copies the dSYM of a vendored framework +install_dsym() { + local source="$1" + if [ -r "$source" ]; then + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${DWARF_DSYM_FOLDER_PATH}\"" + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${DWARF_DSYM_FOLDER_PATH}" + fi +} + # Signs a framework with the provided identity code_sign_if_enabled() { if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then @@ -76,7 +89,7 @@ strip_invalid_archs() { archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" stripped="" for arch in $archs; do - if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then + if ! [[ "${ARCHS}" == *"$arch"* ]]; then # Strip non-valid architectures in-place lipo -remove "$arch" -output "$binary" "$binary" || exit 1 stripped="$stripped $arch" @@ -89,10 +102,12 @@ strip_invalid_archs() { if [[ "$CONFIGURATION" == "Debug" ]]; then - install_framework "$BUILT_PRODUCTS_DIR/NSDate_Utils/NSDate_Utils.framework" + install_framework "${BUILT_PRODUCTS_DIR}/DJLocalization/DJLocalization.framework" + install_framework "${BUILT_PRODUCTS_DIR}/NSDate_Utils/NSDate_Utils.framework" fi if [[ "$CONFIGURATION" == "Release" ]]; then - install_framework "$BUILT_PRODUCTS_DIR/NSDate_Utils/NSDate_Utils.framework" + install_framework "${BUILT_PRODUCTS_DIR}/DJLocalization/DJLocalization.framework" + install_framework "${BUILT_PRODUCTS_DIR}/NSDate_Utils/NSDate_Utils.framework" fi if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then wait diff --git a/Example/Pods/Target Support Files/Pods-NSDate_Utils_Example/Pods-NSDate_Utils_Example-resources.sh b/Example/Pods/Target Support Files/Pods-NSDate_Utils_Example/Pods-NSDate_Utils_Example-resources.sh index 4602c68..a7df440 100755 --- a/Example/Pods/Target Support Files/Pods-NSDate_Utils_Example/Pods-NSDate_Utils_Example-resources.sh +++ b/Example/Pods/Target Support Files/Pods-NSDate_Utils_Example/Pods-NSDate_Utils_Example-resources.sh @@ -8,6 +8,10 @@ RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt XCASSET_FILES=() +# This protects against multiple targets copying the same framework dependency at the same time. The solution +# was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html +RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") + case "${TARGETED_DEVICE_FAMILY}" in 1,2) TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" @@ -21,6 +25,9 @@ case "${TARGETED_DEVICE_FAMILY}" in 3) TARGET_DEVICE_ARGS="--target-device tv" ;; + 4) + TARGET_DEVICE_ARGS="--target-device watch" + ;; *) TARGET_DEVICE_ARGS="--target-device mac" ;; @@ -41,29 +48,29 @@ EOM fi case $RESOURCE_PATH in *.storyboard) - echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" + echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} ;; *.xib) - echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" + echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} ;; *.framework) - echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" - echo "rsync -av $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" - rsync -av "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" ;; *.xcdatamodel) - echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" + echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" || true xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" ;; *.xcdatamodeld) - echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" + echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" || true xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" ;; *.xcmappingmodel) - echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" + echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" || true xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" ;; *.xcassets) @@ -71,7 +78,7 @@ EOM XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") ;; *) - echo "$RESOURCE_PATH" + echo "$RESOURCE_PATH" || true echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" ;; esac diff --git a/Example/Pods/Target Support Files/Pods-NSDate_Utils_Example/Pods-NSDate_Utils_Example.debug.xcconfig b/Example/Pods/Target Support Files/Pods-NSDate_Utils_Example/Pods-NSDate_Utils_Example.debug.xcconfig index 0e7ea35..9d472c4 100644 --- a/Example/Pods/Target Support Files/Pods-NSDate_Utils_Example/Pods-NSDate_Utils_Example.debug.xcconfig +++ b/Example/Pods/Target Support Files/Pods-NSDate_Utils_Example/Pods-NSDate_Utils_Example.debug.xcconfig @@ -1,8 +1,9 @@ -FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/NSDate_Utils" +FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/DJLocalization" "$PODS_CONFIGURATION_BUILD_DIR/NSDate_Utils" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/NSDate_Utils/NSDate_Utils.framework/Headers" -OTHER_LDFLAGS = $(inherited) -framework "NSDate_Utils" +OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/DJLocalization/DJLocalization.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/NSDate_Utils/NSDate_Utils.framework/Headers" +OTHER_LDFLAGS = $(inherited) -framework "DJLocalization" -framework "NSDate_Utils" PODS_BUILD_DIR = $BUILD_DIR PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. PODS_ROOT = ${SRCROOT}/Pods diff --git a/Example/Pods/Target Support Files/Pods-NSDate_Utils_Example/Pods-NSDate_Utils_Example.release.xcconfig b/Example/Pods/Target Support Files/Pods-NSDate_Utils_Example/Pods-NSDate_Utils_Example.release.xcconfig index 0e7ea35..9d472c4 100644 --- a/Example/Pods/Target Support Files/Pods-NSDate_Utils_Example/Pods-NSDate_Utils_Example.release.xcconfig +++ b/Example/Pods/Target Support Files/Pods-NSDate_Utils_Example/Pods-NSDate_Utils_Example.release.xcconfig @@ -1,8 +1,9 @@ -FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/NSDate_Utils" +FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/DJLocalization" "$PODS_CONFIGURATION_BUILD_DIR/NSDate_Utils" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/NSDate_Utils/NSDate_Utils.framework/Headers" -OTHER_LDFLAGS = $(inherited) -framework "NSDate_Utils" +OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/DJLocalization/DJLocalization.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/NSDate_Utils/NSDate_Utils.framework/Headers" +OTHER_LDFLAGS = $(inherited) -framework "DJLocalization" -framework "NSDate_Utils" PODS_BUILD_DIR = $BUILD_DIR PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. PODS_ROOT = ${SRCROOT}/Pods diff --git a/Example/Pods/Target Support Files/Pods-NSDate_Utils_Tests/Pods-NSDate_Utils_Tests-acknowledgements.markdown b/Example/Pods/Target Support Files/Pods-NSDate_Utils_Tests/Pods-NSDate_Utils_Tests-acknowledgements.markdown index 220cf1e..110a434 100644 --- a/Example/Pods/Target Support Files/Pods-NSDate_Utils_Tests/Pods-NSDate_Utils_Tests-acknowledgements.markdown +++ b/Example/Pods/Target Support Files/Pods-NSDate_Utils_Tests/Pods-NSDate_Utils_Tests-acknowledgements.markdown @@ -1,6 +1,29 @@ # Acknowledgements This application makes use of the following third party libraries: +## DJLocalization + +Copyright (c) 2015 David Jennes + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +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. + + ## NSDate_Utils Copyright (c) 2015 Giuseppe Nucifora diff --git a/Example/Pods/Target Support Files/Pods-NSDate_Utils_Tests/Pods-NSDate_Utils_Tests-acknowledgements.plist b/Example/Pods/Target Support Files/Pods-NSDate_Utils_Tests/Pods-NSDate_Utils_Tests-acknowledgements.plist index 962c8df..482846f 100644 --- a/Example/Pods/Target Support Files/Pods-NSDate_Utils_Tests/Pods-NSDate_Utils_Tests-acknowledgements.plist +++ b/Example/Pods/Target Support Files/Pods-NSDate_Utils_Tests/Pods-NSDate_Utils_Tests-acknowledgements.plist @@ -12,6 +12,35 @@ Type PSGroupSpecifier + + FooterText + Copyright (c) 2015 David Jennes <david.jennes@gmail.com> + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +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. + + License + MIT + Title + DJLocalization + Type + PSGroupSpecifier + FooterText Copyright (c) 2015 Giuseppe Nucifora <me@giuseppenucifora.com> diff --git a/Example/Pods/Target Support Files/Pods-NSDate_Utils_Tests/Pods-NSDate_Utils_Tests-frameworks.sh b/Example/Pods/Target Support Files/Pods-NSDate_Utils_Tests/Pods-NSDate_Utils_Tests-frameworks.sh index 67c7b55..e666236 100755 --- a/Example/Pods/Target Support Files/Pods-NSDate_Utils_Tests/Pods-NSDate_Utils_Tests-frameworks.sh +++ b/Example/Pods/Target Support Files/Pods-NSDate_Utils_Tests/Pods-NSDate_Utils_Tests-frameworks.sh @@ -6,6 +6,10 @@ mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" +# This protects against multiple targets copying the same framework dependency at the same time. The solution +# was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html +RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") + install_framework() { if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then @@ -23,9 +27,9 @@ install_framework() source="$(readlink "${source}")" fi - # use filter instead of exclude so missing patterns dont' throw errors - echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" - rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" + # Use filter instead of exclude so missing patterns don't throw errors. + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" local basename basename="$(basename -s .framework "$1")" @@ -54,6 +58,15 @@ install_framework() fi } +# Copies the dSYM of a vendored framework +install_dsym() { + local source="$1" + if [ -r "$source" ]; then + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${DWARF_DSYM_FOLDER_PATH}\"" + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${DWARF_DSYM_FOLDER_PATH}" + fi +} + # Signs a framework with the provided identity code_sign_if_enabled() { if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then @@ -76,7 +89,7 @@ strip_invalid_archs() { archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" stripped="" for arch in $archs; do - if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then + if ! [[ "${ARCHS}" == *"$arch"* ]]; then # Strip non-valid architectures in-place lipo -remove "$arch" -output "$binary" "$binary" || exit 1 stripped="$stripped $arch" @@ -89,18 +102,20 @@ strip_invalid_archs() { if [[ "$CONFIGURATION" == "Debug" ]]; then - install_framework "$BUILT_PRODUCTS_DIR/NSDate_Utils/NSDate_Utils.framework" - install_framework "$BUILT_PRODUCTS_DIR/Expecta/Expecta.framework" - install_framework "$BUILT_PRODUCTS_DIR/Expecta+Snapshots/Expecta_Snapshots.framework" - install_framework "$BUILT_PRODUCTS_DIR/FBSnapshotTestCase/FBSnapshotTestCase.framework" - install_framework "$BUILT_PRODUCTS_DIR/Specta/Specta.framework" + install_framework "${BUILT_PRODUCTS_DIR}/DJLocalization/DJLocalization.framework" + install_framework "${BUILT_PRODUCTS_DIR}/NSDate_Utils/NSDate_Utils.framework" + install_framework "${BUILT_PRODUCTS_DIR}/Expecta/Expecta.framework" + install_framework "${BUILT_PRODUCTS_DIR}/Expecta+Snapshots/Expecta_Snapshots.framework" + install_framework "${BUILT_PRODUCTS_DIR}/FBSnapshotTestCase/FBSnapshotTestCase.framework" + install_framework "${BUILT_PRODUCTS_DIR}/Specta/Specta.framework" fi if [[ "$CONFIGURATION" == "Release" ]]; then - install_framework "$BUILT_PRODUCTS_DIR/NSDate_Utils/NSDate_Utils.framework" - install_framework "$BUILT_PRODUCTS_DIR/Expecta/Expecta.framework" - install_framework "$BUILT_PRODUCTS_DIR/Expecta+Snapshots/Expecta_Snapshots.framework" - install_framework "$BUILT_PRODUCTS_DIR/FBSnapshotTestCase/FBSnapshotTestCase.framework" - install_framework "$BUILT_PRODUCTS_DIR/Specta/Specta.framework" + install_framework "${BUILT_PRODUCTS_DIR}/DJLocalization/DJLocalization.framework" + install_framework "${BUILT_PRODUCTS_DIR}/NSDate_Utils/NSDate_Utils.framework" + install_framework "${BUILT_PRODUCTS_DIR}/Expecta/Expecta.framework" + install_framework "${BUILT_PRODUCTS_DIR}/Expecta+Snapshots/Expecta_Snapshots.framework" + install_framework "${BUILT_PRODUCTS_DIR}/FBSnapshotTestCase/FBSnapshotTestCase.framework" + install_framework "${BUILT_PRODUCTS_DIR}/Specta/Specta.framework" fi if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then wait diff --git a/Example/Pods/Target Support Files/Pods-NSDate_Utils_Tests/Pods-NSDate_Utils_Tests-resources.sh b/Example/Pods/Target Support Files/Pods-NSDate_Utils_Tests/Pods-NSDate_Utils_Tests-resources.sh index 4602c68..a7df440 100755 --- a/Example/Pods/Target Support Files/Pods-NSDate_Utils_Tests/Pods-NSDate_Utils_Tests-resources.sh +++ b/Example/Pods/Target Support Files/Pods-NSDate_Utils_Tests/Pods-NSDate_Utils_Tests-resources.sh @@ -8,6 +8,10 @@ RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt XCASSET_FILES=() +# This protects against multiple targets copying the same framework dependency at the same time. The solution +# was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html +RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") + case "${TARGETED_DEVICE_FAMILY}" in 1,2) TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" @@ -21,6 +25,9 @@ case "${TARGETED_DEVICE_FAMILY}" in 3) TARGET_DEVICE_ARGS="--target-device tv" ;; + 4) + TARGET_DEVICE_ARGS="--target-device watch" + ;; *) TARGET_DEVICE_ARGS="--target-device mac" ;; @@ -41,29 +48,29 @@ EOM fi case $RESOURCE_PATH in *.storyboard) - echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" + echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} ;; *.xib) - echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" + echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} ;; *.framework) - echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" - echo "rsync -av $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" - rsync -av "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" ;; *.xcdatamodel) - echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" + echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" || true xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" ;; *.xcdatamodeld) - echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" + echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" || true xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" ;; *.xcmappingmodel) - echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" + echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" || true xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" ;; *.xcassets) @@ -71,7 +78,7 @@ EOM XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") ;; *) - echo "$RESOURCE_PATH" + echo "$RESOURCE_PATH" || true echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" ;; esac diff --git a/Example/Pods/Target Support Files/Pods-NSDate_Utils_Tests/Pods-NSDate_Utils_Tests.debug.xcconfig b/Example/Pods/Target Support Files/Pods-NSDate_Utils_Tests/Pods-NSDate_Utils_Tests.debug.xcconfig index 9301a46..b83cf91 100644 --- a/Example/Pods/Target Support Files/Pods-NSDate_Utils_Tests/Pods-NSDate_Utils_Tests.debug.xcconfig +++ b/Example/Pods/Target Support Files/Pods-NSDate_Utils_Tests/Pods-NSDate_Utils_Tests.debug.xcconfig @@ -1,10 +1,11 @@ EMBEDDED_CONTENT_CONTAINS_SWIFT = YES -FRAMEWORK_SEARCH_PATHS = $(inherited) $(PLATFORM_DIR)/Developer/Library/Frameworks "$PODS_CONFIGURATION_BUILD_DIR/Expecta" "$PODS_CONFIGURATION_BUILD_DIR/Expecta+Snapshots" "$PODS_CONFIGURATION_BUILD_DIR/FBSnapshotTestCase" "$PODS_CONFIGURATION_BUILD_DIR/NSDate_Utils" "$PODS_CONFIGURATION_BUILD_DIR/Specta" +FRAMEWORK_SEARCH_PATHS = $(inherited) $(PLATFORM_DIR)/Developer/Library/Frameworks "$PODS_CONFIGURATION_BUILD_DIR/DJLocalization" "$PODS_CONFIGURATION_BUILD_DIR/Expecta" "$PODS_CONFIGURATION_BUILD_DIR/Expecta+Snapshots" "$PODS_CONFIGURATION_BUILD_DIR/FBSnapshotTestCase" "$PODS_CONFIGURATION_BUILD_DIR/NSDate_Utils" "$PODS_CONFIGURATION_BUILD_DIR/Specta" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/Expecta+Snapshots/Expecta_Snapshots.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Expecta/Expecta.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FBSnapshotTestCase/FBSnapshotTestCase.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/NSDate_Utils/NSDate_Utils.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Specta/Specta.framework/Headers" -OTHER_LDFLAGS = $(inherited) -framework "Expecta" -framework "Expecta_Snapshots" -framework "FBSnapshotTestCase" -framework "NSDate_Utils" -framework "Specta" +OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/DJLocalization/DJLocalization.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Expecta+Snapshots/Expecta_Snapshots.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Expecta/Expecta.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FBSnapshotTestCase/FBSnapshotTestCase.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/NSDate_Utils/NSDate_Utils.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Specta/Specta.framework/Headers" +OTHER_LDFLAGS = $(inherited) -framework "DJLocalization" -framework "Expecta" -framework "Expecta_Snapshots" -framework "FBSnapshotTestCase" -framework "NSDate_Utils" -framework "Specta" OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" PODS_BUILD_DIR = $BUILD_DIR PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. PODS_ROOT = ${SRCROOT}/Pods diff --git a/Example/Pods/Target Support Files/Pods-NSDate_Utils_Tests/Pods-NSDate_Utils_Tests.release.xcconfig b/Example/Pods/Target Support Files/Pods-NSDate_Utils_Tests/Pods-NSDate_Utils_Tests.release.xcconfig index 9301a46..b83cf91 100644 --- a/Example/Pods/Target Support Files/Pods-NSDate_Utils_Tests/Pods-NSDate_Utils_Tests.release.xcconfig +++ b/Example/Pods/Target Support Files/Pods-NSDate_Utils_Tests/Pods-NSDate_Utils_Tests.release.xcconfig @@ -1,10 +1,11 @@ EMBEDDED_CONTENT_CONTAINS_SWIFT = YES -FRAMEWORK_SEARCH_PATHS = $(inherited) $(PLATFORM_DIR)/Developer/Library/Frameworks "$PODS_CONFIGURATION_BUILD_DIR/Expecta" "$PODS_CONFIGURATION_BUILD_DIR/Expecta+Snapshots" "$PODS_CONFIGURATION_BUILD_DIR/FBSnapshotTestCase" "$PODS_CONFIGURATION_BUILD_DIR/NSDate_Utils" "$PODS_CONFIGURATION_BUILD_DIR/Specta" +FRAMEWORK_SEARCH_PATHS = $(inherited) $(PLATFORM_DIR)/Developer/Library/Frameworks "$PODS_CONFIGURATION_BUILD_DIR/DJLocalization" "$PODS_CONFIGURATION_BUILD_DIR/Expecta" "$PODS_CONFIGURATION_BUILD_DIR/Expecta+Snapshots" "$PODS_CONFIGURATION_BUILD_DIR/FBSnapshotTestCase" "$PODS_CONFIGURATION_BUILD_DIR/NSDate_Utils" "$PODS_CONFIGURATION_BUILD_DIR/Specta" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/Expecta+Snapshots/Expecta_Snapshots.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Expecta/Expecta.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FBSnapshotTestCase/FBSnapshotTestCase.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/NSDate_Utils/NSDate_Utils.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Specta/Specta.framework/Headers" -OTHER_LDFLAGS = $(inherited) -framework "Expecta" -framework "Expecta_Snapshots" -framework "FBSnapshotTestCase" -framework "NSDate_Utils" -framework "Specta" +OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/DJLocalization/DJLocalization.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Expecta+Snapshots/Expecta_Snapshots.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Expecta/Expecta.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/FBSnapshotTestCase/FBSnapshotTestCase.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/NSDate_Utils/NSDate_Utils.framework/Headers" -iquote "$PODS_CONFIGURATION_BUILD_DIR/Specta/Specta.framework/Headers" +OTHER_LDFLAGS = $(inherited) -framework "DJLocalization" -framework "Expecta" -framework "Expecta_Snapshots" -framework "FBSnapshotTestCase" -framework "NSDate_Utils" -framework "Specta" OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" PODS_BUILD_DIR = $BUILD_DIR PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. PODS_ROOT = ${SRCROOT}/Pods diff --git a/NSDate_Utils.podspec b/NSDate_Utils.podspec index 96e930a..b2d610a 100644 --- a/NSDate_Utils.podspec +++ b/NSDate_Utils.podspec @@ -8,7 +8,7 @@ Pod::Spec.new do |s| s.name = "NSDate_Utils" - s.version = "1.0.6" + s.version = "1.1.0" s.summary = "NSDate_Utils is a NSDate category that helps date managements. For example NSString to NSDate, NSDate to NSString,NSSdate comparisons" # This description is used to generate tags and improve search results. @@ -25,9 +25,10 @@ s.summary = "NSDate_Utils is a NSDate category that helps date manageme s.source = { :git => "https://github.com/giuseppenucifora/NSDate_Utils.git", :tag => s.version.to_s } # s.social_media_url = 'https://twitter.com/' - s.platform = :ios, '7.0' + s.platform = :ios, '8.0' s.requires_arc = true + s.dependency 'DJLocalization' s.source_files = 'Pod/Classes/**/*' end diff --git a/Pod/Classes/NSDate+NSDate_Util.h b/Pod/Classes/NSDate+NSDate_Util.h index 84fe9b2..255a61c 100755 --- a/Pod/Classes/NSDate+NSDate_Util.h +++ b/Pod/Classes/NSDate+NSDate_Util.h @@ -94,6 +94,9 @@ static NSString * _Nonnull kNSDateHelperFormatSQLDateWithTimeZoneIT_shashSeparat + (NSTimeInterval) timeIntervalFromMinutes:(NSUInteger) minutes; + (NSTimeInterval) timeIntervalFromHours:(NSUInteger) minutes; ++ (NSString * _Nonnull) stringFromWeekday :(NSInteger) weekday; ++ (NSString * _Nonnull) stringMonth :(NSInteger) month; + - (NSDate * _Nonnull) dateToNearestMinutes:(NSInteger)minutes; - (NSDate * _Nonnull) dateByAddingMinutes:(NSInteger) dMinutes; diff --git a/Pod/Classes/NSDate+NSDate_Util.m b/Pod/Classes/NSDate+NSDate_Util.m index a3aa296..8070469 100755 --- a/Pod/Classes/NSDate+NSDate_Util.m +++ b/Pod/Classes/NSDate+NSDate_Util.m @@ -6,6 +6,7 @@ // #import "NSDate+NSDate_Util.h" +#import #define DATE_COMPONENTS (NSCalendarUnitEra | NSCalendarUnitYear| NSCalendarUnitMonth | NSCalendarUnitDay | NSCalendarUnitWeekOfMonth | NSCalendarUnitHour | NSCalendarUnitMinute | NSCalendarUnitSecond | NSCalendarUnitWeekday | NSCalendarUnitWeekdayOrdinal) #define CURRENT_CALENDAR [NSCalendar currentCalendar] @@ -263,45 +264,45 @@ static NSDateFormatter *_displayFormatter = nil; if (time < 60) { if (uppercaseString) { - return [NSLocalizedString(@"Poco fa", nil) uppercaseString]; + return [DJLocalizedString(@"Poco fa", nil) uppercaseString]; } - return NSLocalizedString(@"Poco fa", nil); + return DJLocalizedString(@"Poco fa", nil); } else if (time < 3600) { int diff = round(time / 60); if (diff == 1) { if (uppercaseString) { - return [NSLocalizedString(@"1 Minuto fa", nil) uppercaseString]; + return [DJLocalizedString(@"1 Minuto fa", nil) uppercaseString]; } - return NSLocalizedString(@"1 Minuto fa", nil); + return DJLocalizedString(@"1 Minuto fa", nil); } if (uppercaseString) { - return [[NSString stringWithFormat:@"%d %@", diff, NSLocalizedString(@"Minuti fa", nil)] uppercaseString]; + return [[NSString stringWithFormat:@"%d %@", diff, DJLocalizedString(@"Minuti fa", nil)] uppercaseString]; } - return [NSString stringWithFormat:@"%d %@", diff, NSLocalizedString(@"Minuti fa", nil)]; + return [NSString stringWithFormat:@"%d %@", diff, DJLocalizedString(@"Minuti fa", nil)]; } else if (time < 86400) { int diff = round(time / 60 / 60); if (diff == 1) { if (uppercaseString) { - return [NSLocalizedString(@"1 Ora fa", nil) uppercaseString]; + return [DJLocalizedString(@"1 Ora fa", nil) uppercaseString]; } - return NSLocalizedString(@"1 Ora fa", nil); + return DJLocalizedString(@"1 Ora fa", nil); } if (uppercaseString) { - return [[NSString stringWithFormat:@"%d %@", diff, NSLocalizedString(@"Ore fa", nil)] uppercaseString]; + return [[NSString stringWithFormat:@"%d %@", diff, DJLocalizedString(@"Ore fa", nil)] uppercaseString]; } - return [NSString stringWithFormat:@"%d %@", diff, NSLocalizedString(@"Ore fa", nil)]; + return [NSString stringWithFormat:@"%d %@", diff, DJLocalizedString(@"Ore fa", nil)]; } else { NSInteger diff = round(time / 60 / 60 / 24); switch (diff) { case 1:{ if (uppercaseString) { - return [[NSString stringWithFormat:@"%@",NSLocalizedString(@"Ieri", nil)] uppercaseString]; + return [[NSString stringWithFormat:@"%@",DJLocalizedString(@"Ieri", nil)] uppercaseString]; } - return [NSString stringWithFormat:@"%@",NSLocalizedString(@"Ieri", nil)]; + return [NSString stringWithFormat:@"%@",DJLocalizedString(@"Ieri", nil)]; } break; case 2: @@ -311,9 +312,9 @@ static NSDateFormatter *_displayFormatter = nil; case 6: { if (uppercaseString) { - return [[NSString stringWithFormat:@"%ld %@", (long)diff, NSLocalizedString(@"Giorni fa", nil)] uppercaseString]; + return [[NSString stringWithFormat:@"%ld %@", (long)diff, DJLocalizedString(@"Giorni fa", nil)] uppercaseString]; } - return [NSString stringWithFormat:@"%ld %@", (long)diff, NSLocalizedString(@"Giorni fa", nil)]; + return [NSString stringWithFormat:@"%ld %@", (long)diff, DJLocalizedString(@"Giorni fa", nil)]; } break; default:{ @@ -321,26 +322,26 @@ static NSDateFormatter *_displayFormatter = nil; switch (diffWeeks) { case 1:{ if (uppercaseString) { - return [[NSString stringWithFormat:@"%ld %@",(long)diffWeeks,NSLocalizedString(@"Settimana fa", nil)] uppercaseString]; + return [[NSString stringWithFormat:@"%ld %@",(long)diffWeeks,DJLocalizedString(@"Settimana fa", nil)] uppercaseString]; } - return [NSString stringWithFormat:@"%ld %@",(long)diffWeeks,NSLocalizedString(@"Settimana fa", nil)]; + return [NSString stringWithFormat:@"%ld %@",(long)diffWeeks,DJLocalizedString(@"Settimana fa", nil)]; } break; case 2: case 3: if (uppercaseString) { - return [[NSString stringWithFormat:@"%ld %@",(long)diffWeeks,NSLocalizedString(@"Settimane fa", nil)] uppercaseString]; + return [[NSString stringWithFormat:@"%ld %@",(long)diffWeeks,DJLocalizedString(@"Settimane fa", nil)] uppercaseString]; } - return [NSString stringWithFormat:@"%ld %@",(long)diffWeeks,NSLocalizedString(@"Settimane fa", nil)]; + return [NSString stringWithFormat:@"%ld %@",(long)diffWeeks,DJLocalizedString(@"Settimane fa", nil)]; break; default:{ NSInteger diffMounth = round(time / 60 /60 / 24 / 30); switch (diffMounth) { case 1: { if (uppercaseString) { - return [[NSString stringWithFormat:@"%ld %@",(long)diffMounth,NSLocalizedString(@"Mese fa", nil)] uppercaseString]; + return [[NSString stringWithFormat:@"%ld %@",(long)diffMounth,DJLocalizedString(@"Mese fa", nil)] uppercaseString]; } - return [NSString stringWithFormat:@"%ld %@",(long)diffMounth,NSLocalizedString(@"Mese fa", nil)]; + return [NSString stringWithFormat:@"%ld %@",(long)diffMounth,DJLocalizedString(@"Mese fa", nil)]; } break; case 2: @@ -354,9 +355,9 @@ static NSDateFormatter *_displayFormatter = nil; case 10: case 11:{ if (uppercaseString) { - return [[NSString stringWithFormat:@"%ld %@",(long)diffMounth,NSLocalizedString(@"Mesi fa", nil)] uppercaseString]; + return [[NSString stringWithFormat:@"%ld %@",(long)diffMounth,DJLocalizedString(@"Mesi fa", nil)] uppercaseString]; } - return [NSString stringWithFormat:@"%ld %@",(long)diffMounth,NSLocalizedString(@"Mesi fa", nil)]; + return [NSString stringWithFormat:@"%ld %@",(long)diffMounth,DJLocalizedString(@"Mesi fa", nil)]; } break; @@ -365,15 +366,15 @@ static NSDateFormatter *_displayFormatter = nil; switch (diffYears) { case 1: if (uppercaseString) { - return [[NSString stringWithFormat:@"%ld %@",(long)diffYears,NSLocalizedString(@"Anno fa", nil)] uppercaseString]; + return [[NSString stringWithFormat:@"%ld %@",(long)diffYears,DJLocalizedString(@"Anno fa", nil)] uppercaseString]; } - return [NSString stringWithFormat:@"%ld %@",(long)diffYears,NSLocalizedString(@"Anno fa", nil)]; + return [NSString stringWithFormat:@"%ld %@",(long)diffYears,DJLocalizedString(@"Anno fa", nil)]; break; default:{ if (uppercaseString) { - return [[NSString stringWithFormat:@"%ld %@",(long)diffYears,NSLocalizedString(@"Anni fa", nil)] uppercaseString]; + return [[NSString stringWithFormat:@"%ld %@",(long)diffYears,DJLocalizedString(@"Anni fa", nil)] uppercaseString]; } - return [NSString stringWithFormat:@"%ld %@",(long)diffYears,NSLocalizedString(@"Anni fa", nil)]; + return [NSString stringWithFormat:@"%ld %@",(long)diffYears,DJLocalizedString(@"Anni fa", nil)]; } break; } @@ -391,45 +392,45 @@ static NSDateFormatter *_displayFormatter = nil; else { if (time < 60) { if (uppercaseString) { - return [NSLocalizedString(@"Tra poco", nil) uppercaseString]; + return [DJLocalizedString(@"Tra poco", nil) uppercaseString]; } - return NSLocalizedString(@"Tra poco", nil); + return DJLocalizedString(@"Tra poco", nil); } else if (time < 3600) { int diff = round(time / 60); if (diff == 1) { if (uppercaseString) { - return [NSLocalizedString(@"Tra 1 minuto", nil) uppercaseString]; + return [DJLocalizedString(@"Tra 1 minuto", nil) uppercaseString]; } - return NSLocalizedString(@"Tra 1 minuto", nil); + return DJLocalizedString(@"Tra 1 minuto", nil); } if (uppercaseString) { - return [[NSString stringWithFormat:NSLocalizedString(@"Tra %d minuti", nil), diff] uppercaseString]; + return [[NSString stringWithFormat:DJLocalizedString(@"Tra %d minuti", nil), diff] uppercaseString]; } - return [NSString stringWithFormat:NSLocalizedString(@"Tra %d minuti", nil), diff]; + return [NSString stringWithFormat:DJLocalizedString(@"Tra %d minuti", nil), diff]; } else if (time < 86400) { int diff = round(time / 60 / 60); if (diff == 1) { if (uppercaseString) { - return [NSLocalizedString(@"Tra 1 ora", nil) uppercaseString]; + return [DJLocalizedString(@"Tra 1 ora", nil) uppercaseString]; } - return NSLocalizedString(@"Tra 1 ora", nil); + return DJLocalizedString(@"Tra 1 ora", nil); } if (uppercaseString) { - return [[NSString stringWithFormat:NSLocalizedString(@"Tra %d ore", nil), diff] uppercaseString]; + return [[NSString stringWithFormat:DJLocalizedString(@"Tra %d ore", nil), diff] uppercaseString]; } - return [NSString stringWithFormat:NSLocalizedString(@"Tra %d ore", nil), diff]; + return [NSString stringWithFormat:DJLocalizedString(@"Tra %d ore", nil), diff]; } else { NSInteger diff = round(time / 60 / 60 / 24); switch (diff) { case 1:{ if (uppercaseString) { - return [[NSString stringWithFormat:@"%@",NSLocalizedString(@"Domani", nil)] uppercaseString]; + return [[NSString stringWithFormat:@"%@",DJLocalizedString(@"Domani", nil)] uppercaseString]; } - return [NSString stringWithFormat:@"%@",NSLocalizedString(@"Domani", nil)]; + return [NSString stringWithFormat:@"%@",DJLocalizedString(@"Domani", nil)]; } break; case 2: @@ -439,9 +440,9 @@ static NSDateFormatter *_displayFormatter = nil; case 6: { if (uppercaseString) { - return [[NSString stringWithFormat:NSLocalizedString(@"Tra %d giorni", nil), diff] uppercaseString]; + return [[NSString stringWithFormat:DJLocalizedString(@"Tra %d giorni", nil), diff] uppercaseString]; } - return [NSString stringWithFormat:NSLocalizedString(@"Tra %d giorni", nil), diff]; + return [NSString stringWithFormat:DJLocalizedString(@"Tra %d giorni", nil), diff]; } break; default:{ @@ -449,26 +450,26 @@ static NSDateFormatter *_displayFormatter = nil; switch (diffWeeks) { case 1:{ if (uppercaseString) { - return [[NSString stringWithFormat:@"%ld %@",(long)diffWeeks,NSLocalizedString(@"Tra 1 Settimana", nil)] uppercaseString]; + return [[NSString stringWithFormat:@"%ld %@",(long)diffWeeks,DJLocalizedString(@"Tra 1 Settimana", nil)] uppercaseString]; } - return [NSString stringWithFormat:@"%ld %@",(long)diffWeeks,NSLocalizedString(@"Tra 1 Settimana", nil)]; + return [NSString stringWithFormat:@"%ld %@",(long)diffWeeks,DJLocalizedString(@"Tra 1 Settimana", nil)]; } break; case 2: case 3: if (uppercaseString) { - return [[NSString stringWithFormat:NSLocalizedString(@"Tra %d settimane", nil), diff] uppercaseString]; + return [[NSString stringWithFormat:DJLocalizedString(@"Tra %d settimane", nil), diff] uppercaseString]; } - return [NSString stringWithFormat:NSLocalizedString(@"Tra %d settimane", nil), diff]; + return [NSString stringWithFormat:DJLocalizedString(@"Tra %d settimane", nil), diff]; break; default:{ NSInteger diffMounth = round(time / 60 /60 / 24 / 30); switch (diffMounth) { case 1: { if (uppercaseString) { - return [[NSString stringWithFormat:NSLocalizedString(@"Tra %d mese", nil), diff] uppercaseString]; + return [[NSString stringWithFormat:DJLocalizedString(@"Tra %d mese", nil), diff] uppercaseString]; } - return [NSString stringWithFormat:NSLocalizedString(@"Tra %d mese", nil), diff]; + return [NSString stringWithFormat:DJLocalizedString(@"Tra %d mese", nil), diff]; } break; case 2: @@ -482,9 +483,9 @@ static NSDateFormatter *_displayFormatter = nil; case 10: case 11:{ if (uppercaseString) { - return [[NSString stringWithFormat:NSLocalizedString(@"Tra %d mesi", nil), diff] uppercaseString]; + return [[NSString stringWithFormat:DJLocalizedString(@"Tra %d mesi", nil), diff] uppercaseString]; } - return [NSString stringWithFormat:NSLocalizedString(@"Tra %d mesi", nil), diff]; + return [NSString stringWithFormat:DJLocalizedString(@"Tra %d mesi", nil), diff]; } break; @@ -493,15 +494,15 @@ static NSDateFormatter *_displayFormatter = nil; switch (diffYears) { case 1: if (uppercaseString) { - return [[NSString stringWithFormat:NSLocalizedString(@"Tra %d anno", nil), diff] uppercaseString]; + return [[NSString stringWithFormat:DJLocalizedString(@"Tra %d anno", nil), diff] uppercaseString]; } - return [NSString stringWithFormat:NSLocalizedString(@"Tra %d anno", nil), diff]; + return [NSString stringWithFormat:DJLocalizedString(@"Tra %d anno", nil), diff]; break; default:{ if (uppercaseString) { - return [[NSString stringWithFormat:NSLocalizedString(@"Tra %d anni", nil), diff] uppercaseString]; + return [[NSString stringWithFormat:DJLocalizedString(@"Tra %d anni", nil), diff] uppercaseString]; } - return [NSString stringWithFormat:NSLocalizedString(@"Tra %d anni", nil), diff]; + return [NSString stringWithFormat:DJLocalizedString(@"Tra %d anni", nil), diff]; } break; } @@ -721,10 +722,10 @@ static NSDateFormatter *_displayFormatter = nil; NSString *text = nil; switch (daysAgo) { case 0: - text = NSLocalizedString(@"Today", nil); + text = DJLocalizedString(@"Today", nil); break; case 1: - text = NSLocalizedString(@"Yesterday", nil); + text = DJLocalizedString(@"Yesterday", nil); break; default: text = [NSString stringWithFormat:@"%ld days ago", (long)daysAgo]; @@ -881,45 +882,45 @@ static NSDateFormatter *_displayFormatter = nil; if (time < 60) { if (uppercaseString) { - return [NSLocalizedString(@"Poco fa", nil) uppercaseString]; + return [DJLocalizedString(@"Poco fa", nil) uppercaseString]; } - return NSLocalizedString(@"Poco fa", nil); + return DJLocalizedString(@"Poco fa", nil); } else if (time < 3600) { int diff = round(time / 60); if (diff == 1) { if (uppercaseString) { - return [NSLocalizedString(@"1 Minuto fa", nil) uppercaseString]; + return [DJLocalizedString(@"1 Minuto fa", nil) uppercaseString]; } - return NSLocalizedString(@"1 Minuto fa", nil); + return DJLocalizedString(@"1 Minuto fa", nil); } if (uppercaseString) { - return [[NSString stringWithFormat:@"%d %@", diff, NSLocalizedString(@"Minuti fa", nil)] uppercaseString]; + return [[NSString stringWithFormat:@"%d %@", diff, DJLocalizedString(@"Minuti fa", nil)] uppercaseString]; } - return [NSString stringWithFormat:@"%d %@", diff, NSLocalizedString(@"Minuti fa", nil)]; + return [NSString stringWithFormat:@"%d %@", diff, DJLocalizedString(@"Minuti fa", nil)]; } else if (time < 86400) { int diff = round(time / 60 / 60); if (diff == 1) { if (uppercaseString) { - return [NSLocalizedString(@"1 Ora fa", nil) uppercaseString]; + return [DJLocalizedString(@"1 Ora fa", nil) uppercaseString]; } - return NSLocalizedString(@"1 Ora fa", nil); + return DJLocalizedString(@"1 Ora fa", nil); } if (uppercaseString) { - return [[NSString stringWithFormat:@"%d %@", diff, NSLocalizedString(@"Ore fa", nil)] uppercaseString]; + return [[NSString stringWithFormat:@"%d %@", diff, DJLocalizedString(@"Ore fa", nil)] uppercaseString]; } - return [NSString stringWithFormat:@"%d %@", diff, NSLocalizedString(@"Ore fa", nil)]; + return [NSString stringWithFormat:@"%d %@", diff, DJLocalizedString(@"Ore fa", nil)]; } else { NSInteger diff = round(time / 60 / 60 / 24); switch (diff) { case 1:{ if (uppercaseString) { - return [[NSString stringWithFormat:@"%@",NSLocalizedString(@"Ieri", nil)] uppercaseString]; + return [[NSString stringWithFormat:@"%@",DJLocalizedString(@"Ieri", nil)] uppercaseString]; } - return [NSString stringWithFormat:@"%@",NSLocalizedString(@"Ieri", nil)]; + return [NSString stringWithFormat:@"%@",DJLocalizedString(@"Ieri", nil)]; } break; case 2: @@ -929,9 +930,9 @@ static NSDateFormatter *_displayFormatter = nil; case 6: { if (uppercaseString) { - return [[NSString stringWithFormat:@"%ld %@", (long)diff, NSLocalizedString(@"Giorni fa", nil)] uppercaseString]; + return [[NSString stringWithFormat:@"%ld %@", (long)diff, DJLocalizedString(@"Giorni fa", nil)] uppercaseString]; } - return [NSString stringWithFormat:@"%ld %@", (long)diff, NSLocalizedString(@"Giorni fa", nil)]; + return [NSString stringWithFormat:@"%ld %@", (long)diff, DJLocalizedString(@"Giorni fa", nil)]; } break; default:{ @@ -939,26 +940,26 @@ static NSDateFormatter *_displayFormatter = nil; switch (diffWeeks) { case 1:{ if (uppercaseString) { - return [[NSString stringWithFormat:@"%ld %@",(long)diffWeeks,NSLocalizedString(@"Settimana fa", nil)] uppercaseString]; + return [[NSString stringWithFormat:@"%ld %@",(long)diffWeeks,DJLocalizedString(@"Settimana fa", nil)] uppercaseString]; } - return [NSString stringWithFormat:@"%ld %@",(long)diffWeeks,NSLocalizedString(@"Settimana fa", nil)]; + return [NSString stringWithFormat:@"%ld %@",(long)diffWeeks,DJLocalizedString(@"Settimana fa", nil)]; } break; case 2: case 3: if (uppercaseString) { - return [[NSString stringWithFormat:@"%ld %@",(long)diffWeeks,NSLocalizedString(@"Settimane fa", nil)] uppercaseString]; + return [[NSString stringWithFormat:@"%ld %@",(long)diffWeeks,DJLocalizedString(@"Settimane fa", nil)] uppercaseString]; } - return [NSString stringWithFormat:@"%ld %@",(long)diffWeeks,NSLocalizedString(@"Settimane fa", nil)]; + return [NSString stringWithFormat:@"%ld %@",(long)diffWeeks,DJLocalizedString(@"Settimane fa", nil)]; break; default:{ NSInteger diffMounth = round(time / 60 /60 / 24 / 30); switch (diffMounth) { case 1: { if (uppercaseString) { - return [[NSString stringWithFormat:@"%ld %@",(long)diffMounth,NSLocalizedString(@"Mese fa", nil)] uppercaseString]; + return [[NSString stringWithFormat:@"%ld %@",(long)diffMounth,DJLocalizedString(@"Mese fa", nil)] uppercaseString]; } - return [NSString stringWithFormat:@"%ld %@",(long)diffMounth,NSLocalizedString(@"Mese fa", nil)]; + return [NSString stringWithFormat:@"%ld %@",(long)diffMounth,DJLocalizedString(@"Mese fa", nil)]; } break; case 2: @@ -972,9 +973,9 @@ static NSDateFormatter *_displayFormatter = nil; case 10: case 11:{ if (uppercaseString) { - return [[NSString stringWithFormat:@"%ld %@",(long)diffMounth,NSLocalizedString(@"Mesi fa", nil)] uppercaseString]; + return [[NSString stringWithFormat:@"%ld %@",(long)diffMounth,DJLocalizedString(@"Mesi fa", nil)] uppercaseString]; } - return [NSString stringWithFormat:@"%ld %@",(long)diffMounth,NSLocalizedString(@"Mesi fa", nil)]; + return [NSString stringWithFormat:@"%ld %@",(long)diffMounth,DJLocalizedString(@"Mesi fa", nil)]; } break; @@ -983,15 +984,15 @@ static NSDateFormatter *_displayFormatter = nil; switch (diffYears) { case 1: if (uppercaseString) { - return [[NSString stringWithFormat:@"%ld %@",(long)diffYears,NSLocalizedString(@"Anno fa", nil)] uppercaseString]; + return [[NSString stringWithFormat:@"%ld %@",(long)diffYears,DJLocalizedString(@"Anno fa", nil)] uppercaseString]; } - return [NSString stringWithFormat:@"%ld %@",(long)diffYears,NSLocalizedString(@"Anno fa", nil)]; + return [NSString stringWithFormat:@"%ld %@",(long)diffYears,DJLocalizedString(@"Anno fa", nil)]; break; default:{ if (uppercaseString) { - return [[NSString stringWithFormat:@"%ld %@",(long)diffYears,NSLocalizedString(@"Anni fa", nil)] uppercaseString]; + return [[NSString stringWithFormat:@"%ld %@",(long)diffYears,DJLocalizedString(@"Anni fa", nil)] uppercaseString]; } - return [NSString stringWithFormat:@"%ld %@",(long)diffYears,NSLocalizedString(@"Anni fa", nil)]; + return [NSString stringWithFormat:@"%ld %@",(long)diffYears,DJLocalizedString(@"Anni fa", nil)]; } break; } @@ -1009,45 +1010,45 @@ static NSDateFormatter *_displayFormatter = nil; else { if (time < 60) { if (uppercaseString) { - return [NSLocalizedString(@"Tra poco", nil) uppercaseString]; + return [DJLocalizedString(@"Tra poco", nil) uppercaseString]; } - return NSLocalizedString(@"Tra poco", nil); + return DJLocalizedString(@"Tra poco", nil); } else if (time < 3600) { int diff = round(time / 60); if (diff == 1) { if (uppercaseString) { - return [NSLocalizedString(@"Tra 1 minuto", nil) uppercaseString]; + return [DJLocalizedString(@"Tra 1 minuto", nil) uppercaseString]; } - return NSLocalizedString(@"Tra 1 minuto", nil); + return DJLocalizedString(@"Tra 1 minuto", nil); } if (uppercaseString) { - return [[NSString stringWithFormat:NSLocalizedString(@"Tra %d minuti", nil), diff] uppercaseString]; + return [[NSString stringWithFormat:DJLocalizedString(@"Tra %d minuti", nil), diff] uppercaseString]; } - return [NSString stringWithFormat:NSLocalizedString(@"Tra %d minuti", nil), diff]; + return [NSString stringWithFormat:DJLocalizedString(@"Tra %d minuti", nil), diff]; } else if (time < 86400) { int diff = round(time / 60 / 60); if (diff == 1) { if (uppercaseString) { - return [NSLocalizedString(@"Tra 1 ora", nil) uppercaseString]; + return [DJLocalizedString(@"Tra 1 ora", nil) uppercaseString]; } - return NSLocalizedString(@"Tra 1 ora", nil); + return DJLocalizedString(@"Tra 1 ora", nil); } if (uppercaseString) { - return [[NSString stringWithFormat:NSLocalizedString(@"Tra %d ore", nil), diff] uppercaseString]; + return [[NSString stringWithFormat:DJLocalizedString(@"Tra %d ore", nil), diff] uppercaseString]; } - return [NSString stringWithFormat:NSLocalizedString(@"Tra %d ore", nil), diff]; + return [NSString stringWithFormat:DJLocalizedString(@"Tra %d ore", nil), diff]; } else { NSInteger diff = round(time / 60 / 60 / 24); switch (diff) { case 1:{ if (uppercaseString) { - return [[NSString stringWithFormat:@"%@",NSLocalizedString(@"Domani", nil)] uppercaseString]; + return [[NSString stringWithFormat:@"%@",DJLocalizedString(@"Domani", nil)] uppercaseString]; } - return [NSString stringWithFormat:@"%@",NSLocalizedString(@"Domani", nil)]; + return [NSString stringWithFormat:@"%@",DJLocalizedString(@"Domani", nil)]; } break; case 2: @@ -1057,9 +1058,9 @@ static NSDateFormatter *_displayFormatter = nil; case 6: { if (uppercaseString) { - return [[NSString stringWithFormat:NSLocalizedString(@"Tra %d giorni", nil), diff] uppercaseString]; + return [[NSString stringWithFormat:DJLocalizedString(@"Tra %d giorni", nil), diff] uppercaseString]; } - return [NSString stringWithFormat:NSLocalizedString(@"Tra %d giorni", nil), diff]; + return [NSString stringWithFormat:DJLocalizedString(@"Tra %d giorni", nil), diff]; } break; default:{ @@ -1067,26 +1068,26 @@ static NSDateFormatter *_displayFormatter = nil; switch (diffWeeks) { case 1:{ if (uppercaseString) { - return [[NSString stringWithFormat:@"%ld %@",(long)diffWeeks,NSLocalizedString(@"Tra 1 Settimana", nil)] uppercaseString]; + return [[NSString stringWithFormat:@"%ld %@",(long)diffWeeks,DJLocalizedString(@"Tra 1 Settimana", nil)] uppercaseString]; } - return [NSString stringWithFormat:@"%ld %@",(long)diffWeeks,NSLocalizedString(@"Tra 1 Settimana", nil)]; + return [NSString stringWithFormat:@"%ld %@",(long)diffWeeks,DJLocalizedString(@"Tra 1 Settimana", nil)]; } break; case 2: case 3: if (uppercaseString) { - return [[NSString stringWithFormat:NSLocalizedString(@"Tra %d settimane", nil), diff] uppercaseString]; + return [[NSString stringWithFormat:DJLocalizedString(@"Tra %d settimane", nil), diff] uppercaseString]; } - return [NSString stringWithFormat:NSLocalizedString(@"Tra %d settimane", nil), diff]; + return [NSString stringWithFormat:DJLocalizedString(@"Tra %d settimane", nil), diff]; break; default:{ NSInteger diffMounth = round(time / 60 /60 / 24 / 30); switch (diffMounth) { case 1: { if (uppercaseString) { - return [[NSString stringWithFormat:NSLocalizedString(@"Tra %d mese", nil), diff] uppercaseString]; + return [[NSString stringWithFormat:DJLocalizedString(@"Tra %d mese", nil), diff] uppercaseString]; } - return [NSString stringWithFormat:NSLocalizedString(@"Tra %d mese", nil), diff]; + return [NSString stringWithFormat:DJLocalizedString(@"Tra %d mese", nil), diff]; } break; case 2: @@ -1100,9 +1101,9 @@ static NSDateFormatter *_displayFormatter = nil; case 10: case 11:{ if (uppercaseString) { - return [[NSString stringWithFormat:NSLocalizedString(@"Tra %d mesi", nil), diff] uppercaseString]; + return [[NSString stringWithFormat:DJLocalizedString(@"Tra %d mesi", nil), diff] uppercaseString]; } - return [NSString stringWithFormat:NSLocalizedString(@"Tra %d mesi", nil), diff]; + return [NSString stringWithFormat:DJLocalizedString(@"Tra %d mesi", nil), diff]; } break; @@ -1111,15 +1112,15 @@ static NSDateFormatter *_displayFormatter = nil; switch (diffYears) { case 1: if (uppercaseString) { - return [[NSString stringWithFormat:NSLocalizedString(@"Tra %d anno", nil), diff] uppercaseString]; + return [[NSString stringWithFormat:DJLocalizedString(@"Tra %d anno", nil), diff] uppercaseString]; } - return [NSString stringWithFormat:NSLocalizedString(@"Tra %d anno", nil), diff]; + return [NSString stringWithFormat:DJLocalizedString(@"Tra %d anno", nil), diff]; break; default:{ if (uppercaseString) { - return [[NSString stringWithFormat:NSLocalizedString(@"Tra %d anni", nil), diff] uppercaseString]; + return [[NSString stringWithFormat:DJLocalizedString(@"Tra %d anni", nil), diff] uppercaseString]; } - return [NSString stringWithFormat:NSLocalizedString(@"Tra %d anni", nil), diff]; + return [NSString stringWithFormat:DJLocalizedString(@"Tra %d anni", nil), diff]; } break; } @@ -1146,45 +1147,45 @@ static NSDateFormatter *_displayFormatter = nil; if (time < 60) { if (uppercaseString) { - return [NSLocalizedString(@"Poco fa", nil) uppercaseString]; + return [DJLocalizedString(@"Poco fa", nil) uppercaseString]; } - return NSLocalizedString(@"Poco fa", nil); + return DJLocalizedString(@"Poco fa", nil); } else if (time < 3600) { int diff = round(time / 60); if (diff == 1) { if (uppercaseString) { - return [NSLocalizedString(@"1 Minuto fa", nil) uppercaseString]; + return [DJLocalizedString(@"1 Minuto fa", nil) uppercaseString]; } - return NSLocalizedString(@"1 Minuto fa", nil); + return DJLocalizedString(@"1 Minuto fa", nil); } if (uppercaseString) { - return [[NSString stringWithFormat:@"%d %@", diff, NSLocalizedString(@"Minuti fa", nil)] uppercaseString]; + return [[NSString stringWithFormat:@"%d %@", diff, DJLocalizedString(@"Minuti fa", nil)] uppercaseString]; } - return [NSString stringWithFormat:@"%d %@", diff, NSLocalizedString(@"Minuti fa", nil)]; + return [NSString stringWithFormat:@"%d %@", diff, DJLocalizedString(@"Minuti fa", nil)]; } else if (time < 86400) { int diff = round(time / 60 / 60); if (diff == 1) { if (uppercaseString) { - return [NSLocalizedString(@"1 Ora fa", nil) uppercaseString]; + return [DJLocalizedString(@"1 Ora fa", nil) uppercaseString]; } - return NSLocalizedString(@"1 Ora fa", nil); + return DJLocalizedString(@"1 Ora fa", nil); } if (uppercaseString) { - return [[NSString stringWithFormat:@"%d %@", diff, NSLocalizedString(@"Ore fa", nil)] uppercaseString]; + return [[NSString stringWithFormat:@"%d %@", diff, DJLocalizedString(@"Ore fa", nil)] uppercaseString]; } - return [NSString stringWithFormat:@"%d %@", diff, NSLocalizedString(@"Ore fa", nil)]; + return [NSString stringWithFormat:@"%d %@", diff, DJLocalizedString(@"Ore fa", nil)]; } else { NSInteger diff = round(time / 60 / 60 / 24); switch (diff) { case 1:{ if (uppercaseString) { - return [[NSString stringWithFormat:@"%@",NSLocalizedString(@"Ieri", nil)] uppercaseString]; + return [[NSString stringWithFormat:@"%@",DJLocalizedString(@"Ieri", nil)] uppercaseString]; } - return [NSString stringWithFormat:@"%@",NSLocalizedString(@"Ieri", nil)]; + return [NSString stringWithFormat:@"%@",DJLocalizedString(@"Ieri", nil)]; } break; case 2: @@ -1194,9 +1195,9 @@ static NSDateFormatter *_displayFormatter = nil; case 6: { if (uppercaseString) { - return [[NSString stringWithFormat:@"%ld %@", (long)diff, NSLocalizedString(@"Giorni fa", nil)] uppercaseString]; + return [[NSString stringWithFormat:@"%ld %@", (long)diff, DJLocalizedString(@"Giorni fa", nil)] uppercaseString]; } - return [NSString stringWithFormat:@"%ld %@", (long)diff, NSLocalizedString(@"Giorni fa", nil)]; + return [NSString stringWithFormat:@"%ld %@", (long)diff, DJLocalizedString(@"Giorni fa", nil)]; } break; default:{ @@ -1213,4 +1214,39 @@ static NSDateFormatter *_displayFormatter = nil; } return @""; } + ++ (NSString*) stringFromWeekday :(NSInteger) weekday +{ + NSString *strings[] = { + DJLocalizedString(@"Sunday", @""), + DJLocalizedString(@"Monday", @""), + DJLocalizedString(@"Tuesday", @""), + DJLocalizedString(@"Wednesday", @""), + DJLocalizedString(@"Thursday", @""), + DJLocalizedString(@"Friday", @""), + DJLocalizedString(@"Saturday", @""), + }; + + return strings[weekday-1]; +} + ++ (NSString*) stringMonth :(NSInteger) month; +{ + NSString *strings[] = { + DJLocalizedString(@"January", @""), + DJLocalizedString(@"February", @""), + DJLocalizedString(@"March", @""), + DJLocalizedString(@"April", @""), + DJLocalizedString(@"May", @""), + DJLocalizedString(@"June", @""), + DJLocalizedString(@"July", @""), + DJLocalizedString(@"August", @""), + DJLocalizedString(@"September", @""), + DJLocalizedString(@"October", @""), + DJLocalizedString(@"November", @""), + DJLocalizedString(@"December", @""), + }; + + return strings[month-1]; +} @end