Skip to content

Merge changes and add Xcode 6.4 DVTPlugInCompatibilityUUID #24

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

Open
wants to merge 18 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
1867186
fix bug in date formatting see http://www.unicode.org/reports/tr35/tr…
codeinthesky May 24, 2015
ecbe037
fix image clipping warning - move github images to xcassets catalogue
codeinthesky May 24, 2015
46c3a10
change fork with clone, and import with export, also change some butt…
codeinthesky May 24, 2015
9a45914
add scheme that allows debuging with breakpoints
codeinthesky May 24, 2015
a1bef22
Merge branch 'feature/bugfix-dateformat' into mychanges
codeinthesky May 24, 2015
9fb7655
Merge branch 'feature/image-warning' into mychanges
codeinthesky May 24, 2015
1ed2fec
Merge branch 'feature/change-fork-with-clone' into mychanges
codeinthesky May 24, 2015
1ab6ba5
Updated ACCodeSnippetRepository Tests to XCTest.
clementpadovani Jul 26, 2015
27e53dc
Updated to Xcode 7 recommended settings.
clementpadovani Jul 26, 2015
9bf5922
API usage fix.
clementpadovani Jul 26, 2015
1fdea08
Various refactoring.
clementpadovani Jul 26, 2015
8e93599
Added Xcode 7 key.
clementpadovani Jul 26, 2015
b058104
Fixed "Plug-ins" menu not appearing.
clementpadovani Jul 26, 2015
a158903
Fixed accessing AppKit element from background thread.
clementpadovani Jul 26, 2015
009daca
Merge commit '1ed2feca9225ac62b99e36a6b71c517c5b805d08' into branch-f…
Hs-Yeah Jul 27, 2015
2583186
Add Xcode 6.4 DVTPlugInCompatibilityUUID
Hs-Yeah Jul 27, 2015
9f2fc72
Fix empty repo URL crash.
clementappsolute Jul 28, 2015
e5a5f7a
Merge commit '9f2fc7290f4c51239f45e5901b939c77f0bcbda4' into branch-f…
Hs-Yeah Jul 28, 2015
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
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
// Copyright (c) 2014 Arnaud Coomans. All rights reserved.
//

#import <SenTestingKit/SenTestingKit.h>
#import <XCTest/XCTest.h>
#import "ACCodeSnippetGitDataStore.h"


@interface ACCodeSnippetGitDataStoreTests : SenTestCase
@interface ACCodeSnippetGitDataStoreTests : XCTestCase
@end

@implementation ACCodeSnippetGitDataStoreTests
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleIdentifier</key>
<string>com.acoomans.${PRODUCT_NAME:rfc1034identifier}</string>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundlePackageType</key>
Expand Down
40 changes: 20 additions & 20 deletions ACCodeSnippetRepository Tests/ACCodeSnippetSerializationTests.m
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
// Copyright (c) 2014 Arnaud Coomans. All rights reserved.
//

#import <SenTestingKit/SenTestingKit.h>
#import <XCTest/XCTest.h>
#import "ACCodeSnippetSerialization.h"

@interface ACCodeSnippetSerializationTests : SenTestCase
@interface ACCodeSnippetSerializationTests : XCTestCase
@end

@implementation ACCodeSnippetSerializationTests
Expand All @@ -31,14 +31,14 @@ - (void)testSerialize {
NSString *string = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
NSLog(@"\n%@", string);

STAssertTrue([string rangeOfString:@"title"].location != NSNotFound, nil);
STAssertTrue([string rangeOfString:@"summary"].location != NSNotFound, nil);
STAssertTrue([string rangeOfString:@"line1\nline2\nline3"].location != NSNotFound, nil);
STAssertTrue([string rangeOfString:@"WhateverKey"].location != NSNotFound, nil);
STAssertTrue([string rangeOfString:@"WhateverValue"].location != NSNotFound, nil);
XCTAssertTrue([string rangeOfString:@"title"].location != NSNotFound);
XCTAssertTrue([string rangeOfString:@"summary"].location != NSNotFound);
XCTAssertTrue([string rangeOfString:@"line1\nline2\nline3"].location != NSNotFound);
XCTAssertTrue([string rangeOfString:@"WhateverKey"].location != NSNotFound);
XCTAssertTrue([string rangeOfString:@"WhateverValue"].location != NSNotFound);

STAssertTrue([string rangeOfString:@"one"].location != NSNotFound, nil);
STAssertTrue([string rangeOfString:@"two"].location != NSNotFound, nil);
XCTAssertTrue([string rangeOfString:@"one"].location != NSNotFound);
XCTAssertTrue([string rangeOfString:@"two"].location != NSNotFound);
}

- (void)testDeserialize {
Expand All @@ -50,13 +50,13 @@ - (void)testDeserialize {
error:nil];
NSLog(@"\n%@", dict);

STAssertTrue([dict[ACCodeSnippetTitleKey] isEqualToString:@"title"], nil);
STAssertTrue([dict[ACCodeSnippetSummaryKey] isEqualToString:@"summary"], nil);
STAssertTrue([dict[ACCodeSnippetContentsKey] isEqualToString:@"line1\nline2\nline3\n"], nil);
STAssertTrue([dict[@"WhateverKey"] isEqualToString:@"WhateverValue"], nil);
XCTAssertTrue([dict[ACCodeSnippetTitleKey] isEqualToString:@"title"]);
XCTAssertTrue([dict[ACCodeSnippetSummaryKey] isEqualToString:@"summary"]);
XCTAssertTrue([dict[ACCodeSnippetContentsKey] isEqualToString:@"line1\nline2\nline3\n"]);
XCTAssertTrue([dict[@"WhateverKey"] isEqualToString:@"WhateverValue"]);

NSArray *a = @[@"one", @"two"];
STAssertTrue([dict[@"Array"] isEqualToArray:a], nil);
XCTAssertTrue([dict[@"Array"] isEqualToArray:a]);
}

- (void)testDeserialize2 {
Expand All @@ -68,13 +68,13 @@ - (void)testDeserialize2 {
error:nil];
NSLog(@"\n%@", dict);

STAssertTrue([dict[ACCodeSnippetTitleKey] isEqualToString:@"title"], nil);
STAssertTrue([dict[ACCodeSnippetSummaryKey] isEqualToString:@"summary"], nil);
STAssertTrue([dict[ACCodeSnippetContentsKey] isEqualToString:@"line1\nline2\nline3\n"], nil);
STAssertTrue([dict[@"WhateverKey"] isEqualToString:@"WhateverValue"], nil);
XCTAssertTrue([dict[ACCodeSnippetTitleKey] isEqualToString:@"title"]);
XCTAssertTrue([dict[ACCodeSnippetSummaryKey] isEqualToString:@"summary"]);
XCTAssertTrue([dict[ACCodeSnippetContentsKey] isEqualToString:@"line1\nline2\nline3\n"]);
XCTAssertTrue([dict[@"WhateverKey"] isEqualToString:@"WhateverValue"]);

NSArray *a = @[@"one", @"two"];
STAssertTrue([dict[@"Array"] isEqualToArray:a], nil);
XCTAssertTrue([dict[@"Array"] isEqualToArray:a]);
}

- (void)testSerializeDeserialize {
Expand All @@ -96,7 +96,7 @@ - (void)testSerializeDeserialize {
options:0
format:ACCodeSnippetSerializationFormatC
error:nil];
STAssertTrue([dict1 isEqualToDictionary:dict2], nil);
XCTAssertTrue([dict1 isEqualToDictionary:dict2]);

}

Expand Down
6 changes: 3 additions & 3 deletions ACCodeSnippetRepository Tests/ACGitRepositoryTests.m
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
// Copyright (c) 2014 Arnaud Coomans. All rights reserved.
//

#import <SenTestingKit/SenTestingKit.h>
#import <XCTest/XCTest.h>
#import "ACGitRepository.h"

@interface ACGitRepositoryTests : SenTestCase
@interface ACGitRepositoryTests : XCTestCase
@end

@implementation ACGitRepositoryTests
Expand All @@ -23,7 +23,7 @@ - (void)testExample {

ACGitRepository *git = [[ACGitRepository alloc] initWithLocalRepositoryDirectory:gitPath];

//[git forkRemoteRepositoryWithURL:gitURL inDirectory:gitPath];
//[git cloneRemoteRepositoryWithURL:gitURL inDirectory:gitPath];
//[git removeLocalRepository];
//NSLog(@"%@", [git identifierForCurrentCommit]);
//NSLog(@"%@", [git changedFilesSinceCommitWithIdentifier:@"HEAD~6"]);
Expand Down
10 changes: 5 additions & 5 deletions ACCodeSnippetRepository Tests/NSDictionary+MergeTests.m
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
// Copyright (c) 2014 Arnaud Coomans. All rights reserved.
//

#import <SenTestingKit/SenTestingKit.h>
#import <XCTest/XCTest.h>
#import "NSDictionary+Merge.h"

@interface NSDictionary_MergeTests : SenTestCase
@interface NSDictionary_MergeTests : XCTestCase
@end

@implementation NSDictionary_MergeTests
Expand All @@ -25,9 +25,9 @@ - (void)testExample {
@"c": @"c"
}];

STAssertTrue([r[@"a"] isEqualToString:@"a"], nil);
STAssertTrue([r[@"b"] isEqualToString:@"b"], nil);
STAssertTrue([r[@"c"] isEqualToString:@"c"], nil);
XCTAssertTrue([r[@"a"] isEqualToString:@"a"]);
XCTAssertTrue([r[@"b"] isEqualToString:@"b"]);
XCTAssertTrue([r[@"c"] isEqualToString:@"c"]);
}

@end
50 changes: 19 additions & 31 deletions ACCodeSnippetRepository.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
objects = {

/* Begin PBXBuildFile section */
012836131B11EC41007236B8 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 012836121B11EC41007236B8 /* Images.xcassets */; };
012836141B11EC41007236B8 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 012836121B11EC41007236B8 /* Images.xcassets */; };
51010E0218AC5CB1000AA1F1 /* ACGitRepository.m in Sources */ = {isa = PBXBuildFile; fileRef = 51010E0118AC5CB1000AA1F1 /* ACGitRepository.m */; };
51010E0318AC5CB1000AA1F1 /* ACGitRepository.m in Sources */ = {isa = PBXBuildFile; fileRef = 51010E0118AC5CB1000AA1F1 /* ACGitRepository.m */; };
5105B22718AC59520066728E /* NSTask+Extras.m in Sources */ = {isa = PBXBuildFile; fileRef = 5105B22618AC59520066728E /* NSTask+Extras.m */; };
Expand All @@ -16,11 +18,7 @@
5153BAA918B3406D00C1E75B /* NSDictionary+Merge.m in Sources */ = {isa = PBXBuildFile; fileRef = 5153BAA818B3406D00C1E75B /* NSDictionary+Merge.m */; };
5153BAAA18B3406D00C1E75B /* NSDictionary+Merge.m in Sources */ = {isa = PBXBuildFile; fileRef = 5153BAA818B3406D00C1E75B /* NSDictionary+Merge.m */; };
5153BAAC18B3410C00C1E75B /* NSDictionary+MergeTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 5153BAAB18B3410C00C1E75B /* NSDictionary+MergeTests.m */; };
5154068518AC4B500065CA33 /* SenTestingKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5154068418AC4B500065CA33 /* SenTestingKit.framework */; };
5154068B18AC4B500065CA33 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 5154068918AC4B500065CA33 /* InfoPlist.strings */; };
515CE9DA18B1DCAA000962EA /* GitHub-Mark-120px-plus.png in Resources */ = {isa = PBXBuildFile; fileRef = 515CE9D718B1DCAA000962EA /* GitHub-Mark-120px-plus.png */; };
515CE9DB18B1DCAA000962EA /* GitHub-Mark-32px.png in Resources */ = {isa = PBXBuildFile; fileRef = 515CE9D818B1DCAA000962EA /* GitHub-Mark-32px.png */; };
515CE9DC18B1DCAA000962EA /* GitHub-Mark-64px.png in Resources */ = {isa = PBXBuildFile; fileRef = 515CE9D918B1DCAA000962EA /* GitHub-Mark-64px.png */; };
5162AC2A18AD9FD0000109C9 /* ACCodeSnippetRepositoryConfigurationWindowController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5162AC2818AD9FD0000109C9 /* ACCodeSnippetRepositoryConfigurationWindowController.m */; };
5162AC2B18AD9FD0000109C9 /* ACCodeSnippetRepositoryConfigurationWindowController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 5162AC2918AD9FD0000109C9 /* ACCodeSnippetRepositoryConfigurationWindowController.xib */; };
517DF2A618AC4BF1008980B3 /* IDECodeSnippetRepositorySwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = 517DF2A318AC4BF1008980B3 /* IDECodeSnippetRepositorySwizzler.m */; };
Expand Down Expand Up @@ -51,6 +49,7 @@
/* End PBXContainerItemProxy section */

/* Begin PBXFileReference section */
012836121B11EC41007236B8 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
51010E0018AC5CB1000AA1F1 /* ACGitRepository.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ACGitRepository.h; sourceTree = "<group>"; };
51010E0118AC5CB1000AA1F1 /* ACGitRepository.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ACGitRepository.m; sourceTree = "<group>"; };
5105B22518AC59520066728E /* NSTask+Extras.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSTask+Extras.h"; sourceTree = "<group>"; };
Expand All @@ -60,14 +59,10 @@
5153BAA718B3406D00C1E75B /* NSDictionary+Merge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDictionary+Merge.h"; sourceTree = "<group>"; };
5153BAA818B3406D00C1E75B /* NSDictionary+Merge.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDictionary+Merge.m"; sourceTree = "<group>"; };
5153BAAB18B3410C00C1E75B /* NSDictionary+MergeTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDictionary+MergeTests.m"; sourceTree = "<group>"; };
5154068318AC4B500065CA33 /* ACCodeSnippetRepository Tests.octest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "ACCodeSnippetRepository Tests.octest"; sourceTree = BUILT_PRODUCTS_DIR; };
5154068418AC4B500065CA33 /* SenTestingKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SenTestingKit.framework; path = Library/Frameworks/SenTestingKit.framework; sourceTree = DEVELOPER_DIR; };
5154068318AC4B500065CA33 /* ACCodeSnippetRepository Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "ACCodeSnippetRepository Tests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
5154068818AC4B500065CA33 /* ACCodeSnippetRepository Tests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "ACCodeSnippetRepository Tests-Info.plist"; sourceTree = "<group>"; };
5154068A18AC4B500065CA33 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
5154068E18AC4B500065CA33 /* ACCodeSnippetRepository Tests-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "ACCodeSnippetRepository Tests-Prefix.pch"; sourceTree = "<group>"; };
515CE9D718B1DCAA000962EA /* GitHub-Mark-120px-plus.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "GitHub-Mark-120px-plus.png"; sourceTree = "<group>"; };
515CE9D818B1DCAA000962EA /* GitHub-Mark-32px.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "GitHub-Mark-32px.png"; sourceTree = "<group>"; };
515CE9D918B1DCAA000962EA /* GitHub-Mark-64px.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "GitHub-Mark-64px.png"; sourceTree = "<group>"; };
5162AC2718AD9FD0000109C9 /* ACCodeSnippetRepositoryConfigurationWindowController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ACCodeSnippetRepositoryConfigurationWindowController.h; sourceTree = "<group>"; };
5162AC2818AD9FD0000109C9 /* ACCodeSnippetRepositoryConfigurationWindowController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ACCodeSnippetRepositoryConfigurationWindowController.m; sourceTree = "<group>"; };
5162AC2918AD9FD0000109C9 /* ACCodeSnippetRepositoryConfigurationWindowController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ACCodeSnippetRepositoryConfigurationWindowController.xib; sourceTree = "<group>"; };
Expand Down Expand Up @@ -104,7 +99,6 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
5154068518AC4B500065CA33 /* SenTestingKit.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down Expand Up @@ -145,21 +139,11 @@
515CE9D518B1DCAA000962EA /* Resources */ = {
isa = PBXGroup;
children = (
515CE9D618B1DCAA000962EA /* Images */,
012836121B11EC41007236B8 /* Images.xcassets */,
);
path = Resources;
sourceTree = "<group>";
};
515CE9D618B1DCAA000962EA /* Images */ = {
isa = PBXGroup;
children = (
515CE9D718B1DCAA000962EA /* GitHub-Mark-120px-plus.png */,
515CE9D818B1DCAA000962EA /* GitHub-Mark-32px.png */,
515CE9D918B1DCAA000962EA /* GitHub-Mark-64px.png */,
);
path = Images;
sourceTree = "<group>";
};
5162AC2618AD9FB4000109C9 /* Controllers */ = {
isa = PBXGroup;
children = (
Expand Down Expand Up @@ -247,7 +231,7 @@
isa = PBXGroup;
children = (
518E699F18AC4A8900C57456 /* ACCodeSnippetRepository.xcplugin */,
5154068318AC4B500065CA33 /* ACCodeSnippetRepository Tests.octest */,
5154068318AC4B500065CA33 /* ACCodeSnippetRepository Tests.xctest */,
);
name = Products;
sourceTree = "<group>";
Expand All @@ -257,7 +241,6 @@
children = (
518E69A218AC4A8900C57456 /* AppKit.framework */,
518E69A418AC4A8900C57456 /* Foundation.framework */,
5154068418AC4B500065CA33 /* SenTestingKit.framework */,
);
name = Frameworks;
sourceTree = "<group>";
Expand Down Expand Up @@ -318,8 +301,8 @@
);
name = "ACCodeSnippetRepository Tests";
productName = "ACCodeSnippetRepository Tests";
productReference = 5154068318AC4B500065CA33 /* ACCodeSnippetRepository Tests.octest */;
productType = "com.apple.product-type.bundle";
productReference = 5154068318AC4B500065CA33 /* ACCodeSnippetRepository Tests.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
518E699E18AC4A8900C57456 /* ACCodeSnippetRepository */ = {
isa = PBXNativeTarget;
Expand All @@ -344,7 +327,8 @@
518E699718AC4A8900C57456 /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 0500;
LastTestingUpgradeCheck = 0700;
LastUpgradeCheck = 0700;
ORGANIZATIONNAME = "Arnaud Coomans";
TargetAttributes = {
5154068218AC4B500065CA33 = {
Expand Down Expand Up @@ -376,18 +360,17 @@
buildActionMask = 2147483647;
files = (
5154068B18AC4B500065CA33 /* InfoPlist.strings in Resources */,
012836141B11EC41007236B8 /* Images.xcassets in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
518E699D18AC4A8900C57456 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
515CE9DC18B1DCAA000962EA /* GitHub-Mark-64px.png in Resources */,
515CE9DB18B1DCAA000962EA /* GitHub-Mark-32px.png in Resources */,
5162AC2B18AD9FD0000109C9 /* ACCodeSnippetRepositoryConfigurationWindowController.xib in Resources */,
012836131B11EC41007236B8 /* Images.xcassets in Resources */,
518E69AB18AC4A8900C57456 /* InfoPlist.strings in Resources */,
515CE9DA18B1DCAA000962EA /* GitHub-Mark-120px-plus.png in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down Expand Up @@ -463,6 +446,7 @@
5154069118AC4B500065CA33 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
COMBINE_HIDPI_IMAGES = YES;
FRAMEWORK_SEARCH_PATHS = (
"$(DEVELOPER_FRAMEWORKS_DIR)",
"$(inherited)",
Expand All @@ -474,23 +458,24 @@
"$(inherited)",
);
INFOPLIST_FILE = "ACCodeSnippetRepository Tests/ACCodeSnippetRepository Tests-Info.plist";
PRODUCT_BUNDLE_IDENTIFIER = "com.acoomans.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = "$(TARGET_NAME)";
WRAPPER_EXTENSION = octest;
};
name = Debug;
};
5154069218AC4B500065CA33 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
COMBINE_HIDPI_IMAGES = YES;
FRAMEWORK_SEARCH_PATHS = (
"$(DEVELOPER_FRAMEWORKS_DIR)",
"$(inherited)",
);
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "ACCodeSnippetRepository Tests/ACCodeSnippetRepository Tests-Prefix.pch";
INFOPLIST_FILE = "ACCodeSnippetRepository Tests/ACCodeSnippetRepository Tests-Info.plist";
PRODUCT_BUNDLE_IDENTIFIER = "com.acoomans.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = "$(TARGET_NAME)";
WRAPPER_EXTENSION = octest;
};
name = Release;
};
Expand All @@ -510,6 +495,7 @@
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
COPY_PHASE_STRIP = NO;
ENABLE_TESTABILITY = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
Expand Down Expand Up @@ -573,6 +559,7 @@
INFOPLIST_FILE = "ACCodeSnippetRepository/ACCodeSnippetRepository-Info.plist";
INSTALL_PATH = "/Library/Application Support/Developer/Shared/Xcode/Plug-ins";
OTHER_LDFLAGS = "";
PRODUCT_BUNDLE_IDENTIFIER = "com.acoomans.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = "$(TARGET_NAME)";
WRAPPER_EXTENSION = xcplugin;
};
Expand All @@ -589,6 +576,7 @@
INFOPLIST_FILE = "ACCodeSnippetRepository/ACCodeSnippetRepository-Info.plist";
INSTALL_PATH = "/Library/Application Support/Developer/Shared/Xcode/Plug-ins";
OTHER_LDFLAGS = "";
PRODUCT_BUNDLE_IDENTIFIER = "com.acoomans.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = "$(TARGET_NAME)";
WRAPPER_EXTENSION = xcplugin;
};
Expand Down
Loading