Cocoapods. Network layer. Fetching repos.
This commit is contained in:
parent
e348ad1eb1
commit
3dafdbc09c
143 changed files with 12470 additions and 47 deletions
|
@ -7,6 +7,8 @@
|
|||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
316C92327D2D825D5379721F /* Pods_repo_browserTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3C0F21428106413F5931354A /* Pods_repo_browserTests.framework */; };
|
||||
55FBD43C69C4A6D5FBF40CC6 /* Pods_repo_browser.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BFDF6CC5839EDCF9F39697FA /* Pods_repo_browser.framework */; };
|
||||
C10733B522C468A30095EEDD /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = C10733B422C468A30095EEDD /* AppDelegate.swift */; };
|
||||
C10733B722C468A30095EEDD /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C10733B622C468A30095EEDD /* ViewController.swift */; };
|
||||
C10733BA22C468A30095EEDD /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C10733B822C468A30095EEDD /* Main.storyboard */; };
|
||||
|
@ -30,6 +32,11 @@
|
|||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
3C0F21428106413F5931354A /* Pods_repo_browserTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_repo_browserTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
565DD9E2E3891BA28AE8DA04 /* Pods-repo-browser.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-repo-browser.debug.xcconfig"; path = "Target Support Files/Pods-repo-browser/Pods-repo-browser.debug.xcconfig"; sourceTree = "<group>"; };
|
||||
8DBD333E6EF8030384A2710E /* Pods-repo-browserTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-repo-browserTests.release.xcconfig"; path = "Target Support Files/Pods-repo-browserTests/Pods-repo-browserTests.release.xcconfig"; sourceTree = "<group>"; };
|
||||
97357779CD8C419E99B00FF1 /* Pods-repo-browser.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-repo-browser.release.xcconfig"; path = "Target Support Files/Pods-repo-browser/Pods-repo-browser.release.xcconfig"; sourceTree = "<group>"; };
|
||||
BFDF6CC5839EDCF9F39697FA /* Pods_repo_browser.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_repo_browser.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
C10733B122C468A30095EEDD /* repo-browser.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "repo-browser.app"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
C10733B422C468A30095EEDD /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
|
||||
C10733B622C468A30095EEDD /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = "<group>"; };
|
||||
|
@ -44,6 +51,7 @@
|
|||
C10733D622C468F90095EEDD /* RepoCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = RepoCell.xib; sourceTree = "<group>"; };
|
||||
C10733D922C46A370095EEDD /* RepoBrowser.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = RepoBrowser.plist; sourceTree = "<group>"; };
|
||||
C10733DC22C46B3C0095EEDD /* RBRNetworkController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RBRNetworkController.swift; sourceTree = "<group>"; };
|
||||
CEC42CE36B871E51137612FE /* Pods-repo-browserTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-repo-browserTests.debug.xcconfig"; path = "Target Support Files/Pods-repo-browserTests/Pods-repo-browserTests.debug.xcconfig"; sourceTree = "<group>"; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
|
@ -51,6 +59,7 @@
|
|||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
55FBD43C69C4A6D5FBF40CC6 /* Pods_repo_browser.framework in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
|
@ -58,18 +67,30 @@
|
|||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
316C92327D2D825D5379721F /* Pods_repo_browserTests.framework in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
0CA1460E14E8C9B55F680560 /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
BFDF6CC5839EDCF9F39697FA /* Pods_repo_browser.framework */,
|
||||
3C0F21428106413F5931354A /* Pods_repo_browserTests.framework */,
|
||||
);
|
||||
name = Frameworks;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
C10733A822C468A30095EEDD = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
C10733B322C468A30095EEDD /* repo-browser */,
|
||||
C10733C822C468A40095EEDD /* repo-browserTests */,
|
||||
C10733B222C468A30095EEDD /* Products */,
|
||||
E499F4631ADB9C428DFFEFB3 /* Pods */,
|
||||
0CA1460E14E8C9B55F680560 /* Frameworks */,
|
||||
);
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
|
@ -124,6 +145,18 @@
|
|||
path = Helpers;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
E499F4631ADB9C428DFFEFB3 /* Pods */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
565DD9E2E3891BA28AE8DA04 /* Pods-repo-browser.debug.xcconfig */,
|
||||
97357779CD8C419E99B00FF1 /* Pods-repo-browser.release.xcconfig */,
|
||||
CEC42CE36B871E51137612FE /* Pods-repo-browserTests.debug.xcconfig */,
|
||||
8DBD333E6EF8030384A2710E /* Pods-repo-browserTests.release.xcconfig */,
|
||||
);
|
||||
name = Pods;
|
||||
path = Pods;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
|
@ -131,9 +164,11 @@
|
|||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = C10733CE22C468A40095EEDD /* Build configuration list for PBXNativeTarget "repo-browser" */;
|
||||
buildPhases = (
|
||||
0D3EF2C8AFEA9EF68FCDABDE /* [CP] Check Pods Manifest.lock */,
|
||||
C10733AD22C468A30095EEDD /* Sources */,
|
||||
C10733AE22C468A30095EEDD /* Frameworks */,
|
||||
C10733AF22C468A30095EEDD /* Resources */,
|
||||
312A1F63EAB58077C62806A7 /* [CP] Embed Pods Frameworks */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
|
@ -148,6 +183,7 @@
|
|||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = C10733D122C468A40095EEDD /* Build configuration list for PBXNativeTarget "repo-browserTests" */;
|
||||
buildPhases = (
|
||||
8B478652451419C7A83D6127 /* [CP] Check Pods Manifest.lock */,
|
||||
C10733C122C468A40095EEDD /* Sources */,
|
||||
C10733C222C468A40095EEDD /* Frameworks */,
|
||||
C10733C322C468A40095EEDD /* Resources */,
|
||||
|
@ -222,6 +258,70 @@
|
|||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXShellScriptBuildPhase section */
|
||||
0D3EF2C8AFEA9EF68FCDABDE /* [CP] Check Pods Manifest.lock */ = {
|
||||
isa = PBXShellScriptBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
inputFileListPaths = (
|
||||
);
|
||||
inputPaths = (
|
||||
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
||||
"${PODS_ROOT}/Manifest.lock",
|
||||
);
|
||||
name = "[CP] Check Pods Manifest.lock";
|
||||
outputFileListPaths = (
|
||||
);
|
||||
outputPaths = (
|
||||
"$(DERIVED_FILE_DIR)/Pods-repo-browser-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";
|
||||
showEnvVarsInLog = 0;
|
||||
};
|
||||
312A1F63EAB58077C62806A7 /* [CP] Embed Pods Frameworks */ = {
|
||||
isa = PBXShellScriptBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
inputFileListPaths = (
|
||||
"${PODS_ROOT}/Target Support Files/Pods-repo-browser/Pods-repo-browser-frameworks-${CONFIGURATION}-input-files.xcfilelist",
|
||||
);
|
||||
name = "[CP] Embed Pods Frameworks";
|
||||
outputFileListPaths = (
|
||||
"${PODS_ROOT}/Target Support Files/Pods-repo-browser/Pods-repo-browser-frameworks-${CONFIGURATION}-output-files.xcfilelist",
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
shellPath = /bin/sh;
|
||||
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-repo-browser/Pods-repo-browser-frameworks.sh\"\n";
|
||||
showEnvVarsInLog = 0;
|
||||
};
|
||||
8B478652451419C7A83D6127 /* [CP] Check Pods Manifest.lock */ = {
|
||||
isa = PBXShellScriptBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
inputFileListPaths = (
|
||||
);
|
||||
inputPaths = (
|
||||
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
||||
"${PODS_ROOT}/Manifest.lock",
|
||||
);
|
||||
name = "[CP] Check Pods Manifest.lock";
|
||||
outputFileListPaths = (
|
||||
);
|
||||
outputPaths = (
|
||||
"$(DERIVED_FILE_DIR)/Pods-repo-browserTests-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";
|
||||
showEnvVarsInLog = 0;
|
||||
};
|
||||
/* End PBXShellScriptBuildPhase section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
C10733AD22C468A30095EEDD /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
|
@ -390,6 +490,7 @@
|
|||
};
|
||||
C10733CF22C468A40095EEDD /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
baseConfigurationReference = 565DD9E2E3891BA28AE8DA04 /* Pods-repo-browser.debug.xcconfig */;
|
||||
buildSettings = {
|
||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
|
@ -407,6 +508,7 @@
|
|||
};
|
||||
C10733D022C468A40095EEDD /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
baseConfigurationReference = 97357779CD8C419E99B00FF1 /* Pods-repo-browser.release.xcconfig */;
|
||||
buildSettings = {
|
||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
|
@ -424,6 +526,7 @@
|
|||
};
|
||||
C10733D222C468A40095EEDD /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
baseConfigurationReference = CEC42CE36B871E51137612FE /* Pods-repo-browserTests.debug.xcconfig */;
|
||||
buildSettings = {
|
||||
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
|
||||
BUNDLE_LOADER = "$(TEST_HOST)";
|
||||
|
@ -444,6 +547,7 @@
|
|||
};
|
||||
C10733D322C468A40095EEDD /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
baseConfigurationReference = 8DBD333E6EF8030384A2710E /* Pods-repo-browserTests.release.xcconfig */;
|
||||
buildSettings = {
|
||||
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
|
||||
BUNDLE_LOADER = "$(TEST_HOST)";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue