diff --git a/Podfile b/Podfile index c868ee6..231778b 100644 --- a/Podfile +++ b/Podfile @@ -1,7 +1,12 @@ # Podfile -link_with 'Tests' - use_frameworks! -pod 'Quick', '~> 0.9.2' -pod 'Nimble', '~> 4.0.0' + +abstract_target 'BasePods' do + + pod 'Quick', '~> 0.9.2' + pod 'Nimble', '~> 4.0.0' + + target 'Tests' do + end +end \ No newline at end of file diff --git a/SwiftSerializer.podspec b/SwiftSerializer.podspec index fed7210..f29051c 100644 --- a/SwiftSerializer.podspec +++ b/SwiftSerializer.podspec @@ -7,9 +7,7 @@ Pod::Spec.new do |s| s.source = { :git => "https://github.com/Mailcloud/swift-serializer.git", :tag => "#{s.version}" } s.authors = {'Mailcloud' => "contact@mailcloud.com"} s.social_media_url = "https://twitter.com/mailcloud" - s.ios.platform = :ios, '8.0' s.ios.deployment_target = "8.0" - s.osx.platform = :osx, '10.9' s.osx.deployment_target = "10.9" s.source_files = "src/*" s.requires_arc = true diff --git a/src/Array+Serializable.swift b/src/Array+Serializable.swift index 835b702..3f3b4c2 100644 --- a/src/Array+Serializable.swift +++ b/src/Array+Serializable.swift @@ -8,10 +8,10 @@ import Foundation extension Array where Element: Serializable { - public func toNSDictionaryArray() -> [NSDictionary] { + public func toNSDictionaryArray(dateFormatter: NSDateFormatter?) -> [NSDictionary] { var subArray = [NSDictionary]() for item in self { - subArray.append(item.toDictionary()) + subArray.append(item.toDictionary(dateFormatter)) } return subArray } @@ -21,8 +21,8 @@ extension Array where Element: Serializable { :returns: The array as JSON, wrapped in NSData. */ - public func toJson(prettyPrinted: Bool = false) -> NSData? { - let subArray = self.toNSDictionaryArray() + public func toJson(prettyPrinted: Bool = false, dateFormatter: NSDateFormatter? = nil) -> NSData? { + let subArray = self.toNSDictionaryArray(dateFormatter) if NSJSONSerialization.isValidJSONObject(subArray) { do { @@ -41,8 +41,8 @@ extension Array where Element: Serializable { :returns: The array as a JSON string. */ - public func toJsonString(prettyPrinted: Bool = false) -> String? { - if let jsonData = toJson(prettyPrinted) { + public func toJsonString(prettyPrinted: Bool = false, dateFormatter: NSDateFormatter? = nil) -> String? { + if let jsonData = toJson(prettyPrinted, dateFormatter: dateFormatter) { return NSString(data: jsonData, encoding: NSUTF8StringEncoding) as String? } diff --git a/src/Serializable.swift b/src/Serializable.swift index d933f76..3706304 100644 --- a/src/Serializable.swift +++ b/src/Serializable.swift @@ -56,15 +56,15 @@ public class Serializable: NSObject { - returns: The class as an NSDictionary. */ - public func toDictionary() -> NSDictionary { + public func toDictionary(dateFormatter: NSDateFormatter?) -> NSDictionary { let propertiesDictionary = SortedDictionary() let mirror = Mirror(reflecting: self) for (propName, propValue) in mirror.children { if let propValue: AnyObject = self.unwrap(propValue) as? AnyObject, propName = propName { if let serializablePropValue = propValue as? Serializable { - setValue(propertiesDictionary, value: serializablePropValue.toDictionary(), forKey: propName) + setValue(propertiesDictionary, value: serializablePropValue.toDictionary(dateFormatter), forKey: propName) } else if let arrayPropValue = propValue as? [Serializable] { - let subArray = arrayPropValue.toNSDictionaryArray() + let subArray = arrayPropValue.toNSDictionaryArray(dateFormatter) setValue(propertiesDictionary, value: subArray, forKey: propName) } else if propValue is Int || propValue is Double || propValue is Float || propValue is Bool { setValue(propertiesDictionary, value: propValue, forKey: propName) @@ -72,7 +72,11 @@ public class Serializable: NSObject { setValue(propertiesDictionary, value: dataPropValue.base64EncodedStringWithOptions(.Encoding64CharacterLineLength), forKey: propName) } else if let datePropValue = propValue as? NSDate { - setValue(propertiesDictionary, value: datePropValue.timeIntervalSince1970, forKey: propName) + if let dateFormatter = dateFormatter { + setValue(propertiesDictionary, value: dateFormatter.stringFromDate(datePropValue), forKey: propName) + } else { + setValue(propertiesDictionary, value: datePropValue.timeIntervalSince1970, forKey: propName) + } } else { setValue(propertiesDictionary, value: propValue, forKey: propName) } @@ -105,8 +109,8 @@ public class Serializable: NSObject { - returns: The class as JSON, wrapped in NSData. */ - public func toJson(prettyPrinted: Bool = false) -> NSData? { - let dictionary = self.toDictionary() + public func toJson(prettyPrinted: Bool = false, dateFormatter: NSDateFormatter? = nil) -> NSData? { + let dictionary = self.toDictionary(dateFormatter) if NSJSONSerialization.isValidJSONObject(dictionary) { do { @@ -125,8 +129,8 @@ public class Serializable: NSObject { - returns: The class as a JSON string. */ - public func toJsonString(prettyPrinted: Bool = false) -> String? { - if let jsonData = self.toJson(prettyPrinted) { + public func toJsonString(prettyPrinted: Bool = false, dateFormatter: NSDateFormatter? = nil) -> String? { + if let jsonData = self.toJson(prettyPrinted, dateFormatter: dateFormatter) { return NSString(data: jsonData, encoding: NSUTF8StringEncoding) as String? } diff --git a/swift-serializer.xcodeproj/project.pbxproj b/swift-serializer.xcodeproj/project.pbxproj index 64d576c..4f9a44f 100644 --- a/swift-serializer.xcodeproj/project.pbxproj +++ b/swift-serializer.xcodeproj/project.pbxproj @@ -1,1020 +1,550 @@ - - - - - archiveVersion - 1 - classes - - objectVersion - 46 - objects - - 0352D9D0A85D4C23774C0037 - - buildActionMask - 2147483647 - files - - inputPaths - - isa - PBXShellScriptBuildPhase - name - Embed Pods Frameworks - outputPaths - - runOnlyForDeploymentPostprocessing - 0 - shellPath - /bin/sh - shellScript - "${SRCROOT}/Pods/Target Support Files/Pods/Pods-frameworks.sh" - - showEnvVarsInLog - 0 - - 16E21B230D687134DDE58584 - - buildActionMask - 2147483647 - files - - inputPaths - - isa - PBXShellScriptBuildPhase - name - Check Pods Manifest.lock - outputPaths - - runOnlyForDeploymentPostprocessing - 0 - shellPath - /bin/sh - shellScript - diff "${PODS_ROOT}/../Podfile.lock" "${PODS_ROOT}/Manifest.lock" > /dev/null -if [[ $? != 0 ]] ; then - cat << EOM -error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation. -EOM - exit 1 -fi - - showEnvVarsInLog - 0 - - 1C78781DCB3E9CCE2CE48AF8 - - children - - A490D88AB4032BDB8C50CDA0 - 78B06B35A0AD84EE359FB68B - - isa - PBXGroup - name - Pods - sourceTree - <group> - - 565796373FBF9E9AE081FECD - - children - - A7DC79ACBDEB6EFE03B9945E - - isa - PBXGroup - name - Frameworks - sourceTree - <group> - - 78B06B35A0AD84EE359FB68B - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - text.xcconfig - name - Pods.release.xcconfig - path - Pods/Target Support Files/Pods/Pods.release.xcconfig - sourceTree - <group> - - 860A15E1397DFA3C4E63EC32 - - buildActionMask - 2147483647 - files - - inputPaths - - isa - PBXShellScriptBuildPhase - name - Copy Pods Resources - outputPaths - - runOnlyForDeploymentPostprocessing - 0 - shellPath - /bin/sh - shellScript - "${SRCROOT}/Pods/Target Support Files/Pods/Pods-resources.sh" - - showEnvVarsInLog - 0 - - A0D0F7693200A30EFB86C2C9 - - fileRef - A7DC79ACBDEB6EFE03B9945E - isa - PBXBuildFile - - A490D88AB4032BDB8C50CDA0 - - includeInIndex - 1 - isa - PBXFileReference - lastKnownFileType - text.xcconfig - name - Pods.debug.xcconfig - path - Pods/Target Support Files/Pods/Pods.debug.xcconfig - sourceTree - <group> - - A7DC79ACBDEB6EFE03B9945E - - explicitFileType - wrapper.framework - includeInIndex - 0 - isa - PBXFileReference - path - Pods.framework - sourceTree - BUILT_PRODUCTS_DIR - - AA03D4161C04294600AEDF77 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - Array+Serializable.swift - sourceTree - <group> - - AA03D4171C04294600AEDF77 - - fileRef - AA03D4161C04294600AEDF77 - isa - PBXBuildFile - - AA949BC81BE8630800F02242 - - children - - AA949BCB1BE8630800F02242 - - isa - PBXGroup - path - SwiftSerializer - sourceTree - <group> - - AA949BCB1BE8630800F02242 - - isa - PBXFileReference - lastKnownFileType - text.plist.xml - path - Info.plist - sourceTree - <group> - - AA949BD31BE8649C00F02242 - - buildActionMask - 2147483647 - files - - AA03D4171C04294600AEDF77 - AA949BE01BE864F000F02242 - - isa - PBXSourcesBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - AA949BD41BE8649C00F02242 - - buildActionMask - 2147483647 - files - - isa - PBXFrameworksBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - AA949BD51BE8649C00F02242 - - buildActionMask - 2147483647 - files - - isa - PBXHeadersBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - AA949BD61BE8649C00F02242 - - buildActionMask - 2147483647 - files - - isa - PBXResourcesBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - AA949BD71BE8649C00F02242 - - buildConfigurationList - AA949BDD1BE8649C00F02242 - buildPhases - - AA949BD31BE8649C00F02242 - AA949BD41BE8649C00F02242 - AA949BD51BE8649C00F02242 - AA949BD61BE8649C00F02242 - - buildRules - - dependencies - - isa - PBXNativeTarget - name - SwiftSerializer - productName - SwiftSerializer - productReference - AA949BD81BE8649C00F02242 - productType - com.apple.product-type.framework - - AA949BD81BE8649C00F02242 - - explicitFileType - wrapper.framework - includeInIndex - 0 - isa - PBXFileReference - path - SwiftSerializer.framework - sourceTree - BUILT_PRODUCTS_DIR - - AA949BDD1BE8649C00F02242 - - buildConfigurations - - AA949BDE1BE8649C00F02242 - AA949BDF1BE8649C00F02242 - - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release - isa - XCConfigurationList - - AA949BDE1BE8649C00F02242 - - buildSettings - - ALWAYS_SEARCH_USER_PATHS - NO - CLANG_CXX_LANGUAGE_STANDARD - gnu++0x - CLANG_CXX_LIBRARY - libc++ - CLANG_ENABLE_MODULES - YES - CLANG_ENABLE_OBJC_ARC - YES - CLANG_WARN_BOOL_CONVERSION - YES - CLANG_WARN_CONSTANT_CONVERSION - YES - CLANG_WARN_DIRECT_OBJC_ISA_USAGE - YES_ERROR - CLANG_WARN_EMPTY_BODY - YES - CLANG_WARN_ENUM_CONVERSION - YES - CLANG_WARN_INT_CONVERSION - YES - CLANG_WARN_OBJC_ROOT_CLASS - YES_ERROR - CLANG_WARN_UNREACHABLE_CODE - YES - CLANG_WARN__DUPLICATE_METHOD_MATCH - YES - CODE_SIGN_IDENTITY[sdk=iphoneos*] - iPhone Developer - COPY_PHASE_STRIP - NO - 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_C_LANGUAGE_STANDARD - gnu99 - GCC_DYNAMIC_NO_PIC - NO - GCC_NO_COMMON_BLOCKS - YES - GCC_OPTIMIZATION_LEVEL - 0 - GCC_PREPROCESSOR_DEFINITIONS - - DEBUG=1 - $(inherited) - - GCC_WARN_64_TO_32_BIT_CONVERSION - YES - GCC_WARN_ABOUT_RETURN_TYPE - YES_ERROR - GCC_WARN_UNDECLARED_SELECTOR - YES - GCC_WARN_UNINITIALIZED_AUTOS - YES_AGGRESSIVE - GCC_WARN_UNUSED_FUNCTION - YES - GCC_WARN_UNUSED_VARIABLE - YES - INFOPLIST_FILE - SwiftSerializer/Info.plist - INSTALL_PATH - $(LOCAL_LIBRARY_DIR)/Frameworks - IPHONEOS_DEPLOYMENT_TARGET - 9.0 - LD_RUNPATH_SEARCH_PATHS - $(inherited) @executable_path/Frameworks @loader_path/Frameworks - MTL_ENABLE_DEBUG_INFO - YES - PRODUCT_BUNDLE_IDENTIFIER - SwiftSerializer.SwiftSerializer - PRODUCT_NAME - $(TARGET_NAME) - SDKROOT - iphoneos - SKIP_INSTALL - YES - SWIFT_OPTIMIZATION_LEVEL - -Onone - TARGETED_DEVICE_FAMILY - 1,2 - VERSIONING_SYSTEM - apple-generic - VERSION_INFO_PREFIX - - - isa - XCBuildConfiguration - name - Debug - - AA949BDF1BE8649C00F02242 - - buildSettings - - ALWAYS_SEARCH_USER_PATHS - NO - CLANG_CXX_LANGUAGE_STANDARD - gnu++0x - CLANG_CXX_LIBRARY - libc++ - CLANG_ENABLE_MODULES - YES - CLANG_ENABLE_OBJC_ARC - YES - CLANG_WARN_BOOL_CONVERSION - YES - CLANG_WARN_CONSTANT_CONVERSION - YES - CLANG_WARN_DIRECT_OBJC_ISA_USAGE - YES_ERROR - CLANG_WARN_EMPTY_BODY - YES - CLANG_WARN_ENUM_CONVERSION - YES - CLANG_WARN_INT_CONVERSION - YES - CLANG_WARN_OBJC_ROOT_CLASS - YES_ERROR - CLANG_WARN_UNREACHABLE_CODE - YES - CLANG_WARN__DUPLICATE_METHOD_MATCH - YES - CODE_SIGN_IDENTITY[sdk=iphoneos*] - iPhone Developer - COPY_PHASE_STRIP - NO - 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_NS_ASSERTIONS - NO - ENABLE_STRICT_OBJC_MSGSEND - YES - GCC_C_LANGUAGE_STANDARD - gnu99 - GCC_NO_COMMON_BLOCKS - YES - GCC_WARN_64_TO_32_BIT_CONVERSION - YES - GCC_WARN_ABOUT_RETURN_TYPE - YES_ERROR - GCC_WARN_UNDECLARED_SELECTOR - YES - GCC_WARN_UNINITIALIZED_AUTOS - YES_AGGRESSIVE - GCC_WARN_UNUSED_FUNCTION - YES - GCC_WARN_UNUSED_VARIABLE - YES - INFOPLIST_FILE - SwiftSerializer/Info.plist - INSTALL_PATH - $(LOCAL_LIBRARY_DIR)/Frameworks - IPHONEOS_DEPLOYMENT_TARGET - 9.0 - LD_RUNPATH_SEARCH_PATHS - $(inherited) @executable_path/Frameworks @loader_path/Frameworks - MTL_ENABLE_DEBUG_INFO - NO - PRODUCT_BUNDLE_IDENTIFIER - SwiftSerializer.SwiftSerializer - PRODUCT_NAME - $(TARGET_NAME) - SDKROOT - iphoneos - SKIP_INSTALL - YES - TARGETED_DEVICE_FAMILY - 1,2 - VALIDATE_PRODUCT - YES - VERSIONING_SYSTEM - apple-generic - VERSION_INFO_PREFIX - - - isa - XCBuildConfiguration - name - Release - - AA949BE01BE864F000F02242 - - fileRef - D1BC4FD81B4EE74200F52BA5 - isa - PBXBuildFile - - AA949BE11BE8650A00F02242 - - containerPortal - D1BC4FD11B4EE6E600F52BA5 - isa - PBXContainerItemProxy - proxyType - 1 - remoteGlobalIDString - AA949BD71BE8649C00F02242 - remoteInfo - SwiftSerializer - - AA949BE21BE8650A00F02242 - - isa - PBXTargetDependency - target - AA949BD71BE8649C00F02242 - targetProxy - AA949BE11BE8650A00F02242 - - D1BC4FD01B4EE6E600F52BA5 - - children - - D1BC4FD91B4EE7B800F52BA5 - D1BC4FD71B4EE72D00F52BA5 - D1BC4FE01B4EE7E200F52BA5 - AA949BC81BE8630800F02242 - D1BC4FDF1B4EE7E100F52BA5 - 1C78781DCB3E9CCE2CE48AF8 - 565796373FBF9E9AE081FECD - - isa - PBXGroup - sourceTree - <group> - - D1BC4FD11B4EE6E600F52BA5 - - attributes - - LastSwiftUpdateCheck - 0710 - LastUpgradeCheck - 0710 - TargetAttributes - - AA949BD71BE8649C00F02242 - - CreatedOnToolsVersion - 7.1 - - D1BC4FDD1B4EE7E100F52BA5 - - CreatedOnToolsVersion - 7.0 - - - - buildConfigurationList - D1BC4FD41B4EE6E600F52BA5 - compatibilityVersion - Xcode 3.2 - developmentRegion - English - hasScannedForEncodings - 0 - isa - PBXProject - knownRegions - - en - - mainGroup - D1BC4FD01B4EE6E600F52BA5 - productRefGroup - D1BC4FDF1B4EE7E100F52BA5 - projectDirPath - - projectReferences - - projectRoot - - targets - - D1BC4FDD1B4EE7E100F52BA5 - AA949BD71BE8649C00F02242 - - - D1BC4FD41B4EE6E600F52BA5 - - buildConfigurations - - D1BC4FD51B4EE6E600F52BA5 - D1BC4FD61B4EE6E600F52BA5 - - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release - isa - XCConfigurationList - - D1BC4FD51B4EE6E600F52BA5 - - buildSettings - - ENABLE_TESTABILITY - YES - ONLY_ACTIVE_ARCH - YES - - isa - XCBuildConfiguration - name - Debug - - D1BC4FD61B4EE6E600F52BA5 - - buildSettings - - isa - XCBuildConfiguration - name - Release - - D1BC4FD71B4EE72D00F52BA5 - - children - - AA03D4161C04294600AEDF77 - D1BC4FD81B4EE74200F52BA5 - - isa - PBXGroup - path - src - sourceTree - <group> - - D1BC4FD81B4EE74200F52BA5 - - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - Serializable.swift - sourceTree - <group> - - D1BC4FD91B4EE7B800F52BA5 - - isa - PBXFileReference - lastKnownFileType - text - path - Podfile - sourceTree - <group> - xcLanguageSpecificationIdentifier - xcode.lang.ruby - - D1BC4FDA1B4EE7E100F52BA5 - - buildActionMask - 2147483647 - files - - D1BC4FE91B4EF09A00F52BA5 - - isa - PBXSourcesBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - D1BC4FDB1B4EE7E100F52BA5 - - buildActionMask - 2147483647 - files - - A0D0F7693200A30EFB86C2C9 - - isa - PBXFrameworksBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - D1BC4FDC1B4EE7E100F52BA5 - - buildActionMask - 2147483647 - files - - isa - PBXResourcesBuildPhase - runOnlyForDeploymentPostprocessing - 0 - - D1BC4FDD1B4EE7E100F52BA5 - - buildConfigurationList - D1BC4FE41B4EE7E200F52BA5 - buildPhases - - 16E21B230D687134DDE58584 - D1BC4FDA1B4EE7E100F52BA5 - D1BC4FDB1B4EE7E100F52BA5 - D1BC4FDC1B4EE7E100F52BA5 - 0352D9D0A85D4C23774C0037 - 860A15E1397DFA3C4E63EC32 - - buildRules - - dependencies - - AA949BE21BE8650A00F02242 - - isa - PBXNativeTarget - name - Tests - productName - MyTest - productReference - D1BC4FDE1B4EE7E100F52BA5 - productType - com.apple.product-type.bundle.unit-test - - D1BC4FDE1B4EE7E100F52BA5 - - explicitFileType - wrapper.cfbundle - includeInIndex - 0 - isa - PBXFileReference - path - Tests.xctest - sourceTree - BUILT_PRODUCTS_DIR - - D1BC4FDF1B4EE7E100F52BA5 - - children - - D1BC4FDE1B4EE7E100F52BA5 - AA949BD81BE8649C00F02242 - - isa - PBXGroup - name - Products - sourceTree - <group> - - D1BC4FE01B4EE7E200F52BA5 - - children - - D1BC4FE31B4EE7E200F52BA5 - D1BC4FE81B4EF09A00F52BA5 - - isa - PBXGroup - path - tests - sourceTree - <group> - - D1BC4FE31B4EE7E200F52BA5 - - isa - PBXFileReference - lastKnownFileType - text.plist.xml - path - Info.plist - sourceTree - <group> - - D1BC4FE41B4EE7E200F52BA5 - - buildConfigurations - - D1BC4FE51B4EE7E200F52BA5 - D1BC4FE61B4EE7E200F52BA5 - - defaultConfigurationIsVisible - 0 - defaultConfigurationName - Release - isa - XCConfigurationList - - D1BC4FE51B4EE7E200F52BA5 - - baseConfigurationReference - A490D88AB4032BDB8C50CDA0 - buildSettings - - ALWAYS_SEARCH_USER_PATHS - NO - CLANG_CXX_LANGUAGE_STANDARD - gnu++0x - CLANG_CXX_LIBRARY - libc++ - CLANG_ENABLE_MODULES - YES - CLANG_ENABLE_OBJC_ARC - YES - CLANG_WARN_BOOL_CONVERSION - YES - CLANG_WARN_CONSTANT_CONVERSION - YES - CLANG_WARN_DIRECT_OBJC_ISA_USAGE - YES_ERROR - CLANG_WARN_EMPTY_BODY - YES - CLANG_WARN_ENUM_CONVERSION - YES - CLANG_WARN_INT_CONVERSION - YES - CLANG_WARN_OBJC_ROOT_CLASS - YES_ERROR - CLANG_WARN_UNREACHABLE_CODE - YES - CLANG_WARN__DUPLICATE_METHOD_MATCH - YES - COPY_PHASE_STRIP - NO - DEBUG_INFORMATION_FORMAT - dwarf - ENABLE_STRICT_OBJC_MSGSEND - YES - ENABLE_TESTABILITY - YES - GCC_C_LANGUAGE_STANDARD - gnu99 - GCC_DYNAMIC_NO_PIC - NO - GCC_NO_COMMON_BLOCKS - YES - GCC_OPTIMIZATION_LEVEL - 0 - GCC_PREPROCESSOR_DEFINITIONS - - DEBUG=1 - $(inherited) - - GCC_WARN_64_TO_32_BIT_CONVERSION - YES - GCC_WARN_ABOUT_RETURN_TYPE - YES_ERROR - GCC_WARN_UNDECLARED_SELECTOR - YES - GCC_WARN_UNINITIALIZED_AUTOS - YES_AGGRESSIVE - GCC_WARN_UNUSED_FUNCTION - YES - GCC_WARN_UNUSED_VARIABLE - YES - INFOPLIST_FILE - tests/Info.plist - IPHONEOS_DEPLOYMENT_TARGET - 9.0 - LD_RUNPATH_SEARCH_PATHS - $(inherited) @executable_path/Frameworks @loader_path/Frameworks - MTL_ENABLE_DEBUG_INFO - YES - ONLY_ACTIVE_ARCH - YES - PRODUCT_BUNDLE_IDENTIFIER - pl.mawitech.MyTest - PRODUCT_NAME - $(TARGET_NAME) - SDKROOT - iphoneos - SWIFT_OPTIMIZATION_LEVEL - -Onone - - isa - XCBuildConfiguration - name - Debug - - D1BC4FE61B4EE7E200F52BA5 - - baseConfigurationReference - 78B06B35A0AD84EE359FB68B - buildSettings - - ALWAYS_SEARCH_USER_PATHS - NO - CLANG_CXX_LANGUAGE_STANDARD - gnu++0x - CLANG_CXX_LIBRARY - libc++ - CLANG_ENABLE_MODULES - YES - CLANG_ENABLE_OBJC_ARC - YES - CLANG_WARN_BOOL_CONVERSION - YES - CLANG_WARN_CONSTANT_CONVERSION - YES - CLANG_WARN_DIRECT_OBJC_ISA_USAGE - YES_ERROR - CLANG_WARN_EMPTY_BODY - YES - CLANG_WARN_ENUM_CONVERSION - YES - CLANG_WARN_INT_CONVERSION - YES - CLANG_WARN_OBJC_ROOT_CLASS - YES_ERROR - CLANG_WARN_UNREACHABLE_CODE - YES - CLANG_WARN__DUPLICATE_METHOD_MATCH - YES - COPY_PHASE_STRIP - NO - DEBUG_INFORMATION_FORMAT - dwarf-with-dsym - ENABLE_NS_ASSERTIONS - NO - ENABLE_STRICT_OBJC_MSGSEND - YES - GCC_C_LANGUAGE_STANDARD - gnu99 - GCC_NO_COMMON_BLOCKS - YES - GCC_WARN_64_TO_32_BIT_CONVERSION - YES - GCC_WARN_ABOUT_RETURN_TYPE - YES_ERROR - GCC_WARN_UNDECLARED_SELECTOR - YES - GCC_WARN_UNINITIALIZED_AUTOS - YES_AGGRESSIVE - GCC_WARN_UNUSED_FUNCTION - YES - GCC_WARN_UNUSED_VARIABLE - YES - INFOPLIST_FILE - tests/Info.plist - IPHONEOS_DEPLOYMENT_TARGET - 9.0 - LD_RUNPATH_SEARCH_PATHS - $(inherited) @executable_path/Frameworks @loader_path/Frameworks - MTL_ENABLE_DEBUG_INFO - NO - PRODUCT_BUNDLE_IDENTIFIER - pl.mawitech.MyTest - PRODUCT_NAME - $(TARGET_NAME) - SDKROOT - iphoneos - VALIDATE_PRODUCT - YES - - isa - XCBuildConfiguration - name - Release - - D1BC4FE81B4EF09A00F52BA5 - - fileEncoding - 4 - isa - PBXFileReference - lastKnownFileType - sourcecode.swift - path - SerializableSpec.swift - sourceTree - <group> - - D1BC4FE91B4EF09A00F52BA5 - - fileRef - D1BC4FE81B4EF09A00F52BA5 - isa - PBXBuildFile - - - rootObject - D1BC4FD11B4EE6E600F52BA5 - - +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + objects = { + +/* Begin PBXBuildFile section */ + AA03D4171C04294600AEDF77 /* Array+Serializable.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA03D4161C04294600AEDF77 /* Array+Serializable.swift */; }; + AA949BE01BE864F000F02242 /* Serializable.swift in Sources */ = {isa = PBXBuildFile; fileRef = D1BC4FD81B4EE74200F52BA5 /* Serializable.swift */; }; + D1BC4FE91B4EF09A00F52BA5 /* SerializableSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = D1BC4FE81B4EF09A00F52BA5 /* SerializableSpec.swift */; }; + EAD9B12A14F4499279E00848 /* Pods_BasePods_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E31856CE48390EA70E8A3D5F /* Pods_BasePods_Tests.framework */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + AA949BE11BE8650A00F02242 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D1BC4FD11B4EE6E600F52BA5 /* Project object */; + proxyType = 1; + remoteGlobalIDString = AA949BD71BE8649C00F02242; + remoteInfo = SwiftSerializer; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + 27AA74BE96120DD67B757016 /* Pods-BasePods-Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-BasePods-Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-BasePods-Tests/Pods-BasePods-Tests.debug.xcconfig"; sourceTree = ""; }; + 67FBC50F8CEC6F895B70106E /* Pods-BasePods-Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-BasePods-Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-BasePods-Tests/Pods-BasePods-Tests.release.xcconfig"; sourceTree = ""; }; + A7DC79ACBDEB6EFE03B9945E /* Pods.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + AA03D4161C04294600AEDF77 /* Array+Serializable.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Array+Serializable.swift"; sourceTree = ""; }; + AA949BCB1BE8630800F02242 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + AA949BD81BE8649C00F02242 /* SwiftSerializer.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SwiftSerializer.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + D1BC4FD81B4EE74200F52BA5 /* Serializable.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Serializable.swift; sourceTree = ""; }; + D1BC4FD91B4EE7B800F52BA5 /* Podfile */ = {isa = PBXFileReference; lastKnownFileType = text; path = Podfile; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + D1BC4FDE1B4EE7E100F52BA5 /* Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + D1BC4FE31B4EE7E200F52BA5 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + D1BC4FE81B4EF09A00F52BA5 /* SerializableSpec.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SerializableSpec.swift; sourceTree = ""; }; + E31856CE48390EA70E8A3D5F /* Pods_BasePods_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_BasePods_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + AA949BD41BE8649C00F02242 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + D1BC4FDB1B4EE7E100F52BA5 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + EAD9B12A14F4499279E00848 /* Pods_BasePods_Tests.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 565796373FBF9E9AE081FECD /* Frameworks */ = { + isa = PBXGroup; + children = ( + A7DC79ACBDEB6EFE03B9945E /* Pods.framework */, + E31856CE48390EA70E8A3D5F /* Pods_BasePods_Tests.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + AA949BC81BE8630800F02242 /* SwiftSerializer */ = { + isa = PBXGroup; + children = ( + AA949BCB1BE8630800F02242 /* Info.plist */, + ); + path = SwiftSerializer; + sourceTree = ""; + }; + C4E208CE0A141D958A143234 /* Pods */ = { + isa = PBXGroup; + children = ( + 27AA74BE96120DD67B757016 /* Pods-BasePods-Tests.debug.xcconfig */, + 67FBC50F8CEC6F895B70106E /* Pods-BasePods-Tests.release.xcconfig */, + ); + name = Pods; + sourceTree = ""; + }; + D1BC4FD01B4EE6E600F52BA5 = { + isa = PBXGroup; + children = ( + D1BC4FD91B4EE7B800F52BA5 /* Podfile */, + D1BC4FD71B4EE72D00F52BA5 /* src */, + D1BC4FE01B4EE7E200F52BA5 /* tests */, + AA949BC81BE8630800F02242 /* SwiftSerializer */, + D1BC4FDF1B4EE7E100F52BA5 /* Products */, + 565796373FBF9E9AE081FECD /* Frameworks */, + C4E208CE0A141D958A143234 /* Pods */, + ); + sourceTree = ""; + }; + D1BC4FD71B4EE72D00F52BA5 /* src */ = { + isa = PBXGroup; + children = ( + AA03D4161C04294600AEDF77 /* Array+Serializable.swift */, + D1BC4FD81B4EE74200F52BA5 /* Serializable.swift */, + ); + path = src; + sourceTree = ""; + }; + D1BC4FDF1B4EE7E100F52BA5 /* Products */ = { + isa = PBXGroup; + children = ( + D1BC4FDE1B4EE7E100F52BA5 /* Tests.xctest */, + AA949BD81BE8649C00F02242 /* SwiftSerializer.framework */, + ); + name = Products; + sourceTree = ""; + }; + D1BC4FE01B4EE7E200F52BA5 /* tests */ = { + isa = PBXGroup; + children = ( + D1BC4FE31B4EE7E200F52BA5 /* Info.plist */, + D1BC4FE81B4EF09A00F52BA5 /* SerializableSpec.swift */, + ); + path = tests; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXHeadersBuildPhase section */ + AA949BD51BE8649C00F02242 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXHeadersBuildPhase section */ + +/* Begin PBXNativeTarget section */ + AA949BD71BE8649C00F02242 /* SwiftSerializer */ = { + isa = PBXNativeTarget; + buildConfigurationList = AA949BDD1BE8649C00F02242 /* Build configuration list for PBXNativeTarget "SwiftSerializer" */; + buildPhases = ( + AA949BD31BE8649C00F02242 /* Sources */, + AA949BD41BE8649C00F02242 /* Frameworks */, + AA949BD51BE8649C00F02242 /* Headers */, + AA949BD61BE8649C00F02242 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = SwiftSerializer; + productName = SwiftSerializer; + productReference = AA949BD81BE8649C00F02242 /* SwiftSerializer.framework */; + productType = "com.apple.product-type.framework"; + }; + D1BC4FDD1B4EE7E100F52BA5 /* Tests */ = { + isa = PBXNativeTarget; + buildConfigurationList = D1BC4FE41B4EE7E200F52BA5 /* Build configuration list for PBXNativeTarget "Tests" */; + buildPhases = ( + F942DF7DF4EEFE3ABF37195A /* [CP] Check Pods Manifest.lock */, + D1BC4FDA1B4EE7E100F52BA5 /* Sources */, + D1BC4FDB1B4EE7E100F52BA5 /* Frameworks */, + D1BC4FDC1B4EE7E100F52BA5 /* Resources */, + 662B198D0EB14D7E82DF03C7 /* [CP] Embed Pods Frameworks */, + AC30F04EC10D7369106CA7ED /* [CP] Copy Pods Resources */, + ); + buildRules = ( + ); + dependencies = ( + AA949BE21BE8650A00F02242 /* PBXTargetDependency */, + ); + name = Tests; + productName = MyTest; + productReference = D1BC4FDE1B4EE7E100F52BA5 /* Tests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + D1BC4FD11B4EE6E600F52BA5 /* Project object */ = { + isa = PBXProject; + attributes = { + LastSwiftUpdateCheck = 0710; + LastUpgradeCheck = 0710; + TargetAttributes = { + AA949BD71BE8649C00F02242 = { + CreatedOnToolsVersion = 7.1; + }; + D1BC4FDD1B4EE7E100F52BA5 = { + CreatedOnToolsVersion = 7.0; + }; + }; + }; + buildConfigurationList = D1BC4FD41B4EE6E600F52BA5 /* Build configuration list for PBXProject "swift-serializer" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = English; + hasScannedForEncodings = 0; + knownRegions = ( + en, + ); + mainGroup = D1BC4FD01B4EE6E600F52BA5; + productRefGroup = D1BC4FDF1B4EE7E100F52BA5 /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + D1BC4FDD1B4EE7E100F52BA5 /* Tests */, + AA949BD71BE8649C00F02242 /* SwiftSerializer */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + AA949BD61BE8649C00F02242 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + D1BC4FDC1B4EE7E100F52BA5 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + 662B198D0EB14D7E82DF03C7 /* [CP] Embed Pods Frameworks */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "[CP] Embed Pods Frameworks"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-BasePods-Tests/Pods-BasePods-Tests-frameworks.sh\"\n"; + showEnvVarsInLog = 0; + }; + AC30F04EC10D7369106CA7ED /* [CP] Copy Pods Resources */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "[CP] Copy Pods Resources"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-BasePods-Tests/Pods-BasePods-Tests-resources.sh\"\n"; + showEnvVarsInLog = 0; + }; + F942DF7DF4EEFE3ABF37195A /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "[CP] Check Pods Manifest.lock"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n"; + showEnvVarsInLog = 0; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + AA949BD31BE8649C00F02242 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + AA03D4171C04294600AEDF77 /* Array+Serializable.swift in Sources */, + AA949BE01BE864F000F02242 /* Serializable.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + D1BC4FDA1B4EE7E100F52BA5 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + D1BC4FE91B4EF09A00F52BA5 /* SerializableSpec.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + AA949BE21BE8650A00F02242 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = AA949BD71BE8649C00F02242 /* SwiftSerializer */; + targetProxy = AA949BE11BE8650A00F02242 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin XCBuildConfiguration section */ + AA949BDE1BE8649C00F02242 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + 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_C_LANGUAGE_STANDARD = gnu99; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + INFOPLIST_FILE = SwiftSerializer/Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MTL_ENABLE_DEBUG_INFO = YES; + PRODUCT_BUNDLE_IDENTIFIER = SwiftSerializer.SwiftSerializer; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + AA949BDF1BE8649C00F02242 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + 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_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + INFOPLIST_FILE = SwiftSerializer/Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_BUNDLE_IDENTIFIER = SwiftSerializer.SwiftSerializer; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + D1BC4FD51B4EE6E600F52BA5 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ENABLE_TESTABILITY = YES; + ONLY_ACTIVE_ARCH = YES; + }; + name = Debug; + }; + D1BC4FD61B4EE6E600F52BA5 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + }; + name = Release; + }; + D1BC4FE51B4EE7E200F52BA5 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 27AA74BE96120DD67B757016 /* Pods-BasePods-Tests.debug.xcconfig */; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + INFOPLIST_FILE = tests/Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MTL_ENABLE_DEBUG_INFO = YES; + ONLY_ACTIVE_ARCH = YES; + PRODUCT_BUNDLE_IDENTIFIER = pl.mawitech.MyTest; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = iphoneos; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + }; + name = Debug; + }; + D1BC4FE61B4EE7E200F52BA5 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 67FBC50F8CEC6F895B70106E /* Pods-BasePods-Tests.release.xcconfig */; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + INFOPLIST_FILE = tests/Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_BUNDLE_IDENTIFIER = pl.mawitech.MyTest; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = iphoneos; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + AA949BDD1BE8649C00F02242 /* Build configuration list for PBXNativeTarget "SwiftSerializer" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + AA949BDE1BE8649C00F02242 /* Debug */, + AA949BDF1BE8649C00F02242 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + D1BC4FD41B4EE6E600F52BA5 /* Build configuration list for PBXProject "swift-serializer" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + D1BC4FD51B4EE6E600F52BA5 /* Debug */, + D1BC4FD61B4EE6E600F52BA5 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + D1BC4FE41B4EE7E200F52BA5 /* Build configuration list for PBXNativeTarget "Tests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + D1BC4FE51B4EE7E200F52BA5 /* Debug */, + D1BC4FE61B4EE7E200F52BA5 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = D1BC4FD11B4EE6E600F52BA5 /* Project object */; +}