Skip to content

Commit 5c0e0e7

Browse files
committed
Functioning Authentication with GT Login
0 parents  commit 5c0e0e7

11 files changed

+478
-0
lines changed
Lines changed: 245 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,245 @@
1+
// !$*UTF8*$!
2+
{
3+
archiveVersion = 1;
4+
classes = {
5+
};
6+
objectVersion = 46;
7+
objects = {
8+
9+
/* Begin PBXBuildFile section */
10+
2E22487F1B8D6F1F008EDCB3 /* main.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E22487E1B8D6F1F008EDCB3 /* main.swift */; };
11+
/* End PBXBuildFile section */
12+
13+
/* Begin PBXCopyFilesBuildPhase section */
14+
2E2248791B8D6F1F008EDCB3 /* CopyFiles */ = {
15+
isa = PBXCopyFilesBuildPhase;
16+
buildActionMask = 2147483647;
17+
dstPath = /usr/share/man/man1/;
18+
dstSubfolderSpec = 0;
19+
files = (
20+
);
21+
runOnlyForDeploymentPostprocessing = 1;
22+
};
23+
/* End PBXCopyFilesBuildPhase section */
24+
25+
/* Begin PBXFileReference section */
26+
2E22487B1B8D6F1F008EDCB3 /* HTTP Tests */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = "HTTP Tests"; sourceTree = BUILT_PRODUCTS_DIR; };
27+
2E22487E1B8D6F1F008EDCB3 /* main.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = main.swift; sourceTree = "<group>"; };
28+
/* End PBXFileReference section */
29+
30+
/* Begin PBXFrameworksBuildPhase section */
31+
2E2248781B8D6F1F008EDCB3 /* Frameworks */ = {
32+
isa = PBXFrameworksBuildPhase;
33+
buildActionMask = 2147483647;
34+
files = (
35+
);
36+
runOnlyForDeploymentPostprocessing = 0;
37+
};
38+
/* End PBXFrameworksBuildPhase section */
39+
40+
/* Begin PBXGroup section */
41+
2E2248721B8D6F1F008EDCB3 = {
42+
isa = PBXGroup;
43+
children = (
44+
2E22487D1B8D6F1F008EDCB3 /* HTTP Tests */,
45+
2E22487C1B8D6F1F008EDCB3 /* Products */,
46+
);
47+
sourceTree = "<group>";
48+
};
49+
2E22487C1B8D6F1F008EDCB3 /* Products */ = {
50+
isa = PBXGroup;
51+
children = (
52+
2E22487B1B8D6F1F008EDCB3 /* HTTP Tests */,
53+
);
54+
name = Products;
55+
sourceTree = "<group>";
56+
};
57+
2E22487D1B8D6F1F008EDCB3 /* HTTP Tests */ = {
58+
isa = PBXGroup;
59+
children = (
60+
2E22487E1B8D6F1F008EDCB3 /* main.swift */,
61+
);
62+
path = "HTTP Tests";
63+
sourceTree = "<group>";
64+
};
65+
/* End PBXGroup section */
66+
67+
/* Begin PBXNativeTarget section */
68+
2E22487A1B8D6F1F008EDCB3 /* HTTP Tests */ = {
69+
isa = PBXNativeTarget;
70+
buildConfigurationList = 2E2248821B8D6F1F008EDCB3 /* Build configuration list for PBXNativeTarget "HTTP Tests" */;
71+
buildPhases = (
72+
2E2248771B8D6F1F008EDCB3 /* Sources */,
73+
2E2248781B8D6F1F008EDCB3 /* Frameworks */,
74+
2E2248791B8D6F1F008EDCB3 /* CopyFiles */,
75+
);
76+
buildRules = (
77+
);
78+
dependencies = (
79+
);
80+
name = "HTTP Tests";
81+
productName = "HTTP Tests";
82+
productReference = 2E22487B1B8D6F1F008EDCB3 /* HTTP Tests */;
83+
productType = "com.apple.product-type.tool";
84+
};
85+
/* End PBXNativeTarget section */
86+
87+
/* Begin PBXProject section */
88+
2E2248731B8D6F1F008EDCB3 /* Project object */ = {
89+
isa = PBXProject;
90+
attributes = {
91+
LastSwiftUpdateCheck = 0700;
92+
LastUpgradeCheck = 0640;
93+
ORGANIZATIONNAME = Cal;
94+
TargetAttributes = {
95+
2E22487A1B8D6F1F008EDCB3 = {
96+
CreatedOnToolsVersion = 6.4;
97+
};
98+
};
99+
};
100+
buildConfigurationList = 2E2248761B8D6F1F008EDCB3 /* Build configuration list for PBXProject "HTTP Tests" */;
101+
compatibilityVersion = "Xcode 3.2";
102+
developmentRegion = English;
103+
hasScannedForEncodings = 0;
104+
knownRegions = (
105+
en,
106+
);
107+
mainGroup = 2E2248721B8D6F1F008EDCB3;
108+
productRefGroup = 2E22487C1B8D6F1F008EDCB3 /* Products */;
109+
projectDirPath = "";
110+
projectRoot = "";
111+
targets = (
112+
2E22487A1B8D6F1F008EDCB3 /* HTTP Tests */,
113+
);
114+
};
115+
/* End PBXProject section */
116+
117+
/* Begin PBXSourcesBuildPhase section */
118+
2E2248771B8D6F1F008EDCB3 /* Sources */ = {
119+
isa = PBXSourcesBuildPhase;
120+
buildActionMask = 2147483647;
121+
files = (
122+
2E22487F1B8D6F1F008EDCB3 /* main.swift in Sources */,
123+
);
124+
runOnlyForDeploymentPostprocessing = 0;
125+
};
126+
/* End PBXSourcesBuildPhase section */
127+
128+
/* Begin XCBuildConfiguration section */
129+
2E2248801B8D6F1F008EDCB3 /* Debug */ = {
130+
isa = XCBuildConfiguration;
131+
buildSettings = {
132+
ALWAYS_SEARCH_USER_PATHS = NO;
133+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
134+
CLANG_CXX_LIBRARY = "libc++";
135+
CLANG_ENABLE_MODULES = YES;
136+
CLANG_ENABLE_OBJC_ARC = YES;
137+
CLANG_WARN_BOOL_CONVERSION = YES;
138+
CLANG_WARN_CONSTANT_CONVERSION = YES;
139+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
140+
CLANG_WARN_EMPTY_BODY = YES;
141+
CLANG_WARN_ENUM_CONVERSION = YES;
142+
CLANG_WARN_INT_CONVERSION = YES;
143+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
144+
CLANG_WARN_UNREACHABLE_CODE = YES;
145+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
146+
COPY_PHASE_STRIP = NO;
147+
DEBUG_INFORMATION_FORMAT = dwarf;
148+
ENABLE_STRICT_OBJC_MSGSEND = YES;
149+
GCC_C_LANGUAGE_STANDARD = gnu99;
150+
GCC_DYNAMIC_NO_PIC = NO;
151+
GCC_NO_COMMON_BLOCKS = YES;
152+
GCC_OPTIMIZATION_LEVEL = 0;
153+
GCC_PREPROCESSOR_DEFINITIONS = (
154+
"DEBUG=1",
155+
"$(inherited)",
156+
);
157+
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
158+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
159+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
160+
GCC_WARN_UNDECLARED_SELECTOR = YES;
161+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
162+
GCC_WARN_UNUSED_FUNCTION = YES;
163+
GCC_WARN_UNUSED_VARIABLE = YES;
164+
MACOSX_DEPLOYMENT_TARGET = 10.11;
165+
MTL_ENABLE_DEBUG_INFO = YES;
166+
ONLY_ACTIVE_ARCH = YES;
167+
SDKROOT = macosx;
168+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
169+
};
170+
name = Debug;
171+
};
172+
2E2248811B8D6F1F008EDCB3 /* Release */ = {
173+
isa = XCBuildConfiguration;
174+
buildSettings = {
175+
ALWAYS_SEARCH_USER_PATHS = NO;
176+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
177+
CLANG_CXX_LIBRARY = "libc++";
178+
CLANG_ENABLE_MODULES = YES;
179+
CLANG_ENABLE_OBJC_ARC = YES;
180+
CLANG_WARN_BOOL_CONVERSION = YES;
181+
CLANG_WARN_CONSTANT_CONVERSION = YES;
182+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
183+
CLANG_WARN_EMPTY_BODY = YES;
184+
CLANG_WARN_ENUM_CONVERSION = YES;
185+
CLANG_WARN_INT_CONVERSION = YES;
186+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
187+
CLANG_WARN_UNREACHABLE_CODE = YES;
188+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
189+
COPY_PHASE_STRIP = NO;
190+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
191+
ENABLE_NS_ASSERTIONS = NO;
192+
ENABLE_STRICT_OBJC_MSGSEND = YES;
193+
GCC_C_LANGUAGE_STANDARD = gnu99;
194+
GCC_NO_COMMON_BLOCKS = YES;
195+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
196+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
197+
GCC_WARN_UNDECLARED_SELECTOR = YES;
198+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
199+
GCC_WARN_UNUSED_FUNCTION = YES;
200+
GCC_WARN_UNUSED_VARIABLE = YES;
201+
MACOSX_DEPLOYMENT_TARGET = 10.11;
202+
MTL_ENABLE_DEBUG_INFO = NO;
203+
SDKROOT = macosx;
204+
};
205+
name = Release;
206+
};
207+
2E2248831B8D6F1F008EDCB3 /* Debug */ = {
208+
isa = XCBuildConfiguration;
209+
buildSettings = {
210+
PRODUCT_NAME = "$(TARGET_NAME)";
211+
};
212+
name = Debug;
213+
};
214+
2E2248841B8D6F1F008EDCB3 /* Release */ = {
215+
isa = XCBuildConfiguration;
216+
buildSettings = {
217+
PRODUCT_NAME = "$(TARGET_NAME)";
218+
};
219+
name = Release;
220+
};
221+
/* End XCBuildConfiguration section */
222+
223+
/* Begin XCConfigurationList section */
224+
2E2248761B8D6F1F008EDCB3 /* Build configuration list for PBXProject "HTTP Tests" */ = {
225+
isa = XCConfigurationList;
226+
buildConfigurations = (
227+
2E2248801B8D6F1F008EDCB3 /* Debug */,
228+
2E2248811B8D6F1F008EDCB3 /* Release */,
229+
);
230+
defaultConfigurationIsVisible = 0;
231+
defaultConfigurationName = Release;
232+
};
233+
2E2248821B8D6F1F008EDCB3 /* Build configuration list for PBXNativeTarget "HTTP Tests" */ = {
234+
isa = XCConfigurationList;
235+
buildConfigurations = (
236+
2E2248831B8D6F1F008EDCB3 /* Debug */,
237+
2E2248841B8D6F1F008EDCB3 /* Release */,
238+
);
239+
defaultConfigurationIsVisible = 0;
240+
defaultConfigurationName = Release;
241+
};
242+
/* End XCConfigurationList section */
243+
};
244+
rootObject = 2E2248731B8D6F1F008EDCB3 /* Project object */;
245+
}

HTTP Tests/HTTP Tests.xcodeproj/project.xcworkspace/contents.xcworkspacedata

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Bucket
3+
type = "1"
4+
version = "2.0">
5+
</Bucket>
Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Scheme
3+
LastUpgradeVersion = "0640"
4+
version = "1.3">
5+
<BuildAction
6+
parallelizeBuildables = "YES"
7+
buildImplicitDependencies = "YES">
8+
<BuildActionEntries>
9+
<BuildActionEntry
10+
buildForTesting = "YES"
11+
buildForRunning = "YES"
12+
buildForProfiling = "YES"
13+
buildForArchiving = "YES"
14+
buildForAnalyzing = "YES">
15+
<BuildableReference
16+
BuildableIdentifier = "primary"
17+
BlueprintIdentifier = "2E22487A1B8D6F1F008EDCB3"
18+
BuildableName = "HTTP Tests"
19+
BlueprintName = "HTTP Tests"
20+
ReferencedContainer = "container:HTTP Tests.xcodeproj">
21+
</BuildableReference>
22+
</BuildActionEntry>
23+
</BuildActionEntries>
24+
</BuildAction>
25+
<TestAction
26+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
27+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
28+
shouldUseLaunchSchemeArgsEnv = "YES"
29+
buildConfiguration = "Debug">
30+
<Testables>
31+
</Testables>
32+
<MacroExpansion>
33+
<BuildableReference
34+
BuildableIdentifier = "primary"
35+
BlueprintIdentifier = "2E22487A1B8D6F1F008EDCB3"
36+
BuildableName = "HTTP Tests"
37+
BlueprintName = "HTTP Tests"
38+
ReferencedContainer = "container:HTTP Tests.xcodeproj">
39+
</BuildableReference>
40+
</MacroExpansion>
41+
</TestAction>
42+
<LaunchAction
43+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
44+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
45+
launchStyle = "0"
46+
useCustomWorkingDirectory = "NO"
47+
buildConfiguration = "Debug"
48+
ignoresPersistentStateOnLaunch = "NO"
49+
debugDocumentVersioning = "YES"
50+
allowLocationSimulation = "YES">
51+
<BuildableProductRunnable
52+
runnableDebuggingMode = "0">
53+
<BuildableReference
54+
BuildableIdentifier = "primary"
55+
BlueprintIdentifier = "2E22487A1B8D6F1F008EDCB3"
56+
BuildableName = "HTTP Tests"
57+
BlueprintName = "HTTP Tests"
58+
ReferencedContainer = "container:HTTP Tests.xcodeproj">
59+
</BuildableReference>
60+
</BuildableProductRunnable>
61+
<AdditionalOptions>
62+
</AdditionalOptions>
63+
</LaunchAction>
64+
<ProfileAction
65+
shouldUseLaunchSchemeArgsEnv = "YES"
66+
savedToolIdentifier = ""
67+
useCustomWorkingDirectory = "NO"
68+
buildConfiguration = "Release"
69+
debugDocumentVersioning = "YES">
70+
<BuildableProductRunnable
71+
runnableDebuggingMode = "0">
72+
<BuildableReference
73+
BuildableIdentifier = "primary"
74+
BlueprintIdentifier = "2E22487A1B8D6F1F008EDCB3"
75+
BuildableName = "HTTP Tests"
76+
BlueprintName = "HTTP Tests"
77+
ReferencedContainer = "container:HTTP Tests.xcodeproj">
78+
</BuildableReference>
79+
</BuildableProductRunnable>
80+
</ProfileAction>
81+
<AnalyzeAction
82+
buildConfiguration = "Debug">
83+
</AnalyzeAction>
84+
<ArchiveAction
85+
buildConfiguration = "Release"
86+
revealArchiveInOrganizer = "YES">
87+
</ArchiveAction>
88+
</Scheme>
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>SchemeUserState</key>
6+
<dict>
7+
<key>HTTP Tests.xcscheme</key>
8+
<dict>
9+
<key>orderHint</key>
10+
<integer>0</integer>
11+
</dict>
12+
</dict>
13+
<key>SuppressBuildableAutocreation</key>
14+
<dict>
15+
<key>2E22487A1B8D6F1F008EDCB3</key>
16+
<dict>
17+
<key>primary</key>
18+
<true/>
19+
</dict>
20+
</dict>
21+
</dict>
22+
</plist>

0 commit comments

Comments
 (0)