diff --git a/.gitignore b/.gitignore index 3f76306..222e8ec 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,13 @@ -# Xcode +# Mac OS X .DS_Store + +# Xcode + +## Build generated build/ +DerivedData + +## Various settings *.pbxuser !default.pbxuser *.mode1v3 @@ -9,12 +16,24 @@ build/ !default.mode2v3 *.perspectivev3 !default.perspectivev3 -*.xcworkspace -!default.xcworkspace xcuserdata -profile + +## Other +*.xccheckout *.moved-aside -DerivedData -.idea/ -Pods -Tests/RKValueTransformersTests.xcodeproj/xcshareddata/xcschemes/ \ No newline at end of file +*.xcuserstate +*.xcscmblueprint + +## Obj-C/Swift specific +*.hmap +*.ipa + +## Playgrounds +timeline.xctimeline +playground.xcworkspace + +# Swift Package Manager +.build/ + +# Carthage +Carthage/Build diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..5048bac --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "Carthage/Checkouts/expecta"] + path = Carthage/Checkouts/expecta + url = https://github.com/specta/expecta.git diff --git a/.travis.yml b/.travis.yml index 0f7bacf..f3367f7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,32 @@ language: objective-c -rvm: - - 2.1.3 -install: - - bundle install - - bundle exec pod install -script: bundle exec rake test +osx_image: xcode8.2 +env: + global: + - LC_CTYPE=en_US.UTF-8 + - LANG=en_US.UTF-8 + - WORKSPACE=RKValueTransformers.xcworkspace + - IOS_FRAMEWORK_SCHEME="RKValueTransformers iOS" + - MACOS_FRAMEWORK_SCHEME="RKValueTransformers macOS" + matrix: + - DESTINATION="OS=10.0,name=iPhone 6s Plus" SCHEME="$IOS_FRAMEWORK_SCHEME" RUN_TESTS="YES" + - DESTINATION="OS=9.0,name=iPad 2" SCHEME="$IOS_FRAMEWORK_SCHEME" RUN_TESTS="YES" + + - DESTINATION="arch=x86_64" SCHEME="$MACOS_FRAMEWORK_SCHEME" RUN_TESTS="YES" +script: + - set -o pipefail + - git submodule update --init + - xcodebuild -version + + # Build Framework in Debug and Run Tests if specified + - if [ $RUN_TESTS == "YES" ]; then + travis_retry xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -destination "$DESTINATION" -configuration Debug ONLY_ACTIVE_ARCH=NO ENABLE_TESTABILITY=YES test; + else + travis_retry xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -destination "$DESTINATION" -configuration Debug ONLY_ACTIVE_ARCH=NO build; + fi + + # Build Framework in Release and Run Tests if specified + - if [ $RUN_TESTS == "YES" ]; then + travis_retry xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -destination "$DESTINATION" -configuration Release ONLY_ACTIVE_ARCH=NO ENABLE_TESTABILITY=YES test; + else + travis_retry xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -destination "$DESTINATION" -configuration Release ONLY_ACTIVE_ARCH=NO build; + fi diff --git a/Cartfile.private b/Cartfile.private new file mode 100644 index 0000000..438fa9c --- /dev/null +++ b/Cartfile.private @@ -0,0 +1 @@ +github "specta/expecta" "master" diff --git a/Cartfile.resolved b/Cartfile.resolved new file mode 100644 index 0000000..a877c7c --- /dev/null +++ b/Cartfile.resolved @@ -0,0 +1 @@ +github "specta/expecta" "7f270dd634f0bade3a2d9fb4faf4f17cd5e70e18" diff --git a/Carthage/Checkouts/expecta b/Carthage/Checkouts/expecta new file mode 160000 index 0000000..7f270dd --- /dev/null +++ b/Carthage/Checkouts/expecta @@ -0,0 +1 @@ +Subproject commit 7f270dd634f0bade3a2d9fb4faf4f17cd5e70e18 diff --git a/Tests/OS X Tests-Info.plist b/Info.plist similarity index 65% rename from Tests/OS X Tests-Info.plist rename to Info.plist index 95311b9..fbe1e6b 100644 --- a/Tests/OS X Tests-Info.plist +++ b/Info.plist @@ -5,18 +5,20 @@ CFBundleDevelopmentRegion en CFBundleExecutable - ${EXECUTABLE_NAME} + $(EXECUTABLE_NAME) CFBundleIdentifier - org.restkit.${PRODUCT_NAME:rfc1034identifier} + $(PRODUCT_BUNDLE_IDENTIFIER) CFBundleInfoDictionaryVersion 6.0 + CFBundleName + $(PRODUCT_NAME) CFBundlePackageType - BNDL + FMWK CFBundleShortVersionString 1.0 - CFBundleSignature - ???? CFBundleVersion - 1 + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + diff --git a/Podfile b/Podfile deleted file mode 100644 index 26c480d..0000000 --- a/Podfile +++ /dev/null @@ -1,22 +0,0 @@ -source 'https://github.com/CocoaPods/Specs' - -xcodeproj 'Tests/RKValueTransformersTests' -workspace 'RKValueTransformers' -inhibit_all_warnings! - -def import_pods - pod 'Expecta', '~> 0.3.0' - pod 'RKValueTransformers', :path => '.' -end - -target :ios do - platform :ios, '5.1.1' - link_with 'iOS Tests' - import_pods -end - -target :osx do - platform :osx, '10.7' - link_with 'OS X Tests' - import_pods -end diff --git a/Podfile.lock b/Podfile.lock index 06d87b6..02b6664 100644 --- a/Podfile.lock +++ b/Podfile.lock @@ -14,4 +14,6 @@ SPEC CHECKSUMS: Expecta: a354d4633409dd9fe8c4f5ff5130426adbe31628 RKValueTransformers: e5ed67e3811229b616fe01bddeeafe3bb337b1b9 -COCOAPODS: 0.39.0 +PODFILE CHECKSUM: 9d0c9d120203139070f30c68d6d86f7381143c5e + +COCOAPODS: 1.2.0 diff --git a/README.md b/README.md index 0480db0..403133d 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,7 @@ RKValueTransformers =================== [![Build Status](http://img.shields.io/travis/RestKit/RKValueTransformers/master.svg?style=flat)](https://travis-ci.org/RestKit/RKValueTransformers) +[![Carthage Compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage) ![Pod Version](http://cocoapod-badges.herokuapp.com/v/RKValueTransformers/badge.png) ![Pod Platform](http://cocoapod-badges.herokuapp.com/p/RKValueTransformers/badge.png) diff --git a/RKValueTransformers.podspec b/RKValueTransformers.podspec index d79cc95..9f60281 100644 --- a/RKValueTransformers.podspec +++ b/RKValueTransformers.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'RKValueTransformers' - s.version = '1.1.3' + s.version = '1.1.5' s.license = 'Apache2' s.summary = 'A powerful value transformation API extracted from RestKit.' s.homepage = 'https://github.com/RestKit/RKValueTransformers' @@ -9,6 +9,6 @@ Pod::Spec.new do |s| s.source_files = 'Code' s.requires_arc = true - s.ios.deployment_target = '5.1.1' + s.ios.deployment_target = '6.0' s.osx.deployment_target = '10.7' end diff --git a/RKValueTransformers.xcodeproj/project.pbxproj b/RKValueTransformers.xcodeproj/project.pbxproj new file mode 100644 index 0000000..2240172 --- /dev/null +++ b/RKValueTransformers.xcodeproj/project.pbxproj @@ -0,0 +1,778 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + objects = { + +/* Begin PBXBuildFile section */ + FE0935991E80297D0092BF67 /* RKValueTransformers.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FE0935781E8029390092BF67 /* RKValueTransformers.framework */; }; + FE0935A81E8029880092BF67 /* RKValueTransformers.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FE0935881E80296E0092BF67 /* RKValueTransformers.framework */; }; + FE0935B41E8029C60092BF67 /* RKValueTransformers.h in Headers */ = {isa = PBXBuildFile; fileRef = FE0935AF1E8029C00092BF67 /* RKValueTransformers.h */; settings = {ATTRIBUTES = (Public, ); }; }; + FE0935B51E8029C70092BF67 /* RKValueTransformers.h in Headers */ = {isa = PBXBuildFile; fileRef = FE0935AF1E8029C00092BF67 /* RKValueTransformers.h */; settings = {ATTRIBUTES = (Public, ); }; }; + FE0935B61E8029CB0092BF67 /* RKValueTransformers.m in Sources */ = {isa = PBXBuildFile; fileRef = FE0935B01E8029C00092BF67 /* RKValueTransformers.m */; }; + FE0935B81E8029CC0092BF67 /* RKValueTransformers.m in Sources */ = {isa = PBXBuildFile; fileRef = FE0935B01E8029C00092BF67 /* RKValueTransformers.m */; }; + FE0935BE1E802AE70092BF67 /* RKValueTransformersTests.m in Sources */ = {isa = PBXBuildFile; fileRef = FE0935BA1E8029E00092BF67 /* RKValueTransformersTests.m */; }; + FE0935BF1E802AE70092BF67 /* RKValueTransformersTests.m in Sources */ = {isa = PBXBuildFile; fileRef = FE0935BA1E8029E00092BF67 /* RKValueTransformersTests.m */; }; + FE22D9421F44502600FBB6F6 /* Expecta.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FE22D9311F444FE000FBB6F6 /* Expecta.framework */; }; + FE22D9451F44507900FBB6F6 /* Expecta.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FE22D9331F444FE000FBB6F6 /* Expecta.framework */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + FE09359A1E80297D0092BF67 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = FE09356F1E8029390092BF67 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FE0935771E8029390092BF67; + remoteInfo = "RKValueTransformers iOS"; + }; + FE0935A91E8029880092BF67 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = FE09356F1E8029390092BF67 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FE0935871E80296E0092BF67; + remoteInfo = "RKValueTransformers macOS"; + }; + FE22D9301F444FE000FBB6F6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = FE22D9251F444FE000FBB6F6 /* Expecta.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 908379791A8B972C009844DA; + remoteInfo = Expecta; + }; + FE22D9321F444FE000FBB6F6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = FE22D9251F444FE000FBB6F6 /* Expecta.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 908379111A8B9660009844DA; + remoteInfo = "Expecta-iOS"; + }; + FE22D9341F444FE000FBB6F6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = FE22D9251F444FE000FBB6F6 /* Expecta.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 3A0A598C1AD4418C003DA3E4; + remoteInfo = ExpectaTests; + }; + FE22D9361F444FE000FBB6F6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = FE22D9251F444FE000FBB6F6 /* Expecta.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 3A0A59BF1AD441CB003DA3E4; + remoteInfo = "Expecta-iOSTests"; + }; + FE22D9381F444FE000FBB6F6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = FE22D9251F444FE000FBB6F6 /* Expecta.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = E9ACDF0C13B2DD520010F4D7; + remoteInfo = libExpecta; + }; + FE22D93A1F444FE000FBB6F6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = FE22D9251F444FE000FBB6F6 /* Expecta.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = E93067CE13B2E6D100EA26FF; + remoteInfo = "libExpecta-iOS"; + }; + FE22D93C1F444FE000FBB6F6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = FE22D9251F444FE000FBB6F6 /* Expecta.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = 9C4416F917FF3F4A00978F09; + remoteInfo = libExpectaTests; + }; + FE22D93E1F444FE000FBB6F6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = FE22D9251F444FE000FBB6F6 /* Expecta.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = E93067DA13B2E6D100EA26FF; + remoteInfo = "libExpecta-iOSTests"; + }; + FE22D9401F44501F00FBB6F6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = FE22D9251F444FE000FBB6F6 /* Expecta.xcodeproj */; + proxyType = 1; + remoteGlobalIDString = 908379781A8B972C009844DA; + remoteInfo = Expecta; + }; + FE22D9431F44507600FBB6F6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = FE22D9251F444FE000FBB6F6 /* Expecta.xcodeproj */; + proxyType = 1; + remoteGlobalIDString = 908379101A8B9660009844DA; + remoteInfo = "Expecta-iOS"; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + FE0935781E8029390092BF67 /* RKValueTransformers.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = RKValueTransformers.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + FE0935881E80296E0092BF67 /* RKValueTransformers.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = RKValueTransformers.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + FE0935941E80297D0092BF67 /* RKValueTransformers.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RKValueTransformers.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + FE0935A31E8029880092BF67 /* RKValueTransformers.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RKValueTransformers.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + FE0935AF1E8029C00092BF67 /* RKValueTransformers.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RKValueTransformers.h; sourceTree = ""; }; + FE0935B01E8029C00092BF67 /* RKValueTransformers.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RKValueTransformers.m; sourceTree = ""; }; + FE0935B21E8029C00092BF67 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + FE0935BA1E8029E00092BF67 /* RKValueTransformersTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RKValueTransformersTests.m; sourceTree = ""; }; + FE0935BD1E802ACC0092BF67 /* RKValueTransformers.podspec */ = {isa = PBXFileReference; lastKnownFileType = text; path = RKValueTransformers.podspec; sourceTree = ""; }; + FE22D9251F444FE000FBB6F6 /* Expecta.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = Expecta.xcodeproj; path = Carthage/Checkouts/expecta/Expecta.xcodeproj; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + FE0935741E8029390092BF67 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FE0935841E80296E0092BF67 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FE0935911E80297D0092BF67 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FE22D9451F44507900FBB6F6 /* Expecta.framework in Frameworks */, + FE0935991E80297D0092BF67 /* RKValueTransformers.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FE0935A01E8029880092BF67 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FE22D9421F44502600FBB6F6 /* Expecta.framework in Frameworks */, + FE0935A81E8029880092BF67 /* RKValueTransformers.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + FE09356E1E8029390092BF67 = { + isa = PBXGroup; + children = ( + FE0935BD1E802ACC0092BF67 /* RKValueTransformers.podspec */, + FE0935AE1E8029C00092BF67 /* Code */, + FE0935B11E8029C00092BF67 /* Tests */, + FE0935791E8029390092BF67 /* Products */, + FE22D9251F444FE000FBB6F6 /* Expecta.xcodeproj */, + ); + sourceTree = ""; + }; + FE0935791E8029390092BF67 /* Products */ = { + isa = PBXGroup; + children = ( + FE0935781E8029390092BF67 /* RKValueTransformers.framework */, + FE0935881E80296E0092BF67 /* RKValueTransformers.framework */, + FE0935941E80297D0092BF67 /* RKValueTransformers.xctest */, + FE0935A31E8029880092BF67 /* RKValueTransformers.xctest */, + ); + name = Products; + sourceTree = ""; + }; + FE0935AE1E8029C00092BF67 /* Code */ = { + isa = PBXGroup; + children = ( + FE0935AF1E8029C00092BF67 /* RKValueTransformers.h */, + FE0935B01E8029C00092BF67 /* RKValueTransformers.m */, + ); + path = Code; + sourceTree = ""; + }; + FE0935B11E8029C00092BF67 /* Tests */ = { + isa = PBXGroup; + children = ( + FE0935B21E8029C00092BF67 /* Info.plist */, + FE0935BA1E8029E00092BF67 /* RKValueTransformersTests.m */, + ); + path = Tests; + sourceTree = ""; + }; + FE22D9261F444FE000FBB6F6 /* Products */ = { + isa = PBXGroup; + children = ( + FE22D9311F444FE000FBB6F6 /* Expecta.framework */, + FE22D9331F444FE000FBB6F6 /* Expecta.framework */, + FE22D9351F444FE000FBB6F6 /* ExpectaTests.xctest */, + FE22D9371F444FE000FBB6F6 /* Expecta-iOSTests.xctest */, + FE22D9391F444FE000FBB6F6 /* libExpecta.a */, + FE22D93B1F444FE000FBB6F6 /* libExpecta.a */, + FE22D93D1F444FE000FBB6F6 /* libExpectaTests.xctest */, + FE22D93F1F444FE000FBB6F6 /* libExpecta-iOSTests.xctest */, + ); + name = Products; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXHeadersBuildPhase section */ + FE0935751E8029390092BF67 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + FE0935B41E8029C60092BF67 /* RKValueTransformers.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FE0935851E80296E0092BF67 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + FE0935B51E8029C70092BF67 /* RKValueTransformers.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXHeadersBuildPhase section */ + +/* Begin PBXNativeTarget section */ + FE0935771E8029390092BF67 /* RKValueTransformers iOS */ = { + isa = PBXNativeTarget; + buildConfigurationList = FE0935801E8029390092BF67 /* Build configuration list for PBXNativeTarget "RKValueTransformers iOS" */; + buildPhases = ( + FE0935731E8029390092BF67 /* Sources */, + FE0935741E8029390092BF67 /* Frameworks */, + FE0935751E8029390092BF67 /* Headers */, + FE0935761E8029390092BF67 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "RKValueTransformers iOS"; + productName = RKValueTransformers; + productReference = FE0935781E8029390092BF67 /* RKValueTransformers.framework */; + productType = "com.apple.product-type.framework"; + }; + FE0935871E80296E0092BF67 /* RKValueTransformers macOS */ = { + isa = PBXNativeTarget; + buildConfigurationList = FE09358D1E80296E0092BF67 /* Build configuration list for PBXNativeTarget "RKValueTransformers macOS" */; + buildPhases = ( + FE0935831E80296E0092BF67 /* Sources */, + FE0935841E80296E0092BF67 /* Frameworks */, + FE0935851E80296E0092BF67 /* Headers */, + FE0935861E80296E0092BF67 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "RKValueTransformers macOS"; + productName = "RKValueTransformers macOS"; + productReference = FE0935881E80296E0092BF67 /* RKValueTransformers.framework */; + productType = "com.apple.product-type.framework"; + }; + FE0935931E80297D0092BF67 /* RKValueTransformers iOS Tests */ = { + isa = PBXNativeTarget; + buildConfigurationList = FE09359C1E80297D0092BF67 /* Build configuration list for PBXNativeTarget "RKValueTransformers iOS Tests" */; + buildPhases = ( + FE0935901E80297D0092BF67 /* Sources */, + FE0935911E80297D0092BF67 /* Frameworks */, + FE0935921E80297D0092BF67 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + FE22D9441F44507600FBB6F6 /* PBXTargetDependency */, + FE09359B1E80297D0092BF67 /* PBXTargetDependency */, + ); + name = "RKValueTransformers iOS Tests"; + productName = "RKValueTransformers iOS Tests"; + productReference = FE0935941E80297D0092BF67 /* RKValueTransformers.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; + FE0935A21E8029880092BF67 /* RKValueTransformers macOS Tests */ = { + isa = PBXNativeTarget; + buildConfigurationList = FE0935AB1E8029880092BF67 /* Build configuration list for PBXNativeTarget "RKValueTransformers macOS Tests" */; + buildPhases = ( + FE09359F1E8029880092BF67 /* Sources */, + FE0935A01E8029880092BF67 /* Frameworks */, + FE0935A11E8029880092BF67 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + FE22D9411F44501F00FBB6F6 /* PBXTargetDependency */, + FE0935AA1E8029880092BF67 /* PBXTargetDependency */, + ); + name = "RKValueTransformers macOS Tests"; + productName = "RKValueTransformers macOS Tests"; + productReference = FE0935A31E8029880092BF67 /* RKValueTransformers.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + FE09356F1E8029390092BF67 /* Project object */ = { + isa = PBXProject; + attributes = { + LastUpgradeCheck = 0830; + ORGANIZATIONNAME = RestKit; + TargetAttributes = { + FE0935771E8029390092BF67 = { + CreatedOnToolsVersion = 8.2.1; + ProvisioningStyle = Automatic; + }; + FE0935871E80296E0092BF67 = { + CreatedOnToolsVersion = 8.2.1; + ProvisioningStyle = Automatic; + }; + FE0935931E80297D0092BF67 = { + CreatedOnToolsVersion = 8.2.1; + ProvisioningStyle = Automatic; + }; + FE0935A21E8029880092BF67 = { + CreatedOnToolsVersion = 8.2.1; + ProvisioningStyle = Automatic; + }; + }; + }; + buildConfigurationList = FE0935721E8029390092BF67 /* Build configuration list for PBXProject "RKValueTransformers" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = English; + hasScannedForEncodings = 0; + knownRegions = ( + en, + ); + mainGroup = FE09356E1E8029390092BF67; + productRefGroup = FE0935791E8029390092BF67 /* Products */; + projectDirPath = ""; + projectReferences = ( + { + ProductGroup = FE22D9261F444FE000FBB6F6 /* Products */; + ProjectRef = FE22D9251F444FE000FBB6F6 /* Expecta.xcodeproj */; + }, + ); + projectRoot = ""; + targets = ( + FE0935771E8029390092BF67 /* RKValueTransformers iOS */, + FE0935931E80297D0092BF67 /* RKValueTransformers iOS Tests */, + FE0935871E80296E0092BF67 /* RKValueTransformers macOS */, + FE0935A21E8029880092BF67 /* RKValueTransformers macOS Tests */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXReferenceProxy section */ + FE22D9311F444FE000FBB6F6 /* Expecta.framework */ = { + isa = PBXReferenceProxy; + fileType = wrapper.framework; + path = Expecta.framework; + remoteRef = FE22D9301F444FE000FBB6F6 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + FE22D9331F444FE000FBB6F6 /* Expecta.framework */ = { + isa = PBXReferenceProxy; + fileType = wrapper.framework; + path = Expecta.framework; + remoteRef = FE22D9321F444FE000FBB6F6 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + FE22D9351F444FE000FBB6F6 /* ExpectaTests.xctest */ = { + isa = PBXReferenceProxy; + fileType = wrapper.cfbundle; + path = ExpectaTests.xctest; + remoteRef = FE22D9341F444FE000FBB6F6 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + FE22D9371F444FE000FBB6F6 /* Expecta-iOSTests.xctest */ = { + isa = PBXReferenceProxy; + fileType = wrapper.cfbundle; + path = "Expecta-iOSTests.xctest"; + remoteRef = FE22D9361F444FE000FBB6F6 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + FE22D9391F444FE000FBB6F6 /* libExpecta.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = libExpecta.a; + remoteRef = FE22D9381F444FE000FBB6F6 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + FE22D93B1F444FE000FBB6F6 /* libExpecta.a */ = { + isa = PBXReferenceProxy; + fileType = archive.ar; + path = libExpecta.a; + remoteRef = FE22D93A1F444FE000FBB6F6 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + FE22D93D1F444FE000FBB6F6 /* libExpectaTests.xctest */ = { + isa = PBXReferenceProxy; + fileType = wrapper.cfbundle; + path = libExpectaTests.xctest; + remoteRef = FE22D93C1F444FE000FBB6F6 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; + FE22D93F1F444FE000FBB6F6 /* libExpecta-iOSTests.xctest */ = { + isa = PBXReferenceProxy; + fileType = wrapper.cfbundle; + path = "libExpecta-iOSTests.xctest"; + remoteRef = FE22D93E1F444FE000FBB6F6 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; +/* End PBXReferenceProxy section */ + +/* Begin PBXResourcesBuildPhase section */ + FE0935761E8029390092BF67 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FE0935861E80296E0092BF67 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FE0935921E80297D0092BF67 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FE0935A11E8029880092BF67 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + FE0935731E8029390092BF67 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FE0935B61E8029CB0092BF67 /* RKValueTransformers.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FE0935831E80296E0092BF67 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FE0935B81E8029CC0092BF67 /* RKValueTransformers.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FE0935901E80297D0092BF67 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FE0935BE1E802AE70092BF67 /* RKValueTransformersTests.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FE09359F1E8029880092BF67 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + FE0935BF1E802AE70092BF67 /* RKValueTransformersTests.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + FE09359B1E80297D0092BF67 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = FE0935771E8029390092BF67 /* RKValueTransformers iOS */; + targetProxy = FE09359A1E80297D0092BF67 /* PBXContainerItemProxy */; + }; + FE0935AA1E8029880092BF67 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = FE0935871E80296E0092BF67 /* RKValueTransformers macOS */; + targetProxy = FE0935A91E8029880092BF67 /* PBXContainerItemProxy */; + }; + FE22D9411F44501F00FBB6F6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Expecta; + targetProxy = FE22D9401F44501F00FBB6F6 /* PBXContainerItemProxy */; + }; + FE22D9441F44507600FBB6F6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Expecta-iOS"; + targetProxy = FE22D9431F44507600FBB6F6 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin XCBuildConfiguration section */ + FE09357E1E8029390092BF67 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + 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_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_ERROR; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + 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; + 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; + IPHONEOS_DEPLOYMENT_TARGET = 10.2; + MTL_ENABLE_DEBUG_INFO = YES; + ONLY_ACTIVE_ARCH = YES; + PRODUCT_NAME = RKValueTransformers; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + FE09357F1E8029390092BF67 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + 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_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_ERROR; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + 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"; + 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; + IPHONEOS_DEPLOYMENT_TARGET = 10.2; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = RKValueTransformers; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + FE0935811E8029390092BF67 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + PRODUCT_BUNDLE_IDENTIFIER = org.restkit.RKValueTransformers; + SKIP_INSTALL = YES; + }; + name = Debug; + }; + FE0935821E8029390092BF67 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + PRODUCT_BUNDLE_IDENTIFIER = org.restkit.RKValueTransformers; + SKIP_INSTALL = YES; + }; + name = Release; + }; + FE09358E1E80296E0092BF67 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_IDENTITY = "-"; + COMBINE_HIDPI_IMAGES = YES; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + FRAMEWORK_VERSION = A; + INFOPLIST_FILE = Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; + MACOSX_DEPLOYMENT_TARGET = 10.7; + PRODUCT_BUNDLE_IDENTIFIER = "org.restkit.RKValueTransformers-macOS"; + SDKROOT = macosx; + SKIP_INSTALL = YES; + }; + name = Debug; + }; + FE09358F1E80296E0092BF67 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_IDENTITY = "-"; + COMBINE_HIDPI_IMAGES = YES; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + FRAMEWORK_VERSION = A; + INFOPLIST_FILE = Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; + MACOSX_DEPLOYMENT_TARGET = 10.7; + PRODUCT_BUNDLE_IDENTIFIER = "org.restkit.RKValueTransformers-macOS"; + SDKROOT = macosx; + SKIP_INSTALL = YES; + }; + name = Release; + }; + FE09359D1E80297D0092BF67 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Tests/Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + PRODUCT_BUNDLE_IDENTIFIER = "org.restkit.RKValueTransformers-iOS-Tests"; + }; + name = Debug; + }; + FE09359E1E80297D0092BF67 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + INFOPLIST_FILE = Tests/Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + PRODUCT_BUNDLE_IDENTIFIER = "org.restkit.RKValueTransformers-iOS-Tests"; + }; + name = Release; + }; + FE0935AC1E8029880092BF67 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_IDENTITY = "-"; + COMBINE_HIDPI_IMAGES = YES; + INFOPLIST_FILE = Tests/Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks"; + MACOSX_DEPLOYMENT_TARGET = 10.12; + PRODUCT_BUNDLE_IDENTIFIER = "org.restkit.RKValueTransformers-macOS-Tests"; + SDKROOT = macosx; + }; + name = Debug; + }; + FE0935AD1E8029880092BF67 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_IDENTITY = "-"; + COMBINE_HIDPI_IMAGES = YES; + INFOPLIST_FILE = Tests/Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks"; + MACOSX_DEPLOYMENT_TARGET = 10.12; + PRODUCT_BUNDLE_IDENTIFIER = "org.restkit.RKValueTransformers-macOS-Tests"; + SDKROOT = macosx; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + FE0935721E8029390092BF67 /* Build configuration list for PBXProject "RKValueTransformers" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FE09357E1E8029390092BF67 /* Debug */, + FE09357F1E8029390092BF67 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + FE0935801E8029390092BF67 /* Build configuration list for PBXNativeTarget "RKValueTransformers iOS" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FE0935811E8029390092BF67 /* Debug */, + FE0935821E8029390092BF67 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + FE09358D1E80296E0092BF67 /* Build configuration list for PBXNativeTarget "RKValueTransformers macOS" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FE09358E1E80296E0092BF67 /* Debug */, + FE09358F1E80296E0092BF67 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + FE09359C1E80297D0092BF67 /* Build configuration list for PBXNativeTarget "RKValueTransformers iOS Tests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FE09359D1E80297D0092BF67 /* Debug */, + FE09359E1E80297D0092BF67 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + FE0935AB1E8029880092BF67 /* Build configuration list for PBXNativeTarget "RKValueTransformers macOS Tests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FE0935AC1E8029880092BF67 /* Debug */, + FE0935AD1E8029880092BF67 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = FE09356F1E8029390092BF67 /* Project object */; +} diff --git a/RKValueTransformers.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/RKValueTransformers.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..1c0f692 --- /dev/null +++ b/RKValueTransformers.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/RKValueTransformers.xcodeproj/xcshareddata/xcschemes/RKValueTransformers iOS.xcscheme b/RKValueTransformers.xcodeproj/xcshareddata/xcschemes/RKValueTransformers iOS.xcscheme new file mode 100644 index 0000000..7f4abba --- /dev/null +++ b/RKValueTransformers.xcodeproj/xcshareddata/xcschemes/RKValueTransformers iOS.xcscheme @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/RKValueTransformers.xcodeproj/xcshareddata/xcschemes/RKValueTransformers macOS.xcscheme b/RKValueTransformers.xcodeproj/xcshareddata/xcschemes/RKValueTransformers macOS.xcscheme new file mode 100644 index 0000000..ef3f7cc --- /dev/null +++ b/RKValueTransformers.xcodeproj/xcshareddata/xcschemes/RKValueTransformers macOS.xcscheme @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/RKValueTransformers.xcworkspace/contents.xcworkspacedata b/RKValueTransformers.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..cac21c0 --- /dev/null +++ b/RKValueTransformers.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/Tests/iOS Tests-Info.plist b/Tests/Info.plist similarity index 77% rename from Tests/iOS Tests-Info.plist rename to Tests/Info.plist index 95311b9..6c6c23c 100644 --- a/Tests/iOS Tests-Info.plist +++ b/Tests/Info.plist @@ -5,17 +5,17 @@ CFBundleDevelopmentRegion en CFBundleExecutable - ${EXECUTABLE_NAME} + $(EXECUTABLE_NAME) CFBundleIdentifier - org.restkit.${PRODUCT_NAME:rfc1034identifier} + $(PRODUCT_BUNDLE_IDENTIFIER) CFBundleInfoDictionaryVersion 6.0 + CFBundleName + $(PRODUCT_NAME) CFBundlePackageType BNDL CFBundleShortVersionString 1.0 - CFBundleSignature - ???? CFBundleVersion 1 diff --git a/Tests/Prefix.pch b/Tests/Prefix.pch deleted file mode 100644 index 09ced87..0000000 --- a/Tests/Prefix.pch +++ /dev/null @@ -1,16 +0,0 @@ -#import - -#if __IPHONE_OS_VERSION_MIN_REQUIRED - #ifndef __IPHONE_3_0 - #warning "This project uses features only available in iPhone SDK 3.0 and later." - #endif - - #ifdef __OBJC__ - #import - #import - #endif -#else - #ifdef __OBJC__ - #import - #endif -#endif diff --git a/Tests/RKValueTransformersTests.m b/Tests/RKValueTransformersTests.m index 207fe25..757d99c 100644 --- a/Tests/RKValueTransformersTests.m +++ b/Tests/RKValueTransformersTests.m @@ -20,7 +20,7 @@ #import #define EXP_SHORTHAND -#import "Expecta.h" +#import #import "RKValueTransformers.h" // Used to test subclass raising diff --git a/Tests/RKValueTransformersTests.xcodeproj/project.pbxproj b/Tests/RKValueTransformersTests.xcodeproj/project.pbxproj deleted file mode 100644 index c25ddaf..0000000 --- a/Tests/RKValueTransformersTests.xcodeproj/project.pbxproj +++ /dev/null @@ -1,553 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 46; - objects = { - -/* Begin PBXBuildFile section */ - 0615C6A288014FDA9FD44B10 /* libPods-ios.a in Frameworks */ = {isa = PBXBuildFile; fileRef = C4355EA794D84F2BB2496AF8 /* libPods-ios.a */; }; - 25880D7E18D9CF21009F0462 /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 25880D7C18D9CF1A009F0462 /* XCTest.framework */; }; - 25880D8518D9D043009F0462 /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 25880D7C18D9CF1A009F0462 /* XCTest.framework */; }; - 25880D8618D9D043009F0462 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 25A0134F17DBC212006C2BD6 /* Foundation.framework */; }; - 25880D8718D9D043009F0462 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 25A0134D17DBC212006C2BD6 /* UIKit.framework */; }; - 25880D9418D9D052009F0462 /* RKValueTransformersTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 25A0137817DBC484006C2BD6 /* RKValueTransformersTests.m */; }; - 25A0136617DBC225006C2BD6 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 25A0136517DBC225006C2BD6 /* Cocoa.framework */; }; - 25A0137A17DBC484006C2BD6 /* RKValueTransformersTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 25A0137817DBC484006C2BD6 /* RKValueTransformersTests.m */; }; - 3515F08DE8EE495D968E7CDA /* libPods-osx.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 169BB4EE1051441592FCCA22 /* libPods-osx.a */; }; -/* End PBXBuildFile section */ - -/* Begin PBXFileReference section */ - 169BB4EE1051441592FCCA22 /* libPods-osx.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-osx.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 25880D7C18D9CF1A009F0462 /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; }; - 25880D8418D9D043009F0462 /* iOS Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "iOS Tests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; - 25A0134D17DBC212006C2BD6 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; }; - 25A0134F17DBC212006C2BD6 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; - 25A0136317DBC225006C2BD6 /* OS X Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "OS X Tests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; - 25A0136517DBC225006C2BD6 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; }; - 25A0136817DBC225006C2BD6 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = System/Library/Frameworks/AppKit.framework; sourceTree = SDKROOT; }; - 25A0136917DBC225006C2BD6 /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = System/Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; }; - 25A0136A17DBC225006C2BD6 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; - 25A0137817DBC484006C2BD6 /* RKValueTransformersTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RKValueTransformersTests.m; sourceTree = ""; }; - 4DB71BEE6D37E2AD141266D6 /* Pods-osx.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-osx.release.xcconfig"; path = "../Pods/Target Support Files/Pods-osx/Pods-osx.release.xcconfig"; sourceTree = ""; }; - 5A7768B0053CB54A204AB9A1 /* Pods-osx.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-osx.debug.xcconfig"; path = "../Pods/Target Support Files/Pods-osx/Pods-osx.debug.xcconfig"; sourceTree = ""; }; - 99EABD5C67AD0E0490D8020E /* Pods-ios.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ios.release.xcconfig"; path = "../Pods/Target Support Files/Pods-ios/Pods-ios.release.xcconfig"; sourceTree = ""; }; - B6DF6DD3C6C0407A8FA9E1F2 /* libPods.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libPods.a; sourceTree = BUILT_PRODUCTS_DIR; }; - C33812A5D7846EBC0F1083EE /* Pods-ios.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ios.debug.xcconfig"; path = "../Pods/Target Support Files/Pods-ios/Pods-ios.debug.xcconfig"; sourceTree = ""; }; - C4355EA794D84F2BB2496AF8 /* libPods-ios.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-ios.a"; sourceTree = BUILT_PRODUCTS_DIR; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 25880D8118D9D043009F0462 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 25880D8518D9D043009F0462 /* XCTest.framework in Frameworks */, - 25880D8718D9D043009F0462 /* UIKit.framework in Frameworks */, - 25880D8618D9D043009F0462 /* Foundation.framework in Frameworks */, - 0615C6A288014FDA9FD44B10 /* libPods-ios.a in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 25A0135F17DBC225006C2BD6 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 25880D7E18D9CF21009F0462 /* XCTest.framework in Frameworks */, - 25A0136617DBC225006C2BD6 /* Cocoa.framework in Frameworks */, - 3515F08DE8EE495D968E7CDA /* libPods-osx.a in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 25A0133C17DBC1F4006C2BD6 = { - isa = PBXGroup; - children = ( - 25A0137817DBC484006C2BD6 /* RKValueTransformersTests.m */, - 25A0134A17DBC212006C2BD6 /* Frameworks */, - 25A0134917DBC212006C2BD6 /* Products */, - 4094DB36FB71589E6ADE7665 /* Pods */, - ); - sourceTree = ""; - }; - 25A0134917DBC212006C2BD6 /* Products */ = { - isa = PBXGroup; - children = ( - 25A0136317DBC225006C2BD6 /* OS X Tests.xctest */, - 25880D8418D9D043009F0462 /* iOS Tests.xctest */, - ); - name = Products; - sourceTree = ""; - }; - 25A0134A17DBC212006C2BD6 /* Frameworks */ = { - isa = PBXGroup; - children = ( - 25880D7C18D9CF1A009F0462 /* XCTest.framework */, - 25A0134D17DBC212006C2BD6 /* UIKit.framework */, - 25A0134F17DBC212006C2BD6 /* Foundation.framework */, - 25A0136517DBC225006C2BD6 /* Cocoa.framework */, - 25A0136717DBC225006C2BD6 /* Other Frameworks */, - B6DF6DD3C6C0407A8FA9E1F2 /* libPods.a */, - C4355EA794D84F2BB2496AF8 /* libPods-ios.a */, - 169BB4EE1051441592FCCA22 /* libPods-osx.a */, - ); - name = Frameworks; - sourceTree = ""; - }; - 25A0136717DBC225006C2BD6 /* Other Frameworks */ = { - isa = PBXGroup; - children = ( - 25A0136817DBC225006C2BD6 /* AppKit.framework */, - 25A0136917DBC225006C2BD6 /* CoreData.framework */, - 25A0136A17DBC225006C2BD6 /* Foundation.framework */, - ); - name = "Other Frameworks"; - sourceTree = ""; - }; - 4094DB36FB71589E6ADE7665 /* Pods */ = { - isa = PBXGroup; - children = ( - C33812A5D7846EBC0F1083EE /* Pods-ios.debug.xcconfig */, - 99EABD5C67AD0E0490D8020E /* Pods-ios.release.xcconfig */, - 5A7768B0053CB54A204AB9A1 /* Pods-osx.debug.xcconfig */, - 4DB71BEE6D37E2AD141266D6 /* Pods-osx.release.xcconfig */, - ); - name = Pods; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXNativeTarget section */ - 25880D8318D9D043009F0462 /* iOS Tests */ = { - isa = PBXNativeTarget; - buildConfigurationList = 25880D9118D9D043009F0462 /* Build configuration list for PBXNativeTarget "iOS Tests" */; - buildPhases = ( - 000DA2126C884AD291C4F7EA /* Check Pods Manifest.lock */, - 25880D8018D9D043009F0462 /* Sources */, - 25880D8118D9D043009F0462 /* Frameworks */, - 25880D8218D9D043009F0462 /* Resources */, - 00C03A8CDA0D4392A8221223 /* Copy Pods Resources */, - A53AED637FE54EE709B5FDB9 /* Embed Pods Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "iOS Tests"; - productName = "iOS Tests"; - productReference = 25880D8418D9D043009F0462 /* iOS Tests.xctest */; - productType = "com.apple.product-type.bundle.unit-test"; - }; - 25A0136217DBC225006C2BD6 /* OS X Tests */ = { - isa = PBXNativeTarget; - buildConfigurationList = 25A0137517DBC225006C2BD6 /* Build configuration list for PBXNativeTarget "OS X Tests" */; - buildPhases = ( - D7104310C80B41F4BB47B79E /* Check Pods Manifest.lock */, - 25A0135E17DBC225006C2BD6 /* Sources */, - 25A0135F17DBC225006C2BD6 /* Frameworks */, - 25A0136017DBC225006C2BD6 /* Resources */, - 25A0136117DBC225006C2BD6 /* ShellScript */, - 6D4E46925E8345AE98296D4A /* Copy Pods Resources */, - 2D2BDEE4986F3CFF703D31D1 /* Embed Pods Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "OS X Tests"; - productName = "OS X Tests"; - productReference = 25A0136317DBC225006C2BD6 /* OS X Tests.xctest */; - productType = "com.apple.product-type.bundle.unit-test"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - 25A0133D17DBC1F4006C2BD6 /* Project object */ = { - isa = PBXProject; - attributes = { - LastTestingUpgradeCheck = 0510; - LastUpgradeCheck = 0500; - }; - buildConfigurationList = 25A0134017DBC1F4006C2BD6 /* Build configuration list for PBXProject "RKValueTransformersTests" */; - compatibilityVersion = "Xcode 3.2"; - developmentRegion = English; - hasScannedForEncodings = 0; - knownRegions = ( - en, - ); - mainGroup = 25A0133C17DBC1F4006C2BD6; - productRefGroup = 25A0134917DBC212006C2BD6 /* Products */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - 25880D8318D9D043009F0462 /* iOS Tests */, - 25A0136217DBC225006C2BD6 /* OS X Tests */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXResourcesBuildPhase section */ - 25880D8218D9D043009F0462 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 25A0136017DBC225006C2BD6 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXShellScriptBuildPhase section */ - 000DA2126C884AD291C4F7EA /* Check Pods Manifest.lock */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ); - name = "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; - }; - 00C03A8CDA0D4392A8221223 /* Copy Pods Resources */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ); - name = "Copy Pods Resources"; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "\"${SRCROOT}/../Pods/Target Support Files/Pods-ios/Pods-ios-resources.sh\"\n"; - showEnvVarsInLog = 0; - }; - 25A0136117DBC225006C2BD6 /* ShellScript */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ); - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "# Run the unit tests in this test bundle.\n\"${SYSTEM_DEVELOPER_DIR}/Tools/RunUnitTests\"\n"; - }; - 2D2BDEE4986F3CFF703D31D1 /* Embed Pods Frameworks */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ); - name = "Embed Pods Frameworks"; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "\"${SRCROOT}/../Pods/Target Support Files/Pods-osx/Pods-osx-frameworks.sh\"\n"; - showEnvVarsInLog = 0; - }; - 6D4E46925E8345AE98296D4A /* Copy Pods Resources */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ); - name = "Copy Pods Resources"; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "\"${SRCROOT}/../Pods/Target Support Files/Pods-osx/Pods-osx-resources.sh\"\n"; - showEnvVarsInLog = 0; - }; - A53AED637FE54EE709B5FDB9 /* Embed Pods Frameworks */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ); - name = "Embed Pods Frameworks"; - outputPaths = ( - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "\"${SRCROOT}/../Pods/Target Support Files/Pods-ios/Pods-ios-frameworks.sh\"\n"; - showEnvVarsInLog = 0; - }; - D7104310C80B41F4BB47B79E /* Check Pods Manifest.lock */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputPaths = ( - ); - name = "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 */ - 25880D8018D9D043009F0462 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 25880D9418D9D052009F0462 /* RKValueTransformersTests.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 25A0135E17DBC225006C2BD6 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 25A0137A17DBC484006C2BD6 /* RKValueTransformersTests.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin XCBuildConfiguration section */ - 25880D9218D9D043009F0462 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = C33812A5D7846EBC0F1083EE /* Pods-ios.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__DUPLICATE_METHOD_MATCH = YES; - COPY_PHASE_STRIP = NO; - FRAMEWORK_SEARCH_PATHS = ( - "$(SDKROOT)/Developer/Library/Frameworks", - "$(inherited)", - "$(DEVELOPER_FRAMEWORKS_DIR)", - ); - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREFIX_HEADER = Prefix.pch; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = NO; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - INFOPLIST_FILE = "iOS Tests-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 7.1; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = iphoneos; - WRAPPER_EXTENSION = xctest; - }; - name = Debug; - }; - 25880D9318D9D043009F0462 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 99EABD5C67AD0E0490D8020E /* Pods-ios.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__DUPLICATE_METHOD_MATCH = YES; - COPY_PHASE_STRIP = YES; - ENABLE_NS_ASSERTIONS = NO; - FRAMEWORK_SEARCH_PATHS = ( - "$(SDKROOT)/Developer/Library/Frameworks", - "$(inherited)", - "$(DEVELOPER_FRAMEWORKS_DIR)", - ); - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREFIX_HEADER = Prefix.pch; - 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 = "iOS Tests-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 7.1; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = iphoneos; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = xctest; - }; - name = Release; - }; - 25A0134117DBC1F4006C2BD6 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - IPHONEOS_DEPLOYMENT_TARGET = 5.1.1; - MACOSX_DEPLOYMENT_TARGET = 10.7; - ONLY_ACTIVE_ARCH = YES; - }; - name = Debug; - }; - 25A0134217DBC1F4006C2BD6 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - IPHONEOS_DEPLOYMENT_TARGET = 5.1.1; - MACOSX_DEPLOYMENT_TARGET = 10.7; - }; - name = Release; - }; - 25A0137617DBC225006C2BD6 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 5A7768B0053CB54A204AB9A1 /* Pods-osx.debug.xcconfig */; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - COMBINE_HIDPI_IMAGES = YES; - COPY_PHASE_STRIP = NO; - FRAMEWORK_SEARCH_PATHS = ( - "\"$(DEVELOPER_LIBRARY_DIR)/Frameworks\"", - "$(inherited)", - "$(DEVELOPER_FRAMEWORKS_DIR)", - ); - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_ENABLE_OBJC_EXCEPTIONS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREFIX_HEADER = Prefix.pch; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = NO; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - INFOPLIST_FILE = "OS X Tests-Info.plist"; - MACOSX_DEPLOYMENT_TARGET = 10.8; - ONLY_ACTIVE_ARCH = YES; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = macosx; - }; - name = Debug; - }; - 25A0137717DBC225006C2BD6 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 4DB71BEE6D37E2AD141266D6 /* Pods-osx.release.xcconfig */; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - COMBINE_HIDPI_IMAGES = YES; - COPY_PHASE_STRIP = YES; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - FRAMEWORK_SEARCH_PATHS = ( - "\"$(DEVELOPER_LIBRARY_DIR)/Frameworks\"", - "$(inherited)", - "$(DEVELOPER_FRAMEWORKS_DIR)", - ); - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_ENABLE_OBJC_EXCEPTIONS = YES; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREFIX_HEADER = Prefix.pch; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - INFOPLIST_FILE = "OS X Tests-Info.plist"; - MACOSX_DEPLOYMENT_TARGET = 10.8; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = macosx; - }; - name = Release; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 25880D9118D9D043009F0462 /* Build configuration list for PBXNativeTarget "iOS Tests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 25880D9218D9D043009F0462 /* Debug */, - 25880D9318D9D043009F0462 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 25A0134017DBC1F4006C2BD6 /* Build configuration list for PBXProject "RKValueTransformersTests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 25A0134117DBC1F4006C2BD6 /* Debug */, - 25A0134217DBC1F4006C2BD6 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 25A0137517DBC225006C2BD6 /* Build configuration list for PBXNativeTarget "OS X Tests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 25A0137617DBC225006C2BD6 /* Debug */, - 25A0137717DBC225006C2BD6 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; -/* End XCConfigurationList section */ - }; - rootObject = 25A0133D17DBC1F4006C2BD6 /* Project object */; -} diff --git a/Tests/Schemes/OS X Tests.xcscheme b/Tests/Schemes/OS X Tests.xcscheme deleted file mode 100644 index 5172081..0000000 --- a/Tests/Schemes/OS X Tests.xcscheme +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Tests/Schemes/iOS Tests.xcscheme b/Tests/Schemes/iOS Tests.xcscheme deleted file mode 100644 index 22b3596..0000000 --- a/Tests/Schemes/iOS Tests.xcscheme +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - -