Skip to content

Commit a10bcbe

Browse files
author
Alex Moisei
committed
Fixed podspec
1 parent d9b053f commit a10bcbe

3 files changed

Lines changed: 32 additions & 14 deletions

File tree

Package.swift

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,13 @@
44
import PackageDescription
55

66
let package = Package(
7-
name: "ServiceStackClient",
7+
name: "ServiceStack",
8+
products: [
9+
// Products define the executables and libraries produced by a package, and make them visible to other packages.
10+
.library(
11+
name: "ServiceStack",
12+
targets: ["ServiceStack"]),
13+
],
814
dependencies: [
915
// Dependencies declare other packages that this package depends on.
1016
// .package(url: /* package url */, from: "1.0.0"),

ServiceStack.podspec

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22

33
s.name = "ServiceStack"
4-
s.version = "1.0.1"
4+
s.version = "1.0.2"
55
s.summary = "Swift ServiceStack Service Client"
66
s.description = <<-DESC
77
ServiceStack's Add ServiceStack Reference feature lets iOS developers
@@ -13,10 +13,10 @@ s.author = { "ServiceStack, Inc" => "team@servicestack.com" }
1313
s.source = { :git => "https://github.com/ServiceStack/ServiceStack.Swift.git", :tag => s.version.to_s }
1414

1515
s.swift_version = "4.1"
16-
s.ios.deployment_target = "8.3"
17-
# s.osx.deployment_target = "10.9"
18-
# s.watchos.deployment_target = "2.0"
19-
# s.tvos.deployment_target = "9.0"
16+
s.ios.deployment_target = "8.0"
17+
s.osx.deployment_target = "10.10"
18+
s.watchos.deployment_target = "2.0"
19+
s.tvos.deployment_target = "9.0"
2020
s.requires_arc = true
2121

2222
#s.public_header_files = 'Pod/Classes/**/*.h'

ServiceStack.xcodeproj/project.pbxproj

Lines changed: 20 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,11 @@
151151
B449E7C2209C914300341288 /* PromiseKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = PromiseKit.framework; path = Carthage/Build/Mac/PromiseKit.framework; sourceTree = "<group>"; };
152152
B449E7C4209C916200341288 /* PromiseKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = PromiseKit.framework; path = Carthage/Build/watchOS/PromiseKit.framework; sourceTree = "<group>"; };
153153
B449E7C6209C916E00341288 /* PromiseKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = PromiseKit.framework; path = Carthage/Build/tvOS/PromiseKit.framework; sourceTree = "<group>"; };
154+
B449E7DC209CB73E00341288 /* Cartfile */ = {isa = PBXFileReference; lastKnownFileType = text; path = Cartfile; sourceTree = "<group>"; };
155+
B449E7DD209CB73E00341288 /* license.txt */ = {isa = PBXFileReference; lastKnownFileType = text; path = license.txt; sourceTree = "<group>"; };
156+
B449E7DE209CB73E00341288 /* README.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
157+
B449E7DF209CB73F00341288 /* ServiceStack.podspec */ = {isa = PBXFileReference; lastKnownFileType = text; path = ServiceStack.podspec; sourceTree = "<group>"; };
158+
B449E7E0209CB73F00341288 /* Package.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Package.swift; sourceTree = "<group>"; };
154159
DD75027A1C68FCFC006590AF /* ServiceStack-macOS Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "ServiceStack-macOS Tests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
155160
DD75028D1C690C7A006590AF /* ServiceStack-tvOS Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "ServiceStack-tvOS Tests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
156161
/* End PBXFileReference section */
@@ -221,6 +226,7 @@
221226
8933C7811EB5B7E0000D00A4 /* Sources */,
222227
8933C7831EB5B7EB000D00A4 /* Tests */,
223228
52D6D99C1BEFF38C002C0205 /* Configs */,
229+
B449E7DB209CB72000341288 /* Deployment */,
224230
52D6D97D1BEFF229002C0205 /* Products */,
225231
B449E7BF209C90E700341288 /* Frameworks */,
226232
);
@@ -297,6 +303,18 @@
297303
name = Frameworks;
298304
sourceTree = "<group>";
299305
};
306+
B449E7DB209CB72000341288 /* Deployment */ = {
307+
isa = PBXGroup;
308+
children = (
309+
B449E7DC209CB73E00341288 /* Cartfile */,
310+
B449E7DD209CB73E00341288 /* license.txt */,
311+
B449E7E0209CB73F00341288 /* Package.swift */,
312+
B449E7DE209CB73E00341288 /* README.md */,
313+
B449E7DF209CB73F00341288 /* ServiceStack.podspec */,
314+
);
315+
name = Deployment;
316+
sourceTree = "<group>";
317+
};
300318
DD7502721C68FC1B006590AF /* Frameworks */ = {
301319
isa = PBXGroup;
302320
children = (
@@ -1021,7 +1039,7 @@
10211039
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
10221040
GCC_WARN_UNUSED_FUNCTION = YES;
10231041
GCC_WARN_UNUSED_VARIABLE = YES;
1024-
IPHONEOS_DEPLOYMENT_TARGET = 8.3;
1042+
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
10251043
MTL_ENABLE_DEBUG_INFO = YES;
10261044
ONLY_ACTIVE_ARCH = YES;
10271045
SDKROOT = iphoneos;
@@ -1072,7 +1090,7 @@
10721090
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
10731091
GCC_WARN_UNUSED_FUNCTION = YES;
10741092
GCC_WARN_UNUSED_VARIABLE = YES;
1075-
IPHONEOS_DEPLOYMENT_TARGET = 8.3;
1093+
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
10761094
MTL_ENABLE_DEBUG_INFO = NO;
10771095
SDKROOT = iphoneos;
10781096
SWIFT_VERSION = 4.0;
@@ -1101,15 +1119,13 @@
11011119
);
11021120
INFOPLIST_FILE = Configs/ServiceStack.plist;
11031121
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
1104-
IPHONEOS_DEPLOYMENT_TARGET = 8.3;
11051122
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
11061123
ONLY_ACTIVE_ARCH = NO;
11071124
PRODUCT_BUNDLE_IDENTIFIER = "net.ServiceStack.ServiceStack-iOS";
11081125
PRODUCT_NAME = ServiceStack;
11091126
PROVISIONING_PROFILE_SPECIFIER = "";
11101127
SKIP_INSTALL = YES;
11111128
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
1112-
SWIFT_VERSION = 4.0;
11131129
};
11141130
name = Debug;
11151131
};
@@ -1131,14 +1147,12 @@
11311147
);
11321148
INFOPLIST_FILE = Configs/ServiceStack.plist;
11331149
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
1134-
IPHONEOS_DEPLOYMENT_TARGET = 8.3;
11351150
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
11361151
PRODUCT_BUNDLE_IDENTIFIER = "net.ServiceStack.ServiceStack-iOS";
11371152
PRODUCT_NAME = ServiceStack;
11381153
PROVISIONING_PROFILE_SPECIFIER = "";
11391154
SKIP_INSTALL = YES;
11401155
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
1141-
SWIFT_VERSION = 4.0;
11421156
};
11431157
name = Release;
11441158
};
@@ -1152,7 +1166,6 @@
11521166
"$(PROJECT_DIR)/Carthage/Build/iOS",
11531167
);
11541168
INFOPLIST_FILE = Configs/ServiceStackTests.plist;
1155-
IPHONEOS_DEPLOYMENT_TARGET = 8.3;
11561169
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks $(PROJECT_DIR)/Carthage/Build/iOS";
11571170
PRODUCT_BUNDLE_IDENTIFIER = "com.ServiceStack.ServiceStack-iOS-Tests";
11581171
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -1171,7 +1184,6 @@
11711184
"$(PROJECT_DIR)/Carthage/Build/iOS",
11721185
);
11731186
INFOPLIST_FILE = Configs/ServiceStackTests.plist;
1174-
IPHONEOS_DEPLOYMENT_TARGET = 8.3;
11751187
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks $(PROJECT_DIR)/Carthage/Build/iOS";
11761188
PRODUCT_BUNDLE_IDENTIFIER = "com.ServiceStack.ServiceStack-iOS-Tests";
11771189
PRODUCT_NAME = "$(TARGET_NAME)";

0 commit comments

Comments
 (0)