Skip to content

Commit

Permalink
Revert "update to swift 4 on xcode 9.3"
Browse files Browse the repository at this point in the history
This reverts commit 2c58dc7.
  • Loading branch information
John Kuan committed May 6, 2018
1 parent 2c58dc7 commit 3b33673
Show file tree
Hide file tree
Showing 69 changed files with 1,050 additions and 2,143 deletions.
Binary file modified .DS_Store
Binary file not shown.
Empty file modified ExCommand/.DS_Store
100755 → 100644
Empty file.
Empty file modified ExCommand/ExCommand.entitlements
100755 → 100644
Empty file.
2 changes: 1 addition & 1 deletion ExCommand/ImmutableMappableCommand.swift
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class ImmutableMappableCommand: NSObject, XCSourceEditorCommand {
func perform(with invocation: XCSourceEditorCommandInvocation, completionHandler: @escaping (Error?) -> Void ) -> Void {


let lines: [String] = invocation.buffer.lines.compactMap { "\($0)" }
let lines = invocation.buffer.lines.flatMap { "\($0)" }

var classModelImpl: [(Int, String)] = []

Expand Down
Empty file modified ExCommand/Info.plist
100755 → 100644
Empty file.
2 changes: 1 addition & 1 deletion ExCommand/MappableCommand.swift
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class MappableCommand: NSObject, XCSourceEditorCommand {

func perform(with invocation: XCSourceEditorCommandInvocation, completionHandler: @escaping (Error?) -> Void ) -> Void {

let lines: [String] = invocation.buffer.lines.compactMap { "\($0)" }
let lines = invocation.buffer.lines.flatMap { "\($0)" }

var classModelImpl: [(Int, String)] = []

Expand Down
Empty file modified ExCommand/Model.swift
100755 → 100644
Empty file.
12 changes: 6 additions & 6 deletions ExCommand/Parser.swift
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class Parser: NSObject {
if let lower: Int = buffer.index(where: { $0.contains(matche.matchedString) }) {
if let blockStr = self.firstBlock(in: contentStr, after: matche.range.upperBound) {
let model = matche.matchedString + blockStr
let length = model.filter({ char -> Bool in return char == "\n" }).count
let length = model.characters.filter({ char -> Bool in return char == "\n" }).count
let upper = lower + length

let elements = self.parse(buffer: buffer[Range(lower+1..<upper)].map { $0 })
Expand Down Expand Up @@ -73,7 +73,7 @@ class Parser: NSObject {
var closure: String = matche.matchedString
if let blockStr = self.firstBlock(in: contentStr, after: matche.range.upperBound) {
closure += blockStr
let length = closure.filter({ (char) -> Bool in return char == "\n" }).count
let length = closure.characters.filter({ (char) -> Bool in return char == "\n" }).count
upper = lower + length
}
metadatas.append(Metadata.closureProperty(range: Range(lower...upper)))
Expand Down Expand Up @@ -102,7 +102,7 @@ class Parser: NSObject {
method.append("\n")
}
method += blockStr
let length = method.filter({ (char) -> Bool in return char == "\n" }).count
let length = method.characters.filter({ (char) -> Bool in return char == "\n" }).count
let upper = lower + length
metadatas.append(Metadata.method(range: Range(lower...upper)))

Expand Down Expand Up @@ -135,7 +135,7 @@ class Parser: NSObject {

func firstBlock(in content: String, after index: String.Index) -> String? {

let tempStr = content[index...].trimmingCharacters(in: CharacterSet.whitespacesAndNewlines)
let tempStr = content.substring(from: index).trimmingCharacters(in: CharacterSet.whitespacesAndNewlines)
guard tempStr.hasPrefix("{") else {
return nil
}
Expand All @@ -154,7 +154,7 @@ class Parser: NSObject {
currentIndex = tempStr.index(after: currentIndex)

if closureCount < 1 {
blockString = String(tempStr[..<currentIndex])
blockString = tempStr.substring(to: currentIndex)
break
}

Expand All @@ -172,6 +172,6 @@ class Parser: NSObject {
extension String {

var length: Int {
return count
return characters.count
}
}
2 changes: 1 addition & 1 deletion ExCommand/Source/Foundation+Ranges.swift
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
internal extension NSTextCheckingResult {
var ranges: [NSRange] {
#if swift(>=3.0)
return stride(from: 0, to: numberOfRanges, by: 1).map(range)
return stride(from: 0, to: numberOfRanges, by: 1).map(rangeAt)
#else
return 0.stride(to: numberOfRanges, by: 1).map(rangeAtIndex)
#endif
Expand Down
10 changes: 4 additions & 6 deletions ExCommand/Source/MatchResult.swift
Original file line number Diff line number Diff line change
Expand Up @@ -112,20 +112,18 @@ private final class _MatchResult {

private let rangeFromNSRange: (String.UTF16View, NSRange) -> Range<String.UTF16Index>? = { string, range in
guard range.location != NSNotFound else { return nil }

#if swift(>=3.0)
let start = string.index(string.startIndex, offsetBy: range.location)
let end = string.index(start, offsetBy: range.length)
let start = string.startIndex.advanced(by: range.location)
let end = start.advanced(by: range.length)
#else
let start = string.startIndex.advancedBy(range.location)
let end = start.advancedBy(range.length)
#endif
return start..<end
}

private let substringFromRange: (String.UTF16View, Range<String.UTF16View.Index>) -> String = { string, range in
guard let string = String(string[range]) else { return "" }
return string
private let substringFromRange: (String.UTF16View, Range<String.UTF16Index>) -> String = { string, range in
return string[range].description
}

}
Empty file modified ExCommand/SourceEditorExtension.swift
100755 → 100644
Empty file.
Empty file modified LICENSE
100755 → 100644
Empty file.
80 changes: 19 additions & 61 deletions ObjectMapper-Plugin.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
objects = {

/* Begin PBXBuildFile section */
6DE208300F564A9BB32E26C0 /* Pods_ExCommand.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 37591400C2E9C488A2A6B652 /* Pods_ExCommand.framework */; };
E801FB44FC950D1F1209B46F /* Pods_ObjectMapper_Plugin.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C6B47D546EACF5895A2D719 /* Pods_ObjectMapper_Plugin.framework */; };
FF494D9C1E163D29001069FB /* MutableModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = FF494D9B1E163D29001069FB /* MutableModel.swift */; };
FF4AC97F1E149FE1000FC377 /* ModelSample in Resources */ = {isa = PBXBuildFile; fileRef = FF4AC97E1E149FE1000FC377 /* ModelSample */; };
Expand All @@ -27,6 +26,7 @@
FFDD14DD1E1361D2004FCF92 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FFDD14DC1E1361D2004FCF92 /* Cocoa.framework */; };
FFDD14E81E1361D3004FCF92 /* ExCommand.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = FFDD14DA1E1361D2004FCF92 /* ExCommand.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
FFDD14FD1E1361FF004FCF92 /* ImmutableMappableCommand.swift in Sources */ = {isa = PBXBuildFile; fileRef = FFDD14EF1E1361FF004FCF92 /* ImmutableMappableCommand.swift */; };
FFDD14FE1E1361FF004FCF92 /* Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = FFDD14F01E1361FF004FCF92 /* Info.plist */; };
FFDD14FF1E1361FF004FCF92 /* MappableCommand.swift in Sources */ = {isa = PBXBuildFile; fileRef = FFDD14F11E1361FF004FCF92 /* MappableCommand.swift */; };
FFDD15001E1361FF004FCF92 /* Foundation+Ranges.swift in Sources */ = {isa = PBXBuildFile; fileRef = FFDD14F31E1361FF004FCF92 /* Foundation+Ranges.swift */; };
FFDD15011E1361FF004FCF92 /* MatchResult.swift in Sources */ = {isa = PBXBuildFile; fileRef = FFDD14F41E1361FF004FCF92 /* MatchResult.swift */; };
Expand Down Expand Up @@ -63,10 +63,7 @@
/* End PBXCopyFilesBuildPhase section */

/* Begin PBXFileReference section */
37591400C2E9C488A2A6B652 /* Pods_ExCommand.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_ExCommand.framework; sourceTree = BUILT_PRODUCTS_DIR; };
5E59747AA604A2874C5C7EA0 /* Pods-ExCommand.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ExCommand.debug.xcconfig"; path = "Pods/Target Support Files/Pods-ExCommand/Pods-ExCommand.debug.xcconfig"; sourceTree = "<group>"; };
6C6B47D546EACF5895A2D719 /* Pods_ObjectMapper_Plugin.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_ObjectMapper_Plugin.framework; sourceTree = BUILT_PRODUCTS_DIR; };
83F1E92F004FAD06BDF26911 /* Pods-ExCommand.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ExCommand.release.xcconfig"; path = "Pods/Target Support Files/Pods-ExCommand/Pods-ExCommand.release.xcconfig"; sourceTree = "<group>"; };
863A74675A6DFBA36241254F /* Pods-ObjectMapper-Plugin.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ObjectMapper-Plugin.release.xcconfig"; path = "Pods/Target Support Files/Pods-ObjectMapper-Plugin/Pods-ObjectMapper-Plugin.release.xcconfig"; sourceTree = "<group>"; };
A6BC7505735AFD6AF05B5E7B /* Pods-ObjectMapper-Plugin.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ObjectMapper-Plugin.debug.xcconfig"; path = "Pods/Target Support Files/Pods-ObjectMapper-Plugin/Pods-ObjectMapper-Plugin.debug.xcconfig"; sourceTree = "<group>"; };
FF494D9B1E163D29001069FB /* MutableModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MutableModel.swift; sourceTree = "<group>"; };
Expand Down Expand Up @@ -118,7 +115,6 @@
buildActionMask = 2147483647;
files = (
FFDD14DD1E1361D2004FCF92 /* Cocoa.framework in Frameworks */,
6DE208300F564A9BB32E26C0 /* Pods_ExCommand.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand All @@ -130,8 +126,6 @@
children = (
A6BC7505735AFD6AF05B5E7B /* Pods-ObjectMapper-Plugin.debug.xcconfig */,
863A74675A6DFBA36241254F /* Pods-ObjectMapper-Plugin.release.xcconfig */,
5E59747AA604A2874C5C7EA0 /* Pods-ExCommand.debug.xcconfig */,
83F1E92F004FAD06BDF26911 /* Pods-ExCommand.release.xcconfig */,
);
name = Pods;
sourceTree = "<group>";
Expand Down Expand Up @@ -191,7 +185,6 @@
children = (
FFDD14DC1E1361D2004FCF92 /* Cocoa.framework */,
6C6B47D546EACF5895A2D719 /* Pods_ObjectMapper_Plugin.framework */,
37591400C2E9C488A2A6B652 /* Pods_ExCommand.framework */,
);
name = Frameworks;
sourceTree = "<group>";
Expand Down Expand Up @@ -247,6 +240,7 @@
FFDD14C41E136198004FCF92 /* Resources */,
FFDD14EC1E1361D3004FCF92 /* Embed App Extensions */,
7C9EC94BC0F6DCCB47F014DD /* [CP] Embed Pods Frameworks */,
81B73072D6061C7D5C1CC93D /* [CP] Copy Pods Resources */,
);
buildRules = (
);
Expand All @@ -262,7 +256,6 @@
isa = PBXNativeTarget;
buildConfigurationList = FFDD14E91E1361D3004FCF92 /* Build configuration list for PBXNativeTarget "ExCommand" */;
buildPhases = (
A8A633206637F2923B68E7D0 /* [CP] Check Pods Manifest.lock */,
FFDD14D61E1361D2004FCF92 /* Sources */,
FFDD14D71E1361D2004FCF92 /* Frameworks */,
FFDD14D81E1361D2004FCF92 /* Resources */,
Expand All @@ -283,19 +276,18 @@
isa = PBXProject;
attributes = {
LastSwiftUpdateCheck = 0820;
LastUpgradeCheck = 0930;
LastUpgradeCheck = 0820;
ORGANIZATIONNAME = LyhDev;
TargetAttributes = {
FFDD14C51E136198004FCF92 = {
CreatedOnToolsVersion = 8.2;
DevelopmentTeam = 5WQTBUB822;
LastSwiftMigration = 0930;
DevelopmentTeam = 4GWLHB3KYU;
ProvisioningStyle = Automatic;
};
FFDD14D91E1361D2004FCF92 = {
CreatedOnToolsVersion = 8.2;
DevelopmentTeam = 5WQTBUB822;
LastSwiftMigration = 0930;
DevelopmentTeam = 4GWLHB3KYU;
LastSwiftMigration = 0820;
ProvisioningStyle = Automatic;
};
};
Expand Down Expand Up @@ -334,6 +326,7 @@
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
FFDD14FE1E1361FF004FCF92 /* Info.plist in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand All @@ -346,16 +339,13 @@
files = (
);
inputPaths = (
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
"${PODS_ROOT}/Manifest.lock",
);
name = "[CP] Check Pods Manifest.lock";
outputPaths = (
"$(DERIVED_FILE_DIR)/Pods-ObjectMapper-Plugin-checkManifestLockResult.txt",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
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";
shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n";
showEnvVarsInLog = 0;
};
7C9EC94BC0F6DCCB47F014DD /* [CP] Embed Pods Frameworks */ = {
Expand All @@ -364,34 +354,28 @@
files = (
);
inputPaths = (
"${SRCROOT}/Pods/Target Support Files/Pods-ObjectMapper-Plugin/Pods-ObjectMapper-Plugin-frameworks.sh",
"${BUILT_PRODUCTS_DIR}/ObjectMapper/ObjectMapper.framework",
);
name = "[CP] Embed Pods Frameworks";
outputPaths = (
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/ObjectMapper.framework",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-ObjectMapper-Plugin/Pods-ObjectMapper-Plugin-frameworks.sh\"\n";
showEnvVarsInLog = 0;
};
A8A633206637F2923B68E7D0 /* [CP] Check Pods Manifest.lock */ = {
81B73072D6061C7D5C1CC93D /* [CP] Copy Pods Resources */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
"${PODS_ROOT}/Manifest.lock",
);
name = "[CP] Check Pods Manifest.lock";
name = "[CP] Copy Pods Resources";
outputPaths = (
"$(DERIVED_FILE_DIR)/Pods-ExCommand-checkManifestLockResult.txt",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
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";
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-ObjectMapper-Plugin/Pods-ObjectMapper-Plugin-resources.sh\"\n";
showEnvVarsInLog = 0;
};
/* End PBXShellScriptBuildPhase section */
Expand Down Expand Up @@ -464,23 +448,15 @@
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_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_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;
Expand Down Expand Up @@ -521,23 +497,15 @@
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_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_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;
Expand Down Expand Up @@ -566,17 +534,15 @@
baseConfigurationReference = A6BC7505735AFD6AF05B5E7B /* Pods-ObjectMapper-Plugin.debug.xcconfig */;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
APPLICATION_EXTENSION_API_ONLY = NO;
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_IDENTITY = "Mac Developer";
COMBINE_HIDPI_IMAGES = YES;
DEVELOPMENT_TEAM = 5WQTBUB822;
DEVELOPMENT_TEAM = 4GWLHB3KYU;
INFOPLIST_FILE = "ObjectMapper-Plugin/Info.plist";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = "com.copycat.ObjectMapper-Plugin";
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_SWIFT3_OBJC_INFERENCE = Default;
SWIFT_VERSION = 4.0;
SWIFT_VERSION = 3.0;
};
name = Debug;
};
Expand All @@ -585,30 +551,26 @@
baseConfigurationReference = 863A74675A6DFBA36241254F /* Pods-ObjectMapper-Plugin.release.xcconfig */;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
APPLICATION_EXTENSION_API_ONLY = NO;
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_IDENTITY = "Mac Developer";
COMBINE_HIDPI_IMAGES = YES;
DEVELOPMENT_TEAM = 5WQTBUB822;
DEVELOPMENT_TEAM = 4GWLHB3KYU;
INFOPLIST_FILE = "ObjectMapper-Plugin/Info.plist";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = "com.copycat.ObjectMapper-Plugin";
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_SWIFT3_OBJC_INFERENCE = Default;
SWIFT_VERSION = 4.0;
SWIFT_VERSION = 3.0;
};
name = Release;
};
FFDD14EA1E1361D3004FCF92 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 5E59747AA604A2874C5C7EA0 /* Pods-ExCommand.debug.xcconfig */;
buildSettings = {
APPLICATION_EXTENSION_API_ONLY = NO;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = ExCommand/ExCommand.entitlements;
CODE_SIGN_IDENTITY = "Mac Developer";
COMBINE_HIDPI_IMAGES = YES;
DEVELOPMENT_TEAM = 5WQTBUB822;
DEVELOPMENT_TEAM = 4GWLHB3KYU;
INFOPLIST_FILE = ExCommand/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @executable_path/../../../../Frameworks";
MACOSX_DEPLOYMENT_TARGET = 10.11;
Expand All @@ -617,30 +579,26 @@
SKIP_INSTALL = YES;
SWIFT_OBJC_BRIDGING_HEADER = "";
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_SWIFT3_OBJC_INFERENCE = Default;
SWIFT_VERSION = 4.0;
SWIFT_VERSION = 3.0;
};
name = Debug;
};
FFDD14EB1E1361D3004FCF92 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 83F1E92F004FAD06BDF26911 /* Pods-ExCommand.release.xcconfig */;
buildSettings = {
APPLICATION_EXTENSION_API_ONLY = NO;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = ExCommand/ExCommand.entitlements;
CODE_SIGN_IDENTITY = "Mac Developer";
COMBINE_HIDPI_IMAGES = YES;
DEVELOPMENT_TEAM = 5WQTBUB822;
DEVELOPMENT_TEAM = 4GWLHB3KYU;
INFOPLIST_FILE = ExCommand/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @executable_path/../../../../Frameworks";
MACOSX_DEPLOYMENT_TARGET = 10.11;
PRODUCT_BUNDLE_IDENTIFIER = "com.copycat.ObjectMapper-Plugin.ExCommand";
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
SWIFT_OBJC_BRIDGING_HEADER = "";
SWIFT_SWIFT3_OBJC_INFERENCE = Default;
SWIFT_VERSION = 4.0;
SWIFT_VERSION = 3.0;
};
name = Release;
};
Expand Down
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file modified ObjectMapper-Plugin/AppDelegate.swift
100755 → 100644
Empty file.
Empty file.
Empty file modified ObjectMapper-Plugin/Base.lproj/MainMenu.xib
100755 → 100644
Empty file.
Empty file modified ObjectMapper-Plugin/ImmutableModel.swift
100755 → 100644
Empty file.
Empty file modified ObjectMapper-Plugin/Info.plist
100755 → 100644
Empty file.
Empty file modified ObjectMapper-Plugin/ModelSample
100755 → 100644
Empty file.
Empty file modified ObjectMapper-Plugin/MutableModel.swift
100755 → 100644
Empty file.
Loading

0 comments on commit 3b33673

Please sign in to comment.