Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Compatibility with Bolts 1.9+ #11

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions BFTaskPromise.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "BFTaskPromise"
s.version = "2.1.0"
s.version = "2.2.0"
s.summary = "An Objective-C category for BFTask class in Bolts-iOS."

s.description = <<-DESC
Expand All @@ -23,5 +23,5 @@ Pod::Spec.new do |s|

s.requires_arc = true

s.dependency 'Bolts/Tasks', '~> 1.2'
s.dependency 'Bolts/Tasks', '~> 1.9'
end
2 changes: 1 addition & 1 deletion Classes/BFTask+PromiseLike.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ typedef NS_ENUM(NSInteger, BFPTaskErrorCode) {

typedef id (^BFPSuccessResultBlock)(id result);
typedef id (^BFPErrorResultBlock)(NSError *error);
typedef BFTask *(^BFPFinallyBlock)();
typedef BFTask *(^BFPFinallyBlock)(void);

@interface BFTask (PromiseLike)

Expand Down
10 changes: 1 addition & 9 deletions Classes/BFTask+PromiseLike.m
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ @implementation BFTask (PromiseLike)

- (BFTask *)thenWithExecutor:(BFExecutor *)executor withBlock:(BFPSuccessResultBlock)block {
return [self continueWithExecutor:executor withBlock: ^id (BFTask *task) {
if ([task error] != nil || [task exception] != nil || [task isCancelled]) {
if ([task error] != nil || [task isCancelled]) {
return task;
} else {
return block(task.result);
Expand All @@ -45,14 +45,6 @@ - (BFTask *)catchWithExecutor:(BFExecutor *)executor withBlock:(BFPErrorResultBl
return [self continueWithExecutor:executor withBlock: ^id (BFTask *task) {
if (task.error) {
return block(task.error);
} else if (task.exception) {
NSMutableDictionary *dict = [NSMutableDictionary dictionary];
[dict setObject:task.exception forKey:BFPUnderlyingExceptionKey];
NSString *reason = task.exception.reason;
if (reason != nil) {
[dict setObject:reason forKey:NSLocalizedDescriptionKey];
}
return block([NSError errorWithDomain:BFPTaskErrorDomain code:BFPTaskErrorException userInfo:dict]);
} else {
return task;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

/* Begin PBXBuildFile section */
500FCC601ADD12D500483B14 /* BFTaskPromiseCppTests.mm in Sources */ = {isa = PBXBuildFile; fileRef = 500FCC5F1ADD12D500483B14 /* BFTaskPromiseCppTests.mm */; };
50132F941A55970900FEFB30 /* BFTask+PromiseLike.m in Sources */ = {isa = PBXBuildFile; fileRef = 50E9715D19A1CA1A001236EB /* BFTask+PromiseLike.m */; };
502A5F661B087D1300FAF832 /* SampleViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 502A5F651B087D1300FAF832 /* SampleViewController.m */; };
50CB3CE719A7866B0017ABC2 /* XCTestExpectation+OHRetroCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 50CB3CE619A7866B0017ABC2 /* XCTestExpectation+OHRetroCompat.m */; };
50DCEF41199EE58400EC94DC /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 50DCEF40199EE58400EC94DC /* Foundation.framework */; };
Expand All @@ -23,7 +22,6 @@
50DCEF5C199EE58400EC94DC /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 50DCEF44199EE58400EC94DC /* UIKit.framework */; };
50DCEF64199EE58400EC94DC /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 50DCEF62199EE58400EC94DC /* InfoPlist.strings */; };
50DCEF66199EE58400EC94DC /* BFTaskPromiseExampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 50DCEF65199EE58400EC94DC /* BFTaskPromiseExampleTests.m */; };
50E9715E19A1CA1A001236EB /* BFTask+PromiseLike.m in Sources */ = {isa = PBXBuildFile; fileRef = 50E9715D19A1CA1A001236EB /* BFTask+PromiseLike.m */; };
7068DB2A2CB9FD310C818679 /* libPods-BFTaskPromiseExample.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 84AE5E18140601A5D84D1491 /* libPods-BFTaskPromiseExample.a */; };
AA975B774F6BAB89CBBF5FC6 /* libPods-BFTaskPromiseExampleTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 8F368123E4D055378AB0D5DC /* libPods-BFTaskPromiseExampleTests.a */; };
/* End PBXBuildFile section */
Expand Down Expand Up @@ -61,8 +59,6 @@
50DCEF61199EE58400EC94DC /* BFTaskPromiseExampleTests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "BFTaskPromiseExampleTests-Info.plist"; sourceTree = "<group>"; };
50DCEF63199EE58400EC94DC /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
50DCEF65199EE58400EC94DC /* BFTaskPromiseExampleTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BFTaskPromiseExampleTests.m; sourceTree = "<group>"; };
50E9715C19A1CA1A001236EB /* BFTask+PromiseLike.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "BFTask+PromiseLike.h"; sourceTree = "<group>"; };
50E9715D19A1CA1A001236EB /* BFTask+PromiseLike.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "BFTask+PromiseLike.m"; sourceTree = "<group>"; };
84AE5E18140601A5D84D1491 /* libPods-BFTaskPromiseExample.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-BFTaskPromiseExample.a"; sourceTree = BUILT_PRODUCTS_DIR; };
8F368123E4D055378AB0D5DC /* libPods-BFTaskPromiseExampleTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-BFTaskPromiseExampleTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
A6E6F45DFEA22A06E8A055F3 /* Pods-BFTaskPromiseExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-BFTaskPromiseExample.debug.xcconfig"; path = "Pods/Target Support Files/Pods-BFTaskPromiseExample/Pods-BFTaskPromiseExample.debug.xcconfig"; sourceTree = "<group>"; };
Expand Down Expand Up @@ -108,7 +104,6 @@
50DCEF34199EE58400EC94DC = {
isa = PBXGroup;
children = (
50E9715B19A1C9B2001236EB /* Classes */,
50DCEF46199EE58400EC94DC /* BFTaskPromiseExample */,
50DCEF5F199EE58400EC94DC /* BFTaskPromiseExampleTests */,
50DCEF3F199EE58400EC94DC /* Frameworks */,
Expand Down Expand Up @@ -183,16 +178,6 @@
name = "Supporting Files";
sourceTree = "<group>";
};
50E9715B19A1C9B2001236EB /* Classes */ = {
isa = PBXGroup;
children = (
50E9715C19A1CA1A001236EB /* BFTask+PromiseLike.h */,
50E9715D19A1CA1A001236EB /* BFTask+PromiseLike.m */,
);
name = Classes;
path = ../../Classes;
sourceTree = "<group>";
};
C79855277C0E1079B440461C /* Pods */ = {
isa = PBXGroup;
children = (
Expand All @@ -211,12 +196,11 @@
isa = PBXNativeTarget;
buildConfigurationList = 50DCEF69199EE58400EC94DC /* Build configuration list for PBXNativeTarget "BFTaskPromiseExample" */;
buildPhases = (
2A25B06C00490F0579A796CA /* [CP] Check Pods Manifest.lock */,
192D6D08483A97EED98BCB51 /* 📦 Check Pods Manifest.lock */,
50DCEF39199EE58400EC94DC /* Sources */,
50DCEF3A199EE58400EC94DC /* Frameworks */,
50DCEF3B199EE58400EC94DC /* Resources */,
0C5FE611892A14D07FE216B3 /* 📦 Embed Pods Frameworks */,
3AF7BEC1EB27BABBFD2434A6 /* 📦 Copy Pods Resources */,
);
buildRules = (
);
Expand All @@ -231,12 +215,11 @@
isa = PBXNativeTarget;
buildConfigurationList = 50DCEF6C199EE58400EC94DC /* Build configuration list for PBXNativeTarget "BFTaskPromiseExampleTests" */;
buildPhases = (
86880097880D323FCF1D5244 /* [CP] Check Pods Manifest.lock */,
B0B6BE3D0F276B9D0EDD4054 /* 📦 Check Pods Manifest.lock */,
50DCEF54199EE58400EC94DC /* Sources */,
50DCEF55199EE58400EC94DC /* Frameworks */,
50DCEF56199EE58400EC94DC /* Resources */,
D945FE172DACB4CCF05C3538 /* 📦 Embed Pods Frameworks */,
8373363168136659D68CFC86 /* 📦 Copy Pods Resources */,
);
buildRules = (
);
Expand All @@ -254,7 +237,7 @@
50DCEF35199EE58400EC94DC /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 0510;
LastUpgradeCheck = 0940;
ORGANIZATIONNAME = Hironytic;
TargetAttributes = {
50DCEF57199EE58400EC94DC = {
Expand Down Expand Up @@ -301,21 +284,6 @@
/* End PBXResourcesBuildPhase section */

/* Begin PBXShellScriptBuildPhase section */
0C5FE611892A14D07FE216B3 /* 📦 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-BFTaskPromiseExample/Pods-BFTaskPromiseExample-frameworks.sh\"\n";
showEnvVarsInLog = 0;
};
192D6D08483A97EED98BCB51 /* 📦 Check Pods Manifest.lock */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
Expand All @@ -331,34 +299,40 @@
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;
};
3AF7BEC1EB27BABBFD2434A6 /* 📦 Copy Pods Resources */ = {
2A25B06C00490F0579A796CA /* [CP] Check Pods Manifest.lock */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
"${PODS_ROOT}/Manifest.lock",
);
name = "📦 Copy Pods Resources";
name = "[CP] Check Pods Manifest.lock";
outputPaths = (
"$(DERIVED_FILE_DIR)/Pods-BFTaskPromiseExample-checkManifestLockResult.txt",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-BFTaskPromiseExample/Pods-BFTaskPromiseExample-resources.sh\"\n";
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
showEnvVarsInLog = 0;
};
8373363168136659D68CFC86 /* 📦 Copy Pods Resources */ = {
86880097880D323FCF1D5244 /* [CP] Check Pods Manifest.lock */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
"${PODS_ROOT}/Manifest.lock",
);
name = "📦 Copy Pods Resources";
name = "[CP] Check Pods Manifest.lock";
outputPaths = (
"$(DERIVED_FILE_DIR)/Pods-BFTaskPromiseExampleTests-checkManifestLockResult.txt",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-BFTaskPromiseExampleTests/Pods-BFTaskPromiseExampleTests-resources.sh\"\n";
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
showEnvVarsInLog = 0;
};
B0B6BE3D0F276B9D0EDD4054 /* 📦 Check Pods Manifest.lock */ = {
Expand All @@ -376,21 +350,6 @@
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;
};
D945FE172DACB4CCF05C3538 /* 📦 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-BFTaskPromiseExampleTests/Pods-BFTaskPromiseExampleTests-frameworks.sh\"\n";
showEnvVarsInLog = 0;
};
/* End PBXShellScriptBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
Expand All @@ -401,7 +360,6 @@
50DCEF51199EE58400EC94DC /* AppDelegate.m in Sources */,
50DCEF4D199EE58400EC94DC /* main.m in Sources */,
502A5F661B087D1300FAF832 /* SampleViewController.m in Sources */,
50E9715E19A1CA1A001236EB /* BFTask+PromiseLike.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand All @@ -410,7 +368,6 @@
buildActionMask = 2147483647;
files = (
50DCEF66199EE58400EC94DC /* BFTaskPromiseExampleTests.m in Sources */,
50132F941A55970900FEFB30 /* BFTask+PromiseLike.m in Sources */,
500FCC601ADD12D500483B14 /* BFTaskPromiseCppTests.mm in Sources */,
50CB3CE719A7866B0017ABC2 /* XCTestExpectation+OHRetroCompat.m in Sources */,
);
Expand Down Expand Up @@ -454,18 +411,32 @@
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
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;
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",
Expand All @@ -478,7 +449,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 7.1;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
};
Expand All @@ -492,25 +463,38 @@
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_COMMA = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
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 = YES;
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 = 7.1;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
SDKROOT = iphoneos;
VALIDATE_PRODUCT = YES;
};
Expand All @@ -525,6 +509,7 @@
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "BFTaskPromiseExample/BFTaskPromiseExample-Prefix.pch";
INFOPLIST_FILE = "BFTaskPromiseExample/BFTaskPromiseExample-Info.plist";
PRODUCT_BUNDLE_IDENTIFIER = "com.hironytic.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = "$(TARGET_NAME)";
WRAPPER_EXTENSION = app;
};
Expand All @@ -539,6 +524,7 @@
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "BFTaskPromiseExample/BFTaskPromiseExample-Prefix.pch";
INFOPLIST_FILE = "BFTaskPromiseExample/BFTaskPromiseExample-Info.plist";
PRODUCT_BUNDLE_IDENTIFIER = "com.hironytic.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = "$(TARGET_NAME)";
WRAPPER_EXTENSION = app;
};
Expand All @@ -561,6 +547,7 @@
"$(inherited)",
);
INFOPLIST_FILE = "BFTaskPromiseExampleTests/BFTaskPromiseExampleTests-Info.plist";
PRODUCT_BUNDLE_IDENTIFIER = "com.hironytic.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = "$(TARGET_NAME)";
TEST_HOST = "$(BUNDLE_LOADER)";
WRAPPER_EXTENSION = xctest;
Expand All @@ -580,6 +567,7 @@
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "BFTaskPromiseExample/BFTaskPromiseExample-Prefix.pch";
INFOPLIST_FILE = "BFTaskPromiseExampleTests/BFTaskPromiseExampleTests-Info.plist";
PRODUCT_BUNDLE_IDENTIFIER = "com.hironytic.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = "$(TARGET_NAME)";
TEST_HOST = "$(BUNDLE_LOADER)";
WRAPPER_EXTENSION = xctest;
Expand Down
Loading