pod-builder 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +8 -0
- data/.vscode/launch.json +102 -0
- data/Example/PodBuilderExample.xcodeproj/project.pbxproj +416 -0
- data/Example/PodBuilderExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- data/Example/PodBuilderExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- data/Example/PodBuilderExample.xcodeproj/project.xcworkspace/xcuserdata/tomas.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- data/Example/PodBuilderExample.xcodeproj/xcuserdata/tomas.xcuserdatad/xcschemes/xcschememanagement.plist +14 -0
- data/Example/PodBuilderExample.xcworkspace/contents.xcworkspacedata +10 -0
- data/Example/PodBuilderExample/AppDelegate.swift +47 -0
- data/Example/PodBuilderExample/Assets.xcassets/AppIcon.appiconset/Contents.json +98 -0
- data/Example/PodBuilderExample/Assets.xcassets/Contents.json +6 -0
- data/Example/PodBuilderExample/Base.lproj/LaunchScreen.storyboard +25 -0
- data/Example/PodBuilderExample/Base.lproj/Main.storyboard +24 -0
- data/Example/PodBuilderExample/Info.plist +45 -0
- data/Example/PodBuilderExample/ViewController.swift +25 -0
- data/Example/Podfile +8 -0
- data/Example/Podfile.lock +16 -0
- data/Example/Pods/Alamofire/LICENSE +19 -0
- data/Example/Pods/Alamofire/README.md +242 -0
- data/Example/Pods/Alamofire/Source/AFError.swift +460 -0
- data/Example/Pods/Alamofire/Source/Alamofire.swift +465 -0
- data/Example/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift +37 -0
- data/Example/Pods/Alamofire/Source/MultipartFormData.swift +580 -0
- data/Example/Pods/Alamofire/Source/NetworkReachabilityManager.swift +233 -0
- data/Example/Pods/Alamofire/Source/Notifications.swift +55 -0
- data/Example/Pods/Alamofire/Source/ParameterEncoding.swift +483 -0
- data/Example/Pods/Alamofire/Source/Request.swift +654 -0
- data/Example/Pods/Alamofire/Source/Response.swift +567 -0
- data/Example/Pods/Alamofire/Source/ResponseSerialization.swift +715 -0
- data/Example/Pods/Alamofire/Source/Result.swift +300 -0
- data/Example/Pods/Alamofire/Source/ServerTrustPolicy.swift +307 -0
- data/Example/Pods/Alamofire/Source/SessionDelegate.swift +725 -0
- data/Example/Pods/Alamofire/Source/SessionManager.swift +896 -0
- data/Example/Pods/Alamofire/Source/TaskDelegate.swift +466 -0
- data/Example/Pods/Alamofire/Source/Timeline.swift +136 -0
- data/Example/Pods/Alamofire/Source/Validation.swift +315 -0
- data/Example/Pods/Manifest.lock +16 -0
- data/Example/Pods/Pods.xcodeproj/project.pbxproj +673 -0
- data/Example/Pods/Pods.xcodeproj/xcuserdata/tomas.xcuserdatad/xcschemes/Alamofire.xcscheme +60 -0
- data/Example/Pods/Pods.xcodeproj/xcuserdata/tomas.xcuserdatad/xcschemes/Pods-PodBuilderExample.xcscheme +60 -0
- data/Example/Pods/Pods.xcodeproj/xcuserdata/tomas.xcuserdatad/xcschemes/xcschememanagement.plist +21 -0
- data/Example/Pods/Target Support Files/Alamofire/Alamofire-dummy.m +5 -0
- data/Example/Pods/Target Support Files/Alamofire/Alamofire-prefix.pch +12 -0
- data/Example/Pods/Target Support Files/Alamofire/Alamofire-umbrella.h +16 -0
- data/Example/Pods/Target Support Files/Alamofire/Alamofire.modulemap +6 -0
- data/Example/Pods/Target Support Files/Alamofire/Alamofire.xcconfig +9 -0
- data/Example/Pods/Target Support Files/Alamofire/Info.plist +26 -0
- data/Example/Pods/Target Support Files/Pods-PodBuilderExample/Info.plist +26 -0
- data/Example/Pods/Target Support Files/Pods-PodBuilderExample/Pods-PodBuilderExample-acknowledgements.markdown +26 -0
- data/Example/Pods/Target Support Files/Pods-PodBuilderExample/Pods-PodBuilderExample-acknowledgements.plist +58 -0
- data/Example/Pods/Target Support Files/Pods-PodBuilderExample/Pods-PodBuilderExample-dummy.m +5 -0
- data/Example/Pods/Target Support Files/Pods-PodBuilderExample/Pods-PodBuilderExample-frameworks.sh +153 -0
- data/Example/Pods/Target Support Files/Pods-PodBuilderExample/Pods-PodBuilderExample-resources.sh +118 -0
- data/Example/Pods/Target Support Files/Pods-PodBuilderExample/Pods-PodBuilderExample-umbrella.h +16 -0
- data/Example/Pods/Target Support Files/Pods-PodBuilderExample/Pods-PodBuilderExample.debug.xcconfig +11 -0
- data/Example/Pods/Target Support Files/Pods-PodBuilderExample/Pods-PodBuilderExample.modulemap +6 -0
- data/Example/Pods/Target Support Files/Pods-PodBuilderExample/Pods-PodBuilderExample.release.xcconfig +11 -0
- data/Gemfile +6 -0
- data/Gemfile.lock +100 -0
- data/LICENSE.txt +13 -0
- data/README.md +192 -0
- data/Rakefile +2 -0
- data/bin/console +16 -0
- data/bin/setup +8 -0
- data/exe/pod_builder +174 -0
- data/lib/pod_builder/analyze.rb +52 -0
- data/lib/pod_builder/cocoapods/analyzer.rb +24 -0
- data/lib/pod_builder/cocoapods/specification.rb +27 -0
- data/lib/pod_builder/command.rb +9 -0
- data/lib/pod_builder/command/build.rb +240 -0
- data/lib/pod_builder/command/build_all.rb +15 -0
- data/lib/pod_builder/command/clean.rb +80 -0
- data/lib/pod_builder/command/deintegrate.rb +51 -0
- data/lib/pod_builder/command/generate_podspec.rb +17 -0
- data/lib/pod_builder/command/init.rb +86 -0
- data/lib/pod_builder/command/install_sources.rb +82 -0
- data/lib/pod_builder/command/none.rb +16 -0
- data/lib/pod_builder/command/restore_all.rb +30 -0
- data/lib/pod_builder/configuration.rb +91 -0
- data/lib/pod_builder/core.rb +74 -0
- data/lib/pod_builder/install.rb +105 -0
- data/lib/pod_builder/podfile.rb +207 -0
- data/lib/pod_builder/podfile/post_actions.rb +141 -0
- data/lib/pod_builder/podfile_item.rb +216 -0
- data/lib/pod_builder/podspec.rb +71 -0
- data/lib/pod_builder/templates/build_podfile.template +78 -0
- data/lib/pod_builder/templates/build_podspec.template +19 -0
- data/lib/pod_builder/version.rb +4 -0
- data/pod-builder.gemspec +36 -0
- metadata +274 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: f562415a16845265720afde18d1fb7f63b3a859c99bbc278edca5251ce223b48
|
4
|
+
data.tar.gz: 6f0f54309f9144ca9bdd383e9fc52128d6930a629ccdb2fc225ea5a81adb5dc9
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 42270cd7578394fbf87f7bc646fc83c899071d08d991c9392b9e2e1aeda0922bde03c1a0e1abad10ee63e7727305fb29c5335f897854abfa081e1e512c4990b8
|
7
|
+
data.tar.gz: a4cdf05a93e7bdcd6c3a7c173b68726afaee95162c3bc8b418521c4b76018fe0f08166119eaad0f361f33db2c9e8bbbeabfe27cd82ed6a4a5e21391c66fb9880
|
data/.gitignore
ADDED
data/.vscode/launch.json
ADDED
@@ -0,0 +1,102 @@
|
|
1
|
+
{
|
2
|
+
// Use IntelliSense to learn about possible attributes.
|
3
|
+
// Hover to view descriptions of existing attributes.
|
4
|
+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
5
|
+
"version": "0.2.0",
|
6
|
+
"configurations": [
|
7
|
+
{
|
8
|
+
"name": "Init",
|
9
|
+
"type": "Ruby",
|
10
|
+
"request": "launch",
|
11
|
+
"cwd": "/Users/tomas/Documents/Xcode/Subito4",
|
12
|
+
"useBundler": true,
|
13
|
+
"program": "${workspaceRoot}/exe/pod_builder",
|
14
|
+
"showDebuggerOutput": true,
|
15
|
+
"pathToRDebugIDE": "/usr/bin/rdebug-ide",
|
16
|
+
"args": [
|
17
|
+
"init",
|
18
|
+
]
|
19
|
+
},
|
20
|
+
{
|
21
|
+
"name": "Deintegrate",
|
22
|
+
"type": "Ruby",
|
23
|
+
"request": "launch",
|
24
|
+
"cwd": "/Users/tomas/Documents/Xcode/Subito4",
|
25
|
+
"useBundler": true,
|
26
|
+
"program": "${workspaceRoot}/exe/pod_builder",
|
27
|
+
"showDebuggerOutput": true,
|
28
|
+
"pathToRDebugIDE": "/usr/bin/rdebug-ide",
|
29
|
+
"args": [
|
30
|
+
"deintegrate"
|
31
|
+
]
|
32
|
+
},
|
33
|
+
{
|
34
|
+
"name": "Build",
|
35
|
+
"type": "Ruby",
|
36
|
+
"request": "launch",
|
37
|
+
"cwd": "/Users/tomas/Documents/Xcode/Subito4",
|
38
|
+
"useBundler": true,
|
39
|
+
"program": "${workspaceRoot}/exe/pod_builder",
|
40
|
+
"showDebuggerOutput": true,
|
41
|
+
"pathToRDebugIDE": "/usr/bin/rdebug-ide",
|
42
|
+
"args": [
|
43
|
+
"build",
|
44
|
+
"-d",
|
45
|
+
"SBTUITestTunnel/Server",
|
46
|
+
]
|
47
|
+
},
|
48
|
+
{
|
49
|
+
"name": "Build All",
|
50
|
+
"type": "Ruby",
|
51
|
+
"request": "launch",
|
52
|
+
"cwd": "/Users/tomas/Documents/Xcode/Subito4",
|
53
|
+
"useBundler": true,
|
54
|
+
"program": "${workspaceRoot}/exe/pod_builder",
|
55
|
+
"showDebuggerOutput": true,
|
56
|
+
"pathToRDebugIDE": "/usr/bin/rdebug-ide",
|
57
|
+
"args": [
|
58
|
+
"build_all",
|
59
|
+
]
|
60
|
+
},
|
61
|
+
{
|
62
|
+
"name": "Restore All",
|
63
|
+
"type": "Ruby",
|
64
|
+
"request": "launch",
|
65
|
+
"cwd": "/Users/tomas/Documents/Xcode/Subito4",
|
66
|
+
"useBundler": true,
|
67
|
+
"program": "${workspaceRoot}/exe/pod_builder",
|
68
|
+
"showDebuggerOutput": true,
|
69
|
+
"pathToRDebugIDE": "/usr/bin/rdebug-ide",
|
70
|
+
"args": [
|
71
|
+
"restore_all",
|
72
|
+
"-d"
|
73
|
+
]
|
74
|
+
},
|
75
|
+
{
|
76
|
+
"name": "Clean",
|
77
|
+
"type": "Ruby",
|
78
|
+
"request": "launch",
|
79
|
+
"cwd": "/Users/tomas/Documents/Xcode/Subito4",
|
80
|
+
"useBundler": true,
|
81
|
+
"program": "${workspaceRoot}/exe/pod_builder",
|
82
|
+
"showDebuggerOutput": true,
|
83
|
+
"pathToRDebugIDE": "/usr/bin/rdebug-ide",
|
84
|
+
"args": [
|
85
|
+
"clean"
|
86
|
+
]
|
87
|
+
},
|
88
|
+
{
|
89
|
+
"name": "Install sources",
|
90
|
+
"type": "Ruby",
|
91
|
+
"request": "launch",
|
92
|
+
"cwd": "/Users/tomas/Documents/Xcode/Subito4",
|
93
|
+
"useBundler": true,
|
94
|
+
"program": "${workspaceRoot}/exe/pod_builder",
|
95
|
+
"showDebuggerOutput": true,
|
96
|
+
"pathToRDebugIDE": "/usr/bin/rdebug-ide",
|
97
|
+
"args": [
|
98
|
+
"install_sources"
|
99
|
+
]
|
100
|
+
}
|
101
|
+
]
|
102
|
+
}
|
@@ -0,0 +1,416 @@
|
|
1
|
+
// !$*UTF8*$!
|
2
|
+
{
|
3
|
+
archiveVersion = 1;
|
4
|
+
classes = {
|
5
|
+
};
|
6
|
+
objectVersion = 50;
|
7
|
+
objects = {
|
8
|
+
|
9
|
+
/* Begin PBXBuildFile section */
|
10
|
+
07F9933044C5A4C511E34F39 /* Pods_PodBuilderExample.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0B81DBF4EAEBEEA494F55271 /* Pods_PodBuilderExample.framework */; };
|
11
|
+
C347BD5A212FE46900228046 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = C347BD59212FE46900228046 /* AppDelegate.swift */; };
|
12
|
+
C347BD5C212FE46900228046 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C347BD5B212FE46900228046 /* ViewController.swift */; };
|
13
|
+
C347BD5F212FE46900228046 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C347BD5D212FE46900228046 /* Main.storyboard */; };
|
14
|
+
C347BD61212FE46A00228046 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = C347BD60212FE46A00228046 /* Assets.xcassets */; };
|
15
|
+
C347BD64212FE46A00228046 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C347BD62212FE46A00228046 /* LaunchScreen.storyboard */; };
|
16
|
+
/* End PBXBuildFile section */
|
17
|
+
|
18
|
+
/* Begin PBXFileReference section */
|
19
|
+
0B81DBF4EAEBEEA494F55271 /* Pods_PodBuilderExample.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_PodBuilderExample.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
20
|
+
53811B6C2E6F875F02029CBE /* Pods-PodBuilderExample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-PodBuilderExample.release.xcconfig"; path = "Pods/Target Support Files/Pods-PodBuilderExample/Pods-PodBuilderExample.release.xcconfig"; sourceTree = "<group>"; };
|
21
|
+
7C2008F2F5393C42A37869B9 /* Pods-PodBuilderExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-PodBuilderExample.debug.xcconfig"; path = "Pods/Target Support Files/Pods-PodBuilderExample/Pods-PodBuilderExample.debug.xcconfig"; sourceTree = "<group>"; };
|
22
|
+
C347BD56212FE46900228046 /* PodBuilderExample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = PodBuilderExample.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
23
|
+
C347BD59212FE46900228046 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
|
24
|
+
C347BD5B212FE46900228046 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = "<group>"; };
|
25
|
+
C347BD5E212FE46900228046 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
|
26
|
+
C347BD60212FE46A00228046 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
|
27
|
+
C347BD63212FE46A00228046 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
|
28
|
+
C347BD65212FE46A00228046 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
29
|
+
/* End PBXFileReference section */
|
30
|
+
|
31
|
+
/* Begin PBXFrameworksBuildPhase section */
|
32
|
+
C347BD53212FE46900228046 /* Frameworks */ = {
|
33
|
+
isa = PBXFrameworksBuildPhase;
|
34
|
+
buildActionMask = 2147483647;
|
35
|
+
files = (
|
36
|
+
07F9933044C5A4C511E34F39 /* Pods_PodBuilderExample.framework in Frameworks */,
|
37
|
+
);
|
38
|
+
runOnlyForDeploymentPostprocessing = 0;
|
39
|
+
};
|
40
|
+
/* End PBXFrameworksBuildPhase section */
|
41
|
+
|
42
|
+
/* Begin PBXGroup section */
|
43
|
+
1374A41E4CBBEC4CCD85FF51 /* Pods */ = {
|
44
|
+
isa = PBXGroup;
|
45
|
+
children = (
|
46
|
+
7C2008F2F5393C42A37869B9 /* Pods-PodBuilderExample.debug.xcconfig */,
|
47
|
+
53811B6C2E6F875F02029CBE /* Pods-PodBuilderExample.release.xcconfig */,
|
48
|
+
);
|
49
|
+
name = Pods;
|
50
|
+
sourceTree = "<group>";
|
51
|
+
};
|
52
|
+
9AF35483B83A9276F4AFD20E /* Frameworks */ = {
|
53
|
+
isa = PBXGroup;
|
54
|
+
children = (
|
55
|
+
0B81DBF4EAEBEEA494F55271 /* Pods_PodBuilderExample.framework */,
|
56
|
+
);
|
57
|
+
name = Frameworks;
|
58
|
+
sourceTree = "<group>";
|
59
|
+
};
|
60
|
+
C347BD4D212FE46900228046 = {
|
61
|
+
isa = PBXGroup;
|
62
|
+
children = (
|
63
|
+
C347BD58212FE46900228046 /* PodBuilderExample */,
|
64
|
+
C347BD57212FE46900228046 /* Products */,
|
65
|
+
1374A41E4CBBEC4CCD85FF51 /* Pods */,
|
66
|
+
9AF35483B83A9276F4AFD20E /* Frameworks */,
|
67
|
+
);
|
68
|
+
sourceTree = "<group>";
|
69
|
+
};
|
70
|
+
C347BD57212FE46900228046 /* Products */ = {
|
71
|
+
isa = PBXGroup;
|
72
|
+
children = (
|
73
|
+
C347BD56212FE46900228046 /* PodBuilderExample.app */,
|
74
|
+
);
|
75
|
+
name = Products;
|
76
|
+
sourceTree = "<group>";
|
77
|
+
};
|
78
|
+
C347BD58212FE46900228046 /* PodBuilderExample */ = {
|
79
|
+
isa = PBXGroup;
|
80
|
+
children = (
|
81
|
+
C347BD59212FE46900228046 /* AppDelegate.swift */,
|
82
|
+
C347BD5B212FE46900228046 /* ViewController.swift */,
|
83
|
+
C347BD5D212FE46900228046 /* Main.storyboard */,
|
84
|
+
C347BD60212FE46A00228046 /* Assets.xcassets */,
|
85
|
+
C347BD62212FE46A00228046 /* LaunchScreen.storyboard */,
|
86
|
+
C347BD65212FE46A00228046 /* Info.plist */,
|
87
|
+
);
|
88
|
+
path = PodBuilderExample;
|
89
|
+
sourceTree = "<group>";
|
90
|
+
};
|
91
|
+
/* End PBXGroup section */
|
92
|
+
|
93
|
+
/* Begin PBXNativeTarget section */
|
94
|
+
C347BD55212FE46900228046 /* PodBuilderExample */ = {
|
95
|
+
isa = PBXNativeTarget;
|
96
|
+
buildConfigurationList = C347BD68212FE46A00228046 /* Build configuration list for PBXNativeTarget "PodBuilderExample" */;
|
97
|
+
buildPhases = (
|
98
|
+
9709696C87B33D4C75052133 /* [CP] Check Pods Manifest.lock */,
|
99
|
+
C347BD52212FE46900228046 /* Sources */,
|
100
|
+
C347BD53212FE46900228046 /* Frameworks */,
|
101
|
+
C347BD54212FE46900228046 /* Resources */,
|
102
|
+
348F41A01EA26776FF84C3AD /* [CP] Embed Pods Frameworks */,
|
103
|
+
);
|
104
|
+
buildRules = (
|
105
|
+
);
|
106
|
+
dependencies = (
|
107
|
+
);
|
108
|
+
name = PodBuilderExample;
|
109
|
+
productName = PodBuilderExample;
|
110
|
+
productReference = C347BD56212FE46900228046 /* PodBuilderExample.app */;
|
111
|
+
productType = "com.apple.product-type.application";
|
112
|
+
};
|
113
|
+
/* End PBXNativeTarget section */
|
114
|
+
|
115
|
+
/* Begin PBXProject section */
|
116
|
+
C347BD4E212FE46900228046 /* Project object */ = {
|
117
|
+
isa = PBXProject;
|
118
|
+
attributes = {
|
119
|
+
LastSwiftUpdateCheck = 0940;
|
120
|
+
LastUpgradeCheck = 0940;
|
121
|
+
ORGANIZATIONNAME = Subito;
|
122
|
+
TargetAttributes = {
|
123
|
+
C347BD55212FE46900228046 = {
|
124
|
+
CreatedOnToolsVersion = 9.4;
|
125
|
+
};
|
126
|
+
};
|
127
|
+
};
|
128
|
+
buildConfigurationList = C347BD51212FE46900228046 /* Build configuration list for PBXProject "PodBuilderExample" */;
|
129
|
+
compatibilityVersion = "Xcode 9.3";
|
130
|
+
developmentRegion = en;
|
131
|
+
hasScannedForEncodings = 0;
|
132
|
+
knownRegions = (
|
133
|
+
en,
|
134
|
+
Base,
|
135
|
+
);
|
136
|
+
mainGroup = C347BD4D212FE46900228046;
|
137
|
+
productRefGroup = C347BD57212FE46900228046 /* Products */;
|
138
|
+
projectDirPath = "";
|
139
|
+
projectRoot = "";
|
140
|
+
targets = (
|
141
|
+
C347BD55212FE46900228046 /* PodBuilderExample */,
|
142
|
+
);
|
143
|
+
};
|
144
|
+
/* End PBXProject section */
|
145
|
+
|
146
|
+
/* Begin PBXResourcesBuildPhase section */
|
147
|
+
C347BD54212FE46900228046 /* Resources */ = {
|
148
|
+
isa = PBXResourcesBuildPhase;
|
149
|
+
buildActionMask = 2147483647;
|
150
|
+
files = (
|
151
|
+
C347BD64212FE46A00228046 /* LaunchScreen.storyboard in Resources */,
|
152
|
+
C347BD61212FE46A00228046 /* Assets.xcassets in Resources */,
|
153
|
+
C347BD5F212FE46900228046 /* Main.storyboard in Resources */,
|
154
|
+
);
|
155
|
+
runOnlyForDeploymentPostprocessing = 0;
|
156
|
+
};
|
157
|
+
/* End PBXResourcesBuildPhase section */
|
158
|
+
|
159
|
+
/* Begin PBXShellScriptBuildPhase section */
|
160
|
+
348F41A01EA26776FF84C3AD /* [CP] Embed Pods Frameworks */ = {
|
161
|
+
isa = PBXShellScriptBuildPhase;
|
162
|
+
buildActionMask = 2147483647;
|
163
|
+
files = (
|
164
|
+
);
|
165
|
+
inputFileListPaths = (
|
166
|
+
);
|
167
|
+
inputPaths = (
|
168
|
+
"${SRCROOT}/Pods/Target Support Files/Pods-PodBuilderExample/Pods-PodBuilderExample-frameworks.sh",
|
169
|
+
"${BUILT_PRODUCTS_DIR}/Alamofire/Alamofire.framework",
|
170
|
+
);
|
171
|
+
name = "[CP] Embed Pods Frameworks";
|
172
|
+
outputFileListPaths = (
|
173
|
+
);
|
174
|
+
outputPaths = (
|
175
|
+
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Alamofire.framework",
|
176
|
+
);
|
177
|
+
runOnlyForDeploymentPostprocessing = 0;
|
178
|
+
shellPath = /bin/sh;
|
179
|
+
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-PodBuilderExample/Pods-PodBuilderExample-frameworks.sh\"\n";
|
180
|
+
showEnvVarsInLog = 0;
|
181
|
+
};
|
182
|
+
9709696C87B33D4C75052133 /* [CP] Check Pods Manifest.lock */ = {
|
183
|
+
isa = PBXShellScriptBuildPhase;
|
184
|
+
buildActionMask = 2147483647;
|
185
|
+
files = (
|
186
|
+
);
|
187
|
+
inputFileListPaths = (
|
188
|
+
);
|
189
|
+
inputPaths = (
|
190
|
+
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
191
|
+
"${PODS_ROOT}/Manifest.lock",
|
192
|
+
);
|
193
|
+
name = "[CP] Check Pods Manifest.lock";
|
194
|
+
outputFileListPaths = (
|
195
|
+
);
|
196
|
+
outputPaths = (
|
197
|
+
"$(DERIVED_FILE_DIR)/Pods-PodBuilderExample-checkManifestLockResult.txt",
|
198
|
+
);
|
199
|
+
runOnlyForDeploymentPostprocessing = 0;
|
200
|
+
shellPath = /bin/sh;
|
201
|
+
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";
|
202
|
+
showEnvVarsInLog = 0;
|
203
|
+
};
|
204
|
+
/* End PBXShellScriptBuildPhase section */
|
205
|
+
|
206
|
+
/* Begin PBXSourcesBuildPhase section */
|
207
|
+
C347BD52212FE46900228046 /* Sources */ = {
|
208
|
+
isa = PBXSourcesBuildPhase;
|
209
|
+
buildActionMask = 2147483647;
|
210
|
+
files = (
|
211
|
+
C347BD5C212FE46900228046 /* ViewController.swift in Sources */,
|
212
|
+
C347BD5A212FE46900228046 /* AppDelegate.swift in Sources */,
|
213
|
+
);
|
214
|
+
runOnlyForDeploymentPostprocessing = 0;
|
215
|
+
};
|
216
|
+
/* End PBXSourcesBuildPhase section */
|
217
|
+
|
218
|
+
/* Begin PBXVariantGroup section */
|
219
|
+
C347BD5D212FE46900228046 /* Main.storyboard */ = {
|
220
|
+
isa = PBXVariantGroup;
|
221
|
+
children = (
|
222
|
+
C347BD5E212FE46900228046 /* Base */,
|
223
|
+
);
|
224
|
+
name = Main.storyboard;
|
225
|
+
sourceTree = "<group>";
|
226
|
+
};
|
227
|
+
C347BD62212FE46A00228046 /* LaunchScreen.storyboard */ = {
|
228
|
+
isa = PBXVariantGroup;
|
229
|
+
children = (
|
230
|
+
C347BD63212FE46A00228046 /* Base */,
|
231
|
+
);
|
232
|
+
name = LaunchScreen.storyboard;
|
233
|
+
sourceTree = "<group>";
|
234
|
+
};
|
235
|
+
/* End PBXVariantGroup section */
|
236
|
+
|
237
|
+
/* Begin XCBuildConfiguration section */
|
238
|
+
C347BD66212FE46A00228046 /* Debug */ = {
|
239
|
+
isa = XCBuildConfiguration;
|
240
|
+
buildSettings = {
|
241
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
242
|
+
CLANG_ANALYZER_NONNULL = YES;
|
243
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
244
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
|
245
|
+
CLANG_CXX_LIBRARY = "libc++";
|
246
|
+
CLANG_ENABLE_MODULES = YES;
|
247
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
248
|
+
CLANG_ENABLE_OBJC_WEAK = YES;
|
249
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
250
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
251
|
+
CLANG_WARN_COMMA = YES;
|
252
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
253
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
254
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
255
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
256
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
257
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
258
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
259
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
260
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
261
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
262
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
263
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
264
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
265
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
266
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
267
|
+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
268
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
269
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
270
|
+
CODE_SIGN_IDENTITY = "iPhone Developer";
|
271
|
+
COPY_PHASE_STRIP = NO;
|
272
|
+
DEBUG_INFORMATION_FORMAT = dwarf;
|
273
|
+
ENABLE_BITCODE = NO;
|
274
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
275
|
+
ENABLE_TESTABILITY = YES;
|
276
|
+
GCC_C_LANGUAGE_STANDARD = gnu11;
|
277
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
278
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
279
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
280
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
281
|
+
"DEBUG=1",
|
282
|
+
"$(inherited)",
|
283
|
+
);
|
284
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
285
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
286
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
287
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
288
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
289
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
290
|
+
IPHONEOS_DEPLOYMENT_TARGET = 11.4;
|
291
|
+
MTL_ENABLE_DEBUG_INFO = YES;
|
292
|
+
ONLY_ACTIVE_ARCH = YES;
|
293
|
+
SDKROOT = iphoneos;
|
294
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
|
295
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
296
|
+
};
|
297
|
+
name = Debug;
|
298
|
+
};
|
299
|
+
C347BD67212FE46A00228046 /* Release */ = {
|
300
|
+
isa = XCBuildConfiguration;
|
301
|
+
buildSettings = {
|
302
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
303
|
+
CLANG_ANALYZER_NONNULL = YES;
|
304
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
305
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
|
306
|
+
CLANG_CXX_LIBRARY = "libc++";
|
307
|
+
CLANG_ENABLE_MODULES = YES;
|
308
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
309
|
+
CLANG_ENABLE_OBJC_WEAK = YES;
|
310
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
311
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
312
|
+
CLANG_WARN_COMMA = YES;
|
313
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
314
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
315
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
316
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
317
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
318
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
319
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
320
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
321
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
322
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
323
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
324
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
325
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
326
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
327
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
328
|
+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
329
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
330
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
331
|
+
CODE_SIGN_IDENTITY = "iPhone Developer";
|
332
|
+
COPY_PHASE_STRIP = NO;
|
333
|
+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
334
|
+
ENABLE_BITCODE = NO;
|
335
|
+
ENABLE_NS_ASSERTIONS = NO;
|
336
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
337
|
+
GCC_C_LANGUAGE_STANDARD = gnu11;
|
338
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
339
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
340
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
341
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
342
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
343
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
344
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
345
|
+
IPHONEOS_DEPLOYMENT_TARGET = 11.4;
|
346
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
347
|
+
SDKROOT = iphoneos;
|
348
|
+
SWIFT_COMPILATION_MODE = wholemodule;
|
349
|
+
SWIFT_OPTIMIZATION_LEVEL = "-O";
|
350
|
+
VALIDATE_PRODUCT = YES;
|
351
|
+
};
|
352
|
+
name = Release;
|
353
|
+
};
|
354
|
+
C347BD69212FE46A00228046 /* Debug */ = {
|
355
|
+
isa = XCBuildConfiguration;
|
356
|
+
baseConfigurationReference = 7C2008F2F5393C42A37869B9 /* Pods-PodBuilderExample.debug.xcconfig */;
|
357
|
+
buildSettings = {
|
358
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
359
|
+
CODE_SIGN_STYLE = Automatic;
|
360
|
+
DEVELOPMENT_TEAM = HUC4RY3F6U;
|
361
|
+
INFOPLIST_FILE = PodBuilderExample/Info.plist;
|
362
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
363
|
+
"$(inherited)",
|
364
|
+
"@executable_path/Frameworks",
|
365
|
+
);
|
366
|
+
PRODUCT_BUNDLE_IDENTIFIER = com.com.subito.PodBuilderExample;
|
367
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
368
|
+
SWIFT_VERSION = 4.0;
|
369
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
370
|
+
};
|
371
|
+
name = Debug;
|
372
|
+
};
|
373
|
+
C347BD6A212FE46A00228046 /* Release */ = {
|
374
|
+
isa = XCBuildConfiguration;
|
375
|
+
baseConfigurationReference = 53811B6C2E6F875F02029CBE /* Pods-PodBuilderExample.release.xcconfig */;
|
376
|
+
buildSettings = {
|
377
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
378
|
+
CODE_SIGN_STYLE = Automatic;
|
379
|
+
DEVELOPMENT_TEAM = HUC4RY3F6U;
|
380
|
+
INFOPLIST_FILE = PodBuilderExample/Info.plist;
|
381
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
382
|
+
"$(inherited)",
|
383
|
+
"@executable_path/Frameworks",
|
384
|
+
);
|
385
|
+
PRODUCT_BUNDLE_IDENTIFIER = com.com.subito.PodBuilderExample;
|
386
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
387
|
+
SWIFT_VERSION = 4.0;
|
388
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
389
|
+
};
|
390
|
+
name = Release;
|
391
|
+
};
|
392
|
+
/* End XCBuildConfiguration section */
|
393
|
+
|
394
|
+
/* Begin XCConfigurationList section */
|
395
|
+
C347BD51212FE46900228046 /* Build configuration list for PBXProject "PodBuilderExample" */ = {
|
396
|
+
isa = XCConfigurationList;
|
397
|
+
buildConfigurations = (
|
398
|
+
C347BD66212FE46A00228046 /* Debug */,
|
399
|
+
C347BD67212FE46A00228046 /* Release */,
|
400
|
+
);
|
401
|
+
defaultConfigurationIsVisible = 0;
|
402
|
+
defaultConfigurationName = Release;
|
403
|
+
};
|
404
|
+
C347BD68212FE46A00228046 /* Build configuration list for PBXNativeTarget "PodBuilderExample" */ = {
|
405
|
+
isa = XCConfigurationList;
|
406
|
+
buildConfigurations = (
|
407
|
+
C347BD69212FE46A00228046 /* Debug */,
|
408
|
+
C347BD6A212FE46A00228046 /* Release */,
|
409
|
+
);
|
410
|
+
defaultConfigurationIsVisible = 0;
|
411
|
+
defaultConfigurationName = Release;
|
412
|
+
};
|
413
|
+
/* End XCConfigurationList section */
|
414
|
+
};
|
415
|
+
rootObject = C347BD4E212FE46900228046 /* Project object */;
|
416
|
+
}
|