Skip to content

Commit 9fda33d

Browse files
committed
carthage
1 parent 6c5e714 commit 9fda33d

File tree

7 files changed

+453
-4
lines changed

7 files changed

+453
-4
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ profile
1616
*.moved-aside
1717
DerivedData
1818
.idea/
19-
# Pods - for those of you who use CocoaPods
2019
Pods
20+
Carthage/Build
2121
play.swift
2222
play.go
2323

GoSwift.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
Pod::Spec.new do |s|
22
s.name = "GoSwift"
3-
s.version = "0.1.1"
3+
s.version = "0.1.2"
44
s.summary = "Go Goodies for Swift. Including goroutines, channels, defer, and panic."
55
s.homepage = "https://github.com/tidwall/GoSwift"
66
s.license = { :type => "Attribution License", :file => "LICENSE" }
7-
s.source = { :git => "https://github.com/tidwall/GoSwift.git", :tag => "#{s.version}" }
7+
s.source = { :git => "https://github.com/tidwall/GoSwift.git", :tag => "v#{s.version}" }
88
s.authors = { 'Josh Baker' => 'joshbaker77@gmail.com' }
99
s.social_media_url = "https://twitter.com/tidwall"
1010
s.ios.platform = :ios, '8.0'
1111
s.ios.deployment_target = "8.0"
1212
s.osx.platform = :osx, '10.9'
1313
s.osx.deployment_target = "10.9"
14-
s.source_files = "go.swift"
14+
s.source_files = "GoSwift/go.swift"
1515
s.requires_arc = true
1616
end

GoSwift.xcodeproj/project.pbxproj

Lines changed: 294 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,294 @@
1+
// !$*UTF8*$!
2+
{
3+
archiveVersion = 1;
4+
classes = {
5+
};
6+
objectVersion = 46;
7+
objects = {
8+
9+
/* Begin PBXBuildFile section */
10+
0311F57E1B20A06F003616AD /* GoSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = 0311F57D1B20A06F003616AD /* GoSwift.h */; settings = {ATTRIBUTES = (Public, ); }; };
11+
0311F5951B20A138003616AD /* go.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0311F5941B20A138003616AD /* go.swift */; };
12+
/* End PBXBuildFile section */
13+
14+
/* Begin PBXFileReference section */
15+
0311F5781B20A06F003616AD /* GoSwift.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = GoSwift.framework; sourceTree = BUILT_PRODUCTS_DIR; };
16+
0311F57C1B20A06F003616AD /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
17+
0311F57D1B20A06F003616AD /* GoSwift.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GoSwift.h; sourceTree = "<group>"; };
18+
0311F5941B20A138003616AD /* go.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = go.swift; sourceTree = "<group>"; };
19+
/* End PBXFileReference section */
20+
21+
/* Begin PBXFrameworksBuildPhase section */
22+
0311F5741B20A06F003616AD /* Frameworks */ = {
23+
isa = PBXFrameworksBuildPhase;
24+
buildActionMask = 2147483647;
25+
files = (
26+
);
27+
runOnlyForDeploymentPostprocessing = 0;
28+
};
29+
/* End PBXFrameworksBuildPhase section */
30+
31+
/* Begin PBXGroup section */
32+
0311F56E1B20A06F003616AD = {
33+
isa = PBXGroup;
34+
children = (
35+
0311F57A1B20A06F003616AD /* GoSwift */,
36+
0311F5791B20A06F003616AD /* Products */,
37+
);
38+
sourceTree = "<group>";
39+
};
40+
0311F5791B20A06F003616AD /* Products */ = {
41+
isa = PBXGroup;
42+
children = (
43+
0311F5781B20A06F003616AD /* GoSwift.framework */,
44+
);
45+
name = Products;
46+
sourceTree = "<group>";
47+
};
48+
0311F57A1B20A06F003616AD /* GoSwift */ = {
49+
isa = PBXGroup;
50+
children = (
51+
0311F5941B20A138003616AD /* go.swift */,
52+
0311F57D1B20A06F003616AD /* GoSwift.h */,
53+
0311F57B1B20A06F003616AD /* Supporting Files */,
54+
);
55+
path = GoSwift;
56+
sourceTree = "<group>";
57+
};
58+
0311F57B1B20A06F003616AD /* Supporting Files */ = {
59+
isa = PBXGroup;
60+
children = (
61+
0311F57C1B20A06F003616AD /* Info.plist */,
62+
);
63+
name = "Supporting Files";
64+
sourceTree = "<group>";
65+
};
66+
/* End PBXGroup section */
67+
68+
/* Begin PBXHeadersBuildPhase section */
69+
0311F5751B20A06F003616AD /* Headers */ = {
70+
isa = PBXHeadersBuildPhase;
71+
buildActionMask = 2147483647;
72+
files = (
73+
0311F57E1B20A06F003616AD /* GoSwift.h in Headers */,
74+
);
75+
runOnlyForDeploymentPostprocessing = 0;
76+
};
77+
/* End PBXHeadersBuildPhase section */
78+
79+
/* Begin PBXNativeTarget section */
80+
0311F5771B20A06F003616AD /* GoSwift */ = {
81+
isa = PBXNativeTarget;
82+
buildConfigurationList = 0311F58E1B20A06F003616AD /* Build configuration list for PBXNativeTarget "GoSwift" */;
83+
buildPhases = (
84+
0311F5731B20A06F003616AD /* Sources */,
85+
0311F5741B20A06F003616AD /* Frameworks */,
86+
0311F5751B20A06F003616AD /* Headers */,
87+
0311F5761B20A06F003616AD /* Resources */,
88+
);
89+
buildRules = (
90+
);
91+
dependencies = (
92+
);
93+
name = GoSwift;
94+
productName = GoSwift;
95+
productReference = 0311F5781B20A06F003616AD /* GoSwift.framework */;
96+
productType = "com.apple.product-type.framework";
97+
};
98+
/* End PBXNativeTarget section */
99+
100+
/* Begin PBXProject section */
101+
0311F56F1B20A06F003616AD /* Project object */ = {
102+
isa = PBXProject;
103+
attributes = {
104+
LastUpgradeCheck = 0630;
105+
ORGANIZATIONNAME = "ONcast, LLC";
106+
TargetAttributes = {
107+
0311F5771B20A06F003616AD = {
108+
CreatedOnToolsVersion = 6.3.2;
109+
};
110+
};
111+
};
112+
buildConfigurationList = 0311F5721B20A06F003616AD /* Build configuration list for PBXProject "GoSwift" */;
113+
compatibilityVersion = "Xcode 3.2";
114+
developmentRegion = English;
115+
hasScannedForEncodings = 0;
116+
knownRegions = (
117+
en,
118+
);
119+
mainGroup = 0311F56E1B20A06F003616AD;
120+
productRefGroup = 0311F5791B20A06F003616AD /* Products */;
121+
projectDirPath = "";
122+
projectRoot = "";
123+
targets = (
124+
0311F5771B20A06F003616AD /* GoSwift */,
125+
);
126+
};
127+
/* End PBXProject section */
128+
129+
/* Begin PBXResourcesBuildPhase section */
130+
0311F5761B20A06F003616AD /* Resources */ = {
131+
isa = PBXResourcesBuildPhase;
132+
buildActionMask = 2147483647;
133+
files = (
134+
);
135+
runOnlyForDeploymentPostprocessing = 0;
136+
};
137+
/* End PBXResourcesBuildPhase section */
138+
139+
/* Begin PBXSourcesBuildPhase section */
140+
0311F5731B20A06F003616AD /* Sources */ = {
141+
isa = PBXSourcesBuildPhase;
142+
buildActionMask = 2147483647;
143+
files = (
144+
0311F5951B20A138003616AD /* go.swift in Sources */,
145+
);
146+
runOnlyForDeploymentPostprocessing = 0;
147+
};
148+
/* End PBXSourcesBuildPhase section */
149+
150+
/* Begin XCBuildConfiguration section */
151+
0311F58C1B20A06F003616AD /* Debug */ = {
152+
isa = XCBuildConfiguration;
153+
buildSettings = {
154+
ALWAYS_SEARCH_USER_PATHS = NO;
155+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
156+
CLANG_CXX_LIBRARY = "libc++";
157+
CLANG_ENABLE_MODULES = YES;
158+
CLANG_ENABLE_OBJC_ARC = YES;
159+
CLANG_WARN_BOOL_CONVERSION = YES;
160+
CLANG_WARN_CONSTANT_CONVERSION = YES;
161+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
162+
CLANG_WARN_EMPTY_BODY = YES;
163+
CLANG_WARN_ENUM_CONVERSION = YES;
164+
CLANG_WARN_INT_CONVERSION = YES;
165+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
166+
CLANG_WARN_UNREACHABLE_CODE = YES;
167+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
168+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
169+
COPY_PHASE_STRIP = NO;
170+
CURRENT_PROJECT_VERSION = 1;
171+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
172+
ENABLE_STRICT_OBJC_MSGSEND = YES;
173+
GCC_C_LANGUAGE_STANDARD = gnu99;
174+
GCC_DYNAMIC_NO_PIC = NO;
175+
GCC_NO_COMMON_BLOCKS = YES;
176+
GCC_OPTIMIZATION_LEVEL = 0;
177+
GCC_PREPROCESSOR_DEFINITIONS = (
178+
"DEBUG=1",
179+
"$(inherited)",
180+
);
181+
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
182+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
183+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
184+
GCC_WARN_UNDECLARED_SELECTOR = YES;
185+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
186+
GCC_WARN_UNUSED_FUNCTION = YES;
187+
GCC_WARN_UNUSED_VARIABLE = YES;
188+
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
189+
MTL_ENABLE_DEBUG_INFO = YES;
190+
ONLY_ACTIVE_ARCH = YES;
191+
SDKROOT = iphoneos;
192+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
193+
TARGETED_DEVICE_FAMILY = "1,2";
194+
VERSIONING_SYSTEM = "apple-generic";
195+
VERSION_INFO_PREFIX = "";
196+
};
197+
name = Debug;
198+
};
199+
0311F58D1B20A06F003616AD /* Release */ = {
200+
isa = XCBuildConfiguration;
201+
buildSettings = {
202+
ALWAYS_SEARCH_USER_PATHS = NO;
203+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
204+
CLANG_CXX_LIBRARY = "libc++";
205+
CLANG_ENABLE_MODULES = YES;
206+
CLANG_ENABLE_OBJC_ARC = YES;
207+
CLANG_WARN_BOOL_CONVERSION = YES;
208+
CLANG_WARN_CONSTANT_CONVERSION = YES;
209+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
210+
CLANG_WARN_EMPTY_BODY = YES;
211+
CLANG_WARN_ENUM_CONVERSION = YES;
212+
CLANG_WARN_INT_CONVERSION = YES;
213+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
214+
CLANG_WARN_UNREACHABLE_CODE = YES;
215+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
216+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
217+
COPY_PHASE_STRIP = NO;
218+
CURRENT_PROJECT_VERSION = 1;
219+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
220+
ENABLE_NS_ASSERTIONS = NO;
221+
ENABLE_STRICT_OBJC_MSGSEND = YES;
222+
GCC_C_LANGUAGE_STANDARD = gnu99;
223+
GCC_NO_COMMON_BLOCKS = YES;
224+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
225+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
226+
GCC_WARN_UNDECLARED_SELECTOR = YES;
227+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
228+
GCC_WARN_UNUSED_FUNCTION = YES;
229+
GCC_WARN_UNUSED_VARIABLE = YES;
230+
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
231+
MTL_ENABLE_DEBUG_INFO = NO;
232+
SDKROOT = iphoneos;
233+
TARGETED_DEVICE_FAMILY = "1,2";
234+
VALIDATE_PRODUCT = YES;
235+
VERSIONING_SYSTEM = "apple-generic";
236+
VERSION_INFO_PREFIX = "";
237+
};
238+
name = Release;
239+
};
240+
0311F58F1B20A06F003616AD /* Debug */ = {
241+
isa = XCBuildConfiguration;
242+
buildSettings = {
243+
DEFINES_MODULE = YES;
244+
DYLIB_COMPATIBILITY_VERSION = 1;
245+
DYLIB_CURRENT_VERSION = 1;
246+
DYLIB_INSTALL_NAME_BASE = "@rpath";
247+
INFOPLIST_FILE = GoSwift/Info.plist;
248+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
249+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
250+
PRODUCT_NAME = "$(TARGET_NAME)";
251+
SKIP_INSTALL = YES;
252+
};
253+
name = Debug;
254+
};
255+
0311F5901B20A06F003616AD /* Release */ = {
256+
isa = XCBuildConfiguration;
257+
buildSettings = {
258+
DEFINES_MODULE = YES;
259+
DYLIB_COMPATIBILITY_VERSION = 1;
260+
DYLIB_CURRENT_VERSION = 1;
261+
DYLIB_INSTALL_NAME_BASE = "@rpath";
262+
INFOPLIST_FILE = GoSwift/Info.plist;
263+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
264+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
265+
PRODUCT_NAME = "$(TARGET_NAME)";
266+
SKIP_INSTALL = YES;
267+
};
268+
name = Release;
269+
};
270+
/* End XCBuildConfiguration section */
271+
272+
/* Begin XCConfigurationList section */
273+
0311F5721B20A06F003616AD /* Build configuration list for PBXProject "GoSwift" */ = {
274+
isa = XCConfigurationList;
275+
buildConfigurations = (
276+
0311F58C1B20A06F003616AD /* Debug */,
277+
0311F58D1B20A06F003616AD /* Release */,
278+
);
279+
defaultConfigurationIsVisible = 0;
280+
defaultConfigurationName = Release;
281+
};
282+
0311F58E1B20A06F003616AD /* Build configuration list for PBXNativeTarget "GoSwift" */ = {
283+
isa = XCConfigurationList;
284+
buildConfigurations = (
285+
0311F58F1B20A06F003616AD /* Debug */,
286+
0311F5901B20A06F003616AD /* Release */,
287+
);
288+
defaultConfigurationIsVisible = 0;
289+
defaultConfigurationName = Release;
290+
};
291+
/* End XCConfigurationList section */
292+
};
293+
rootObject = 0311F56F1B20A06F003616AD /* Project object */;
294+
}

0 commit comments

Comments
 (0)