xcbootstrap 0.0.1
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/bin/xcbootstrap +8 -0
- data/lib/xcbootstrap/bootstrap.rb +65 -0
- data/lib/xcbootstrap/cli.rb +17 -0
- data/lib/xcbootstrap/next_steps.txt +32 -0
- data/lib/xcbootstrap/template.rb +40 -0
- data/lib/xcbootstrap/version.rb +3 -0
- data/lib/xcbootstrap.rb +3 -0
- data/spec/acceptance/xcbootstrap_spec.rb +57 -0
- data/spec/spec_helper.rb +5 -0
- data/spec/unit/bootstrap_spec.rb +100 -0
- data/spec/unit/cli_spec.rb +33 -0
- data/spec/unit/template_spec.rb +86 -0
- data/templates/Sample/Sample/AppDelegate.h +15 -0
- data/templates/Sample/Sample/AppDelegate.m +49 -0
- data/templates/Sample/Sample/Default-568h@2x.png +0 -0
- data/templates/Sample/Sample/Default.png +0 -0
- data/templates/Sample/Sample/Default@2x.png +0 -0
- data/templates/Sample/Sample/Sample-Info.plist +45 -0
- data/templates/Sample/Sample/Sample-Prefix.pch +14 -0
- data/templates/Sample/Sample/main.m +18 -0
- data/templates/Sample/Sample.xcodeproj/project.pbxproj +423 -0
- data/templates/Sample/Sample.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- data/templates/Sample/Sample.xcodeproj/xcshareddata/xcschemes/Sample.xcscheme +96 -0
- data/templates/Sample/SampleTests/SampleTests-Info.plist +22 -0
- data/templates/Sample/SampleTests/SampleTests.m +22 -0
- data/templates/Sample/gitignore +18 -0
- data/templates/Sample/manifest.yml +16 -0
- data/templates/simple/Gemfile +7 -0
- data/templates/simple/Podfile +15 -0
- data/templates/simple/Rakefile +45 -0
- data/templates/simple/app/configuration/analyzer.xcconfig +21 -0
- data/templates/simple/app/configuration/app.xcconfig +13 -0
- data/templates/simple/app/configuration/architectures.xcconfig +5 -0
- data/templates/simple/app/configuration/compiler.xcconfig +59 -0
- data/templates/simple/app/configuration/debug-code-sign.xcconfig +3 -0
- data/templates/simple/app/configuration/debug.xcconfig +22 -0
- data/templates/simple/app/configuration/release-code-sign.xcconfig +3 -0
- data/templates/simple/app/configuration/release.xcconfig +18 -0
- data/templates/simple/app/configuration/shared.xcconfig +12 -0
- data/templates/simple/app/configuration/unit-tests.xcconfig +13 -0
- data/templates/simple/app/resources/AppInfo.plist +45 -0
- data/templates/simple/app/resources/Default-568h@2x.png +0 -0
- data/templates/simple/app/resources/Default.png +0 -0
- data/templates/simple/app/resources/Default@2x.png +0 -0
- data/templates/simple/app/resources/UnitTestsInfo.plist +22 -0
- data/templates/simple/app/simple.xcodeproj/project.pbxproj +439 -0
- data/templates/simple/app/simple.xcodeproj/xcshareddata/xcschemes/simple.xcscheme +138 -0
- data/templates/simple/app/src/AppDelegate.h +7 -0
- data/templates/simple/app/src/AppDelegate.m +46 -0
- data/templates/simple/app/src/AppPrefix.pch +10 -0
- data/templates/simple/app/src/main.m +9 -0
- data/templates/simple/app/test/ExampleSpec.m +34 -0
- data/templates/simple/app/test/UnitTestsPrefix.pch +11 -0
- data/templates/simple/gitignore +20 -0
- data/templates/simple/manifest.yml +31 -0
- data/templates/simple/simple.xcworkspace/contents.xcworkspacedata +10 -0
- data/templates/static-lib/Gemfile +4 -0
- data/templates/static-lib/Podfile +14 -0
- data/templates/static-lib/Rakefile +29 -0
- data/templates/static-lib/gitignore +20 -0
- data/templates/static-lib/lib/configuration/analyzer.xcconfig +21 -0
- data/templates/static-lib/lib/configuration/architectures.xcconfig +5 -0
- data/templates/static-lib/lib/configuration/compiler.xcconfig +59 -0
- data/templates/static-lib/lib/configuration/debug-code-sign.xcconfig +3 -0
- data/templates/static-lib/lib/configuration/debug.xcconfig +19 -0
- data/templates/static-lib/lib/configuration/lib.xcconfig +10 -0
- data/templates/static-lib/lib/configuration/release-code-sign.xcconfig +3 -0
- data/templates/static-lib/lib/configuration/release.xcconfig +18 -0
- data/templates/static-lib/lib/configuration/shared.xcconfig +11 -0
- data/templates/static-lib/lib/configuration/test-loader.xcconfig +11 -0
- data/templates/static-lib/lib/configuration/unit-tests.xcconfig +13 -0
- data/templates/static-lib/lib/resources/Default-568h@2x.png +0 -0
- data/templates/static-lib/lib/resources/Default.png +0 -0
- data/templates/static-lib/lib/resources/Default@2x.png +0 -0
- data/templates/static-lib/lib/resources/TestLoaderAppInfo.plist +45 -0
- data/templates/static-lib/lib/resources/UnitTestsInfo.plist +22 -0
- data/templates/static-lib/lib/src/MyFirstLibObject.h +7 -0
- data/templates/static-lib/lib/src/MyFirstLibObject.m +15 -0
- data/templates/static-lib/lib/src/StaticLibPrefix.pch +10 -0
- data/templates/static-lib/lib/static-lib.xcodeproj/project.pbxproj +546 -0
- data/templates/static-lib/lib/static-lib.xcodeproj/xcshareddata/xcschemes/static-lib.xcscheme +97 -0
- data/templates/static-lib/lib/test/ExampleSpec.m +34 -0
- data/templates/static-lib/lib/test/TestLoaderAppDelegate.h +7 -0
- data/templates/static-lib/lib/test/TestLoaderAppDelegate.m +13 -0
- data/templates/static-lib/lib/test/TestLoaderAppPrefix.pch +10 -0
- data/templates/static-lib/lib/test/UnitTestsPrefix.pch +11 -0
- data/templates/static-lib/lib/test/main.m +9 -0
- data/templates/static-lib/manifest.yml +36 -0
- data/templates/static-lib/static-lib.podspec +29 -0
- data/templates/static-lib/static-lib.xcworkspace/contents.xcworkspacedata +10 -0
- metadata +209 -0
|
@@ -0,0 +1,439 @@
|
|
|
1
|
+
// !$*UTF8*$!
|
|
2
|
+
{
|
|
3
|
+
archiveVersion = 1;
|
|
4
|
+
classes = {
|
|
5
|
+
};
|
|
6
|
+
objectVersion = 46;
|
|
7
|
+
objects = {
|
|
8
|
+
|
|
9
|
+
/* Begin PBXBuildFile section */
|
|
10
|
+
B647D4D235724A08BDD6B731 /* libPods.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2F64538FE6CE416B8F24C4B8 /* libPods.a */; };
|
|
11
|
+
BB18BA669BEF4A56AFCF1BE0 /* libPods-test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 46B6A7448A194A06A60C61C0 /* libPods-test.a */; };
|
|
12
|
+
C911D63716C3C62A004D8F4B /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C911D63616C3C62A004D8F4B /* UIKit.framework */; };
|
|
13
|
+
C911D63916C3C62A004D8F4B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C911D63816C3C62A004D8F4B /* Foundation.framework */; };
|
|
14
|
+
C911D63B16C3C62A004D8F4B /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C911D63A16C3C62A004D8F4B /* CoreGraphics.framework */; };
|
|
15
|
+
C911D64316C3C62A004D8F4B /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = C911D64216C3C62A004D8F4B /* main.m */; };
|
|
16
|
+
C911D64716C3C62A004D8F4B /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = C911D64616C3C62A004D8F4B /* AppDelegate.m */; };
|
|
17
|
+
C911D65516C3C62A004D8F4B /* SenTestingKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C911D65416C3C62A004D8F4B /* SenTestingKit.framework */; };
|
|
18
|
+
C911D65616C3C62A004D8F4B /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C911D63616C3C62A004D8F4B /* UIKit.framework */; };
|
|
19
|
+
C911D65716C3C62A004D8F4B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C911D63816C3C62A004D8F4B /* Foundation.framework */; };
|
|
20
|
+
C9E977CE16C8D004006C7F64 /* Default-568h@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C9E977C716C8D004006C7F64 /* Default-568h@2x.png */; };
|
|
21
|
+
C9E977D016C8D004006C7F64 /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = C9E977C916C8D004006C7F64 /* Default.png */; };
|
|
22
|
+
C9E977D116C8D004006C7F64 /* Default@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C9E977CA16C8D004006C7F64 /* Default@2x.png */; };
|
|
23
|
+
C9E977D616C90619006C7F64 /* ExampleSpec.m in Sources */ = {isa = PBXBuildFile; fileRef = C9E977D516C90619006C7F64 /* ExampleSpec.m */; };
|
|
24
|
+
/* End PBXBuildFile section */
|
|
25
|
+
|
|
26
|
+
/* Begin PBXContainerItemProxy section */
|
|
27
|
+
C911D65816C3C62A004D8F4B /* PBXContainerItemProxy */ = {
|
|
28
|
+
isa = PBXContainerItemProxy;
|
|
29
|
+
containerPortal = C911D62B16C3C62A004D8F4B /* Project object */;
|
|
30
|
+
proxyType = 1;
|
|
31
|
+
remoteGlobalIDString = C911D63216C3C62A004D8F4B;
|
|
32
|
+
remoteInfo = default;
|
|
33
|
+
};
|
|
34
|
+
/* End PBXContainerItemProxy section */
|
|
35
|
+
|
|
36
|
+
/* Begin PBXFileReference section */
|
|
37
|
+
2F64538FE6CE416B8F24C4B8 /* libPods.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libPods.a; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
38
|
+
46B6A7448A194A06A60C61C0 /* libPods-test.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-test.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
39
|
+
C911D63316C3C62A004D8F4B /* simple.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = simple.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
40
|
+
C911D63616C3C62A004D8F4B /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
|
|
41
|
+
C911D63816C3C62A004D8F4B /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
|
|
42
|
+
C911D63A16C3C62A004D8F4B /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
|
|
43
|
+
C911D64216C3C62A004D8F4B /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
|
|
44
|
+
C911D64416C3C62A004D8F4B /* AppPrefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppPrefix.pch; sourceTree = "<group>"; };
|
|
45
|
+
C911D64516C3C62A004D8F4B /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
|
|
46
|
+
C911D64616C3C62A004D8F4B /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
|
|
47
|
+
C911D65316C3C62A004D8F4B /* unit-tests.octest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "unit-tests.octest"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
48
|
+
C911D65416C3C62A004D8F4B /* SenTestingKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SenTestingKit.framework; path = Library/Frameworks/SenTestingKit.framework; sourceTree = DEVELOPER_DIR; };
|
|
49
|
+
C969682316CA1C8800F1C1FD /* app.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = app.xcconfig; sourceTree = "<group>"; };
|
|
50
|
+
C969682416CA1C8800F1C1FD /* debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = debug.xcconfig; sourceTree = "<group>"; };
|
|
51
|
+
C969682516CA1C8800F1C1FD /* release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = release.xcconfig; sourceTree = "<group>"; };
|
|
52
|
+
C969682616CA1C8800F1C1FD /* shared.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = shared.xcconfig; sourceTree = "<group>"; };
|
|
53
|
+
C969682716CA1C8800F1C1FD /* unit-tests.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "unit-tests.xcconfig"; sourceTree = "<group>"; };
|
|
54
|
+
C980295A179FF0CE008F0C0B /* architectures.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = architectures.xcconfig; sourceTree = "<group>"; };
|
|
55
|
+
C980295B179FF13D008F0C0B /* analyzer.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = analyzer.xcconfig; sourceTree = "<group>"; };
|
|
56
|
+
C980295C179FF13D008F0C0B /* compiler.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = compiler.xcconfig; sourceTree = "<group>"; };
|
|
57
|
+
C980295D179FF13D008F0C0B /* debug-code-sign.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "debug-code-sign.xcconfig"; sourceTree = "<group>"; };
|
|
58
|
+
C980295E179FF13D008F0C0B /* release-code-sign.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "release-code-sign.xcconfig"; sourceTree = "<group>"; };
|
|
59
|
+
C9E977C516C8CE9C006C7F64 /* UnitTestsPrefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UnitTestsPrefix.pch; sourceTree = "<group>"; };
|
|
60
|
+
C9E977C716C8D004006C7F64 /* Default-568h@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-568h@2x.png"; sourceTree = "<group>"; };
|
|
61
|
+
C9E977C816C8D004006C7F64 /* AppInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = AppInfo.plist; sourceTree = "<group>"; };
|
|
62
|
+
C9E977C916C8D004006C7F64 /* Default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Default.png; sourceTree = "<group>"; };
|
|
63
|
+
C9E977CA16C8D004006C7F64 /* Default@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default@2x.png"; sourceTree = "<group>"; };
|
|
64
|
+
C9E977D316C8D0A8006C7F64 /* UnitTestsInfo.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = UnitTestsInfo.plist; sourceTree = "<group>"; };
|
|
65
|
+
C9E977D516C90619006C7F64 /* ExampleSpec.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ExampleSpec.m; sourceTree = "<group>"; };
|
|
66
|
+
CDFE709DDE4442428B2D9AC6 /* Pods.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = Pods.xcconfig; path = ../Pods/Pods.xcconfig; sourceTree = SOURCE_ROOT; };
|
|
67
|
+
EC7B302516B146FFB11825D4 /* Pods-test.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-test.xcconfig"; path = "../Pods/Pods-test.xcconfig"; sourceTree = SOURCE_ROOT; };
|
|
68
|
+
/* End PBXFileReference section */
|
|
69
|
+
|
|
70
|
+
/* Begin PBXFrameworksBuildPhase section */
|
|
71
|
+
C911D63016C3C62A004D8F4B /* Frameworks */ = {
|
|
72
|
+
isa = PBXFrameworksBuildPhase;
|
|
73
|
+
buildActionMask = 2147483647;
|
|
74
|
+
files = (
|
|
75
|
+
C911D63716C3C62A004D8F4B /* UIKit.framework in Frameworks */,
|
|
76
|
+
C911D63916C3C62A004D8F4B /* Foundation.framework in Frameworks */,
|
|
77
|
+
C911D63B16C3C62A004D8F4B /* CoreGraphics.framework in Frameworks */,
|
|
78
|
+
B647D4D235724A08BDD6B731 /* libPods.a in Frameworks */,
|
|
79
|
+
);
|
|
80
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
81
|
+
};
|
|
82
|
+
C911D64F16C3C62A004D8F4B /* Frameworks */ = {
|
|
83
|
+
isa = PBXFrameworksBuildPhase;
|
|
84
|
+
buildActionMask = 2147483647;
|
|
85
|
+
files = (
|
|
86
|
+
C911D65516C3C62A004D8F4B /* SenTestingKit.framework in Frameworks */,
|
|
87
|
+
C911D65616C3C62A004D8F4B /* UIKit.framework in Frameworks */,
|
|
88
|
+
C911D65716C3C62A004D8F4B /* Foundation.framework in Frameworks */,
|
|
89
|
+
BB18BA669BEF4A56AFCF1BE0 /* libPods-test.a in Frameworks */,
|
|
90
|
+
);
|
|
91
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
92
|
+
};
|
|
93
|
+
/* End PBXFrameworksBuildPhase section */
|
|
94
|
+
|
|
95
|
+
/* Begin PBXGroup section */
|
|
96
|
+
C911D62A16C3C62A004D8F4B = {
|
|
97
|
+
isa = PBXGroup;
|
|
98
|
+
children = (
|
|
99
|
+
C911D63C16C3C62A004D8F4B /* src */,
|
|
100
|
+
C911D65A16C3C62A004D8F4B /* test */,
|
|
101
|
+
C9E977C616C8CFC6006C7F64 /* resources */,
|
|
102
|
+
C969682216CA1C8800F1C1FD /* configuration */,
|
|
103
|
+
C911D63516C3C62A004D8F4B /* Frameworks */,
|
|
104
|
+
C911D63416C3C62A004D8F4B /* Products */,
|
|
105
|
+
);
|
|
106
|
+
sourceTree = "<group>";
|
|
107
|
+
};
|
|
108
|
+
C911D63416C3C62A004D8F4B /* Products */ = {
|
|
109
|
+
isa = PBXGroup;
|
|
110
|
+
children = (
|
|
111
|
+
C911D63316C3C62A004D8F4B /* simple.app */,
|
|
112
|
+
C911D65316C3C62A004D8F4B /* unit-tests.octest */,
|
|
113
|
+
);
|
|
114
|
+
name = Products;
|
|
115
|
+
sourceTree = "<group>";
|
|
116
|
+
};
|
|
117
|
+
C911D63516C3C62A004D8F4B /* Frameworks */ = {
|
|
118
|
+
isa = PBXGroup;
|
|
119
|
+
children = (
|
|
120
|
+
C911D63616C3C62A004D8F4B /* UIKit.framework */,
|
|
121
|
+
C911D63816C3C62A004D8F4B /* Foundation.framework */,
|
|
122
|
+
C911D63A16C3C62A004D8F4B /* CoreGraphics.framework */,
|
|
123
|
+
C911D65416C3C62A004D8F4B /* SenTestingKit.framework */,
|
|
124
|
+
2F64538FE6CE416B8F24C4B8 /* libPods.a */,
|
|
125
|
+
46B6A7448A194A06A60C61C0 /* libPods-test.a */,
|
|
126
|
+
);
|
|
127
|
+
name = Frameworks;
|
|
128
|
+
sourceTree = "<group>";
|
|
129
|
+
};
|
|
130
|
+
C911D63C16C3C62A004D8F4B /* src */ = {
|
|
131
|
+
isa = PBXGroup;
|
|
132
|
+
children = (
|
|
133
|
+
C911D63D16C3C62A004D8F4B /* main */,
|
|
134
|
+
);
|
|
135
|
+
path = src;
|
|
136
|
+
sourceTree = SOURCE_ROOT;
|
|
137
|
+
};
|
|
138
|
+
C911D63D16C3C62A004D8F4B /* main */ = {
|
|
139
|
+
isa = PBXGroup;
|
|
140
|
+
children = (
|
|
141
|
+
C911D64216C3C62A004D8F4B /* main.m */,
|
|
142
|
+
C911D64416C3C62A004D8F4B /* AppPrefix.pch */,
|
|
143
|
+
C911D64516C3C62A004D8F4B /* AppDelegate.h */,
|
|
144
|
+
C911D64616C3C62A004D8F4B /* AppDelegate.m */,
|
|
145
|
+
);
|
|
146
|
+
name = main;
|
|
147
|
+
sourceTree = "<group>";
|
|
148
|
+
};
|
|
149
|
+
C911D65A16C3C62A004D8F4B /* test */ = {
|
|
150
|
+
isa = PBXGroup;
|
|
151
|
+
children = (
|
|
152
|
+
C911D65B16C3C62A004D8F4B /* main */,
|
|
153
|
+
C9E977D516C90619006C7F64 /* ExampleSpec.m */,
|
|
154
|
+
);
|
|
155
|
+
path = test;
|
|
156
|
+
sourceTree = SOURCE_ROOT;
|
|
157
|
+
};
|
|
158
|
+
C911D65B16C3C62A004D8F4B /* main */ = {
|
|
159
|
+
isa = PBXGroup;
|
|
160
|
+
children = (
|
|
161
|
+
C9E977C516C8CE9C006C7F64 /* UnitTestsPrefix.pch */,
|
|
162
|
+
);
|
|
163
|
+
name = main;
|
|
164
|
+
sourceTree = "<group>";
|
|
165
|
+
};
|
|
166
|
+
C969682216CA1C8800F1C1FD /* configuration */ = {
|
|
167
|
+
isa = PBXGroup;
|
|
168
|
+
children = (
|
|
169
|
+
C980295B179FF13D008F0C0B /* analyzer.xcconfig */,
|
|
170
|
+
C969682316CA1C8800F1C1FD /* app.xcconfig */,
|
|
171
|
+
C980295A179FF0CE008F0C0B /* architectures.xcconfig */,
|
|
172
|
+
C980295C179FF13D008F0C0B /* compiler.xcconfig */,
|
|
173
|
+
C980295D179FF13D008F0C0B /* debug-code-sign.xcconfig */,
|
|
174
|
+
C969682416CA1C8800F1C1FD /* debug.xcconfig */,
|
|
175
|
+
EC7B302516B146FFB11825D4 /* Pods-test.xcconfig */,
|
|
176
|
+
CDFE709DDE4442428B2D9AC6 /* Pods.xcconfig */,
|
|
177
|
+
C980295E179FF13D008F0C0B /* release-code-sign.xcconfig */,
|
|
178
|
+
C969682516CA1C8800F1C1FD /* release.xcconfig */,
|
|
179
|
+
C969682616CA1C8800F1C1FD /* shared.xcconfig */,
|
|
180
|
+
C969682716CA1C8800F1C1FD /* unit-tests.xcconfig */,
|
|
181
|
+
);
|
|
182
|
+
path = configuration;
|
|
183
|
+
sourceTree = "<group>";
|
|
184
|
+
};
|
|
185
|
+
C9E977C616C8CFC6006C7F64 /* resources */ = {
|
|
186
|
+
isa = PBXGroup;
|
|
187
|
+
children = (
|
|
188
|
+
C9E977D416C8D0E1006C7F64 /* icons */,
|
|
189
|
+
C9E977C816C8D004006C7F64 /* AppInfo.plist */,
|
|
190
|
+
C9E977D316C8D0A8006C7F64 /* UnitTestsInfo.plist */,
|
|
191
|
+
);
|
|
192
|
+
path = resources;
|
|
193
|
+
sourceTree = SOURCE_ROOT;
|
|
194
|
+
};
|
|
195
|
+
C9E977D416C8D0E1006C7F64 /* icons */ = {
|
|
196
|
+
isa = PBXGroup;
|
|
197
|
+
children = (
|
|
198
|
+
C9E977C716C8D004006C7F64 /* Default-568h@2x.png */,
|
|
199
|
+
C9E977C916C8D004006C7F64 /* Default.png */,
|
|
200
|
+
C9E977CA16C8D004006C7F64 /* Default@2x.png */,
|
|
201
|
+
);
|
|
202
|
+
name = icons;
|
|
203
|
+
sourceTree = "<group>";
|
|
204
|
+
};
|
|
205
|
+
/* End PBXGroup section */
|
|
206
|
+
|
|
207
|
+
/* Begin PBXNativeTarget section */
|
|
208
|
+
C911D63216C3C62A004D8F4B /* simple */ = {
|
|
209
|
+
isa = PBXNativeTarget;
|
|
210
|
+
buildConfigurationList = C911D66516C3C62A004D8F4B /* Build configuration list for PBXNativeTarget "simple" */;
|
|
211
|
+
buildPhases = (
|
|
212
|
+
C911D62F16C3C62A004D8F4B /* Sources */,
|
|
213
|
+
C911D63016C3C62A004D8F4B /* Frameworks */,
|
|
214
|
+
C911D63116C3C62A004D8F4B /* Resources */,
|
|
215
|
+
E2CE13516A744721893DC83F /* Copy Pods Resources */,
|
|
216
|
+
);
|
|
217
|
+
buildRules = (
|
|
218
|
+
);
|
|
219
|
+
dependencies = (
|
|
220
|
+
);
|
|
221
|
+
name = simple;
|
|
222
|
+
productName = default;
|
|
223
|
+
productReference = C911D63316C3C62A004D8F4B /* simple.app */;
|
|
224
|
+
productType = "com.apple.product-type.application";
|
|
225
|
+
};
|
|
226
|
+
C911D65216C3C62A004D8F4B /* unit-tests */ = {
|
|
227
|
+
isa = PBXNativeTarget;
|
|
228
|
+
buildConfigurationList = C911D66816C3C62A004D8F4B /* Build configuration list for PBXNativeTarget "unit-tests" */;
|
|
229
|
+
buildPhases = (
|
|
230
|
+
C911D64E16C3C62A004D8F4B /* Sources */,
|
|
231
|
+
C911D64F16C3C62A004D8F4B /* Frameworks */,
|
|
232
|
+
C911D65016C3C62A004D8F4B /* Resources */,
|
|
233
|
+
9401A6A469C64F029998B93F /* Copy Pods Resources */,
|
|
234
|
+
);
|
|
235
|
+
buildRules = (
|
|
236
|
+
);
|
|
237
|
+
dependencies = (
|
|
238
|
+
C911D65916C3C62A004D8F4B /* PBXTargetDependency */,
|
|
239
|
+
);
|
|
240
|
+
name = "unit-tests";
|
|
241
|
+
productName = defaultTests;
|
|
242
|
+
productReference = C911D65316C3C62A004D8F4B /* unit-tests.octest */;
|
|
243
|
+
productType = "com.apple.product-type.bundle";
|
|
244
|
+
};
|
|
245
|
+
/* End PBXNativeTarget section */
|
|
246
|
+
|
|
247
|
+
/* Begin PBXProject section */
|
|
248
|
+
C911D62B16C3C62A004D8F4B /* Project object */ = {
|
|
249
|
+
isa = PBXProject;
|
|
250
|
+
attributes = {
|
|
251
|
+
LastUpgradeCheck = 0460;
|
|
252
|
+
ORGANIZATIONNAME = yourcompanyname;
|
|
253
|
+
};
|
|
254
|
+
buildConfigurationList = C911D62E16C3C62A004D8F4B /* Build configuration list for PBXProject "simple" */;
|
|
255
|
+
compatibilityVersion = "Xcode 3.2";
|
|
256
|
+
developmentRegion = English;
|
|
257
|
+
hasScannedForEncodings = 0;
|
|
258
|
+
knownRegions = (
|
|
259
|
+
en,
|
|
260
|
+
);
|
|
261
|
+
mainGroup = C911D62A16C3C62A004D8F4B;
|
|
262
|
+
productRefGroup = C911D63416C3C62A004D8F4B /* Products */;
|
|
263
|
+
projectDirPath = "";
|
|
264
|
+
projectRoot = "";
|
|
265
|
+
targets = (
|
|
266
|
+
C911D63216C3C62A004D8F4B /* simple */,
|
|
267
|
+
C911D65216C3C62A004D8F4B /* unit-tests */,
|
|
268
|
+
);
|
|
269
|
+
};
|
|
270
|
+
/* End PBXProject section */
|
|
271
|
+
|
|
272
|
+
/* Begin PBXResourcesBuildPhase section */
|
|
273
|
+
C911D63116C3C62A004D8F4B /* Resources */ = {
|
|
274
|
+
isa = PBXResourcesBuildPhase;
|
|
275
|
+
buildActionMask = 2147483647;
|
|
276
|
+
files = (
|
|
277
|
+
C9E977CE16C8D004006C7F64 /* Default-568h@2x.png in Resources */,
|
|
278
|
+
C9E977D016C8D004006C7F64 /* Default.png in Resources */,
|
|
279
|
+
C9E977D116C8D004006C7F64 /* Default@2x.png in Resources */,
|
|
280
|
+
);
|
|
281
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
282
|
+
};
|
|
283
|
+
C911D65016C3C62A004D8F4B /* Resources */ = {
|
|
284
|
+
isa = PBXResourcesBuildPhase;
|
|
285
|
+
buildActionMask = 2147483647;
|
|
286
|
+
files = (
|
|
287
|
+
);
|
|
288
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
289
|
+
};
|
|
290
|
+
/* End PBXResourcesBuildPhase section */
|
|
291
|
+
|
|
292
|
+
/* Begin PBXShellScriptBuildPhase section */
|
|
293
|
+
9401A6A469C64F029998B93F /* Copy Pods Resources */ = {
|
|
294
|
+
isa = PBXShellScriptBuildPhase;
|
|
295
|
+
buildActionMask = 2147483647;
|
|
296
|
+
files = (
|
|
297
|
+
);
|
|
298
|
+
inputPaths = (
|
|
299
|
+
);
|
|
300
|
+
name = "Copy Pods Resources";
|
|
301
|
+
outputPaths = (
|
|
302
|
+
);
|
|
303
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
304
|
+
shellPath = /bin/sh;
|
|
305
|
+
shellScript = "\"${SRCROOT}/../Pods/Pods-test-resources.sh\"\n";
|
|
306
|
+
showEnvVarsInLog = 0;
|
|
307
|
+
};
|
|
308
|
+
E2CE13516A744721893DC83F /* Copy Pods Resources */ = {
|
|
309
|
+
isa = PBXShellScriptBuildPhase;
|
|
310
|
+
buildActionMask = 2147483647;
|
|
311
|
+
files = (
|
|
312
|
+
);
|
|
313
|
+
inputPaths = (
|
|
314
|
+
);
|
|
315
|
+
name = "Copy Pods Resources";
|
|
316
|
+
outputPaths = (
|
|
317
|
+
);
|
|
318
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
319
|
+
shellPath = /bin/sh;
|
|
320
|
+
shellScript = "\"${SRCROOT}/../Pods/Pods-resources.sh\"\n";
|
|
321
|
+
showEnvVarsInLog = 0;
|
|
322
|
+
};
|
|
323
|
+
/* End PBXShellScriptBuildPhase section */
|
|
324
|
+
|
|
325
|
+
/* Begin PBXSourcesBuildPhase section */
|
|
326
|
+
C911D62F16C3C62A004D8F4B /* Sources */ = {
|
|
327
|
+
isa = PBXSourcesBuildPhase;
|
|
328
|
+
buildActionMask = 2147483647;
|
|
329
|
+
files = (
|
|
330
|
+
C911D64316C3C62A004D8F4B /* main.m in Sources */,
|
|
331
|
+
C911D64716C3C62A004D8F4B /* AppDelegate.m in Sources */,
|
|
332
|
+
);
|
|
333
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
334
|
+
};
|
|
335
|
+
C911D64E16C3C62A004D8F4B /* Sources */ = {
|
|
336
|
+
isa = PBXSourcesBuildPhase;
|
|
337
|
+
buildActionMask = 2147483647;
|
|
338
|
+
files = (
|
|
339
|
+
C9E977D616C90619006C7F64 /* ExampleSpec.m in Sources */,
|
|
340
|
+
);
|
|
341
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
342
|
+
};
|
|
343
|
+
/* End PBXSourcesBuildPhase section */
|
|
344
|
+
|
|
345
|
+
/* Begin PBXTargetDependency section */
|
|
346
|
+
C911D65916C3C62A004D8F4B /* PBXTargetDependency */ = {
|
|
347
|
+
isa = PBXTargetDependency;
|
|
348
|
+
target = C911D63216C3C62A004D8F4B /* simple */;
|
|
349
|
+
targetProxy = C911D65816C3C62A004D8F4B /* PBXContainerItemProxy */;
|
|
350
|
+
};
|
|
351
|
+
/* End PBXTargetDependency section */
|
|
352
|
+
|
|
353
|
+
/* Begin XCBuildConfiguration section */
|
|
354
|
+
C911D66316C3C62A004D8F4B /* Debug */ = {
|
|
355
|
+
isa = XCBuildConfiguration;
|
|
356
|
+
baseConfigurationReference = C969682416CA1C8800F1C1FD /* debug.xcconfig */;
|
|
357
|
+
buildSettings = {
|
|
358
|
+
SDKROOT = iphoneos;
|
|
359
|
+
};
|
|
360
|
+
name = Debug;
|
|
361
|
+
};
|
|
362
|
+
C911D66416C3C62A004D8F4B /* Release */ = {
|
|
363
|
+
isa = XCBuildConfiguration;
|
|
364
|
+
baseConfigurationReference = C969682516CA1C8800F1C1FD /* release.xcconfig */;
|
|
365
|
+
buildSettings = {
|
|
366
|
+
SDKROOT = iphoneos;
|
|
367
|
+
};
|
|
368
|
+
name = Release;
|
|
369
|
+
};
|
|
370
|
+
C911D66616C3C62A004D8F4B /* Debug */ = {
|
|
371
|
+
isa = XCBuildConfiguration;
|
|
372
|
+
baseConfigurationReference = C969682316CA1C8800F1C1FD /* app.xcconfig */;
|
|
373
|
+
buildSettings = {
|
|
374
|
+
LIBRARY_SEARCH_PATHS = (
|
|
375
|
+
"$(inherited)",
|
|
376
|
+
"$(FRANK_LIBRARY_SEARCH_PATHS)",
|
|
377
|
+
);
|
|
378
|
+
OTHER_LDFLAGS = (
|
|
379
|
+
"$(inherited)",
|
|
380
|
+
"$(FRANK_LDFLAGS)",
|
|
381
|
+
);
|
|
382
|
+
};
|
|
383
|
+
name = Debug;
|
|
384
|
+
};
|
|
385
|
+
C911D66716C3C62A004D8F4B /* Release */ = {
|
|
386
|
+
isa = XCBuildConfiguration;
|
|
387
|
+
baseConfigurationReference = C969682316CA1C8800F1C1FD /* app.xcconfig */;
|
|
388
|
+
buildSettings = {
|
|
389
|
+
};
|
|
390
|
+
name = Release;
|
|
391
|
+
};
|
|
392
|
+
C911D66916C3C62A004D8F4B /* Debug */ = {
|
|
393
|
+
isa = XCBuildConfiguration;
|
|
394
|
+
baseConfigurationReference = C969682716CA1C8800F1C1FD /* unit-tests.xcconfig */;
|
|
395
|
+
buildSettings = {
|
|
396
|
+
};
|
|
397
|
+
name = Debug;
|
|
398
|
+
};
|
|
399
|
+
C911D66A16C3C62A004D8F4B /* Release */ = {
|
|
400
|
+
isa = XCBuildConfiguration;
|
|
401
|
+
baseConfigurationReference = C969682716CA1C8800F1C1FD /* unit-tests.xcconfig */;
|
|
402
|
+
buildSettings = {
|
|
403
|
+
};
|
|
404
|
+
name = Release;
|
|
405
|
+
};
|
|
406
|
+
/* End XCBuildConfiguration section */
|
|
407
|
+
|
|
408
|
+
/* Begin XCConfigurationList section */
|
|
409
|
+
C911D62E16C3C62A004D8F4B /* Build configuration list for PBXProject "simple" */ = {
|
|
410
|
+
isa = XCConfigurationList;
|
|
411
|
+
buildConfigurations = (
|
|
412
|
+
C911D66316C3C62A004D8F4B /* Debug */,
|
|
413
|
+
C911D66416C3C62A004D8F4B /* Release */,
|
|
414
|
+
);
|
|
415
|
+
defaultConfigurationIsVisible = 0;
|
|
416
|
+
defaultConfigurationName = Debug;
|
|
417
|
+
};
|
|
418
|
+
C911D66516C3C62A004D8F4B /* Build configuration list for PBXNativeTarget "simple" */ = {
|
|
419
|
+
isa = XCConfigurationList;
|
|
420
|
+
buildConfigurations = (
|
|
421
|
+
C911D66616C3C62A004D8F4B /* Debug */,
|
|
422
|
+
C911D66716C3C62A004D8F4B /* Release */,
|
|
423
|
+
);
|
|
424
|
+
defaultConfigurationIsVisible = 0;
|
|
425
|
+
defaultConfigurationName = Debug;
|
|
426
|
+
};
|
|
427
|
+
C911D66816C3C62A004D8F4B /* Build configuration list for PBXNativeTarget "unit-tests" */ = {
|
|
428
|
+
isa = XCConfigurationList;
|
|
429
|
+
buildConfigurations = (
|
|
430
|
+
C911D66916C3C62A004D8F4B /* Debug */,
|
|
431
|
+
C911D66A16C3C62A004D8F4B /* Release */,
|
|
432
|
+
);
|
|
433
|
+
defaultConfigurationIsVisible = 0;
|
|
434
|
+
defaultConfigurationName = Debug;
|
|
435
|
+
};
|
|
436
|
+
/* End XCConfigurationList section */
|
|
437
|
+
};
|
|
438
|
+
rootObject = C911D62B16C3C62A004D8F4B /* Project object */;
|
|
439
|
+
}
|
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<Scheme
|
|
3
|
+
LastUpgradeVersion = "0460"
|
|
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 = "103C5820FADF4739A8F63C9E"
|
|
18
|
+
BuildableName = "libPods.a"
|
|
19
|
+
BlueprintName = "Pods"
|
|
20
|
+
ReferencedContainer = "container:../Pods/Pods.xcodeproj">
|
|
21
|
+
</BuildableReference>
|
|
22
|
+
</BuildActionEntry>
|
|
23
|
+
<BuildActionEntry
|
|
24
|
+
buildForTesting = "YES"
|
|
25
|
+
buildForRunning = "NO"
|
|
26
|
+
buildForProfiling = "YES"
|
|
27
|
+
buildForArchiving = "NO"
|
|
28
|
+
buildForAnalyzing = "YES">
|
|
29
|
+
<BuildableReference
|
|
30
|
+
BuildableIdentifier = "primary"
|
|
31
|
+
BlueprintIdentifier = "7D9F80E70315411FAB38A1AB"
|
|
32
|
+
BuildableName = "libPods-test.a"
|
|
33
|
+
BlueprintName = "Pods-test"
|
|
34
|
+
ReferencedContainer = "container:../Pods/Pods.xcodeproj">
|
|
35
|
+
</BuildableReference>
|
|
36
|
+
</BuildActionEntry>
|
|
37
|
+
<BuildActionEntry
|
|
38
|
+
buildForTesting = "YES"
|
|
39
|
+
buildForRunning = "YES"
|
|
40
|
+
buildForProfiling = "YES"
|
|
41
|
+
buildForArchiving = "YES"
|
|
42
|
+
buildForAnalyzing = "YES">
|
|
43
|
+
<BuildableReference
|
|
44
|
+
BuildableIdentifier = "primary"
|
|
45
|
+
BlueprintIdentifier = "C911D63216C3C62A004D8F4B"
|
|
46
|
+
BuildableName = "simple.app"
|
|
47
|
+
BlueprintName = "simple"
|
|
48
|
+
ReferencedContainer = "container:simple.xcodeproj">
|
|
49
|
+
</BuildableReference>
|
|
50
|
+
</BuildActionEntry>
|
|
51
|
+
<BuildActionEntry
|
|
52
|
+
buildForTesting = "YES"
|
|
53
|
+
buildForRunning = "NO"
|
|
54
|
+
buildForProfiling = "YES"
|
|
55
|
+
buildForArchiving = "NO"
|
|
56
|
+
buildForAnalyzing = "YES">
|
|
57
|
+
<BuildableReference
|
|
58
|
+
BuildableIdentifier = "primary"
|
|
59
|
+
BlueprintIdentifier = "C911D65216C3C62A004D8F4B"
|
|
60
|
+
BuildableName = "unit-tests.octest"
|
|
61
|
+
BlueprintName = "unit-tests"
|
|
62
|
+
ReferencedContainer = "container:simple.xcodeproj">
|
|
63
|
+
</BuildableReference>
|
|
64
|
+
</BuildActionEntry>
|
|
65
|
+
</BuildActionEntries>
|
|
66
|
+
</BuildAction>
|
|
67
|
+
<TestAction
|
|
68
|
+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
|
69
|
+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
|
70
|
+
shouldUseLaunchSchemeArgsEnv = "YES"
|
|
71
|
+
buildConfiguration = "Debug">
|
|
72
|
+
<Testables>
|
|
73
|
+
<TestableReference
|
|
74
|
+
skipped = "NO">
|
|
75
|
+
<BuildableReference
|
|
76
|
+
BuildableIdentifier = "primary"
|
|
77
|
+
BlueprintIdentifier = "C911D65216C3C62A004D8F4B"
|
|
78
|
+
BuildableName = "unit-tests.octest"
|
|
79
|
+
BlueprintName = "unit-tests"
|
|
80
|
+
ReferencedContainer = "container:simple.xcodeproj">
|
|
81
|
+
</BuildableReference>
|
|
82
|
+
</TestableReference>
|
|
83
|
+
</Testables>
|
|
84
|
+
<MacroExpansion>
|
|
85
|
+
<BuildableReference
|
|
86
|
+
BuildableIdentifier = "primary"
|
|
87
|
+
BlueprintIdentifier = "C911D63216C3C62A004D8F4B"
|
|
88
|
+
BuildableName = "simple.app"
|
|
89
|
+
BlueprintName = "simple"
|
|
90
|
+
ReferencedContainer = "container:simple.xcodeproj">
|
|
91
|
+
</BuildableReference>
|
|
92
|
+
</MacroExpansion>
|
|
93
|
+
</TestAction>
|
|
94
|
+
<LaunchAction
|
|
95
|
+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
|
96
|
+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
|
97
|
+
launchStyle = "0"
|
|
98
|
+
useCustomWorkingDirectory = "NO"
|
|
99
|
+
buildConfiguration = "Debug"
|
|
100
|
+
ignoresPersistentStateOnLaunch = "NO"
|
|
101
|
+
debugDocumentVersioning = "YES"
|
|
102
|
+
allowLocationSimulation = "YES">
|
|
103
|
+
<BuildableProductRunnable>
|
|
104
|
+
<BuildableReference
|
|
105
|
+
BuildableIdentifier = "primary"
|
|
106
|
+
BlueprintIdentifier = "C911D63216C3C62A004D8F4B"
|
|
107
|
+
BuildableName = "simple.app"
|
|
108
|
+
BlueprintName = "simple"
|
|
109
|
+
ReferencedContainer = "container:simple.xcodeproj">
|
|
110
|
+
</BuildableReference>
|
|
111
|
+
</BuildableProductRunnable>
|
|
112
|
+
<AdditionalOptions>
|
|
113
|
+
</AdditionalOptions>
|
|
114
|
+
</LaunchAction>
|
|
115
|
+
<ProfileAction
|
|
116
|
+
shouldUseLaunchSchemeArgsEnv = "YES"
|
|
117
|
+
savedToolIdentifier = ""
|
|
118
|
+
useCustomWorkingDirectory = "NO"
|
|
119
|
+
buildConfiguration = "Release"
|
|
120
|
+
debugDocumentVersioning = "YES">
|
|
121
|
+
<BuildableProductRunnable>
|
|
122
|
+
<BuildableReference
|
|
123
|
+
BuildableIdentifier = "primary"
|
|
124
|
+
BlueprintIdentifier = "C911D63216C3C62A004D8F4B"
|
|
125
|
+
BuildableName = "simple.app"
|
|
126
|
+
BlueprintName = "simple"
|
|
127
|
+
ReferencedContainer = "container:simple.xcodeproj">
|
|
128
|
+
</BuildableReference>
|
|
129
|
+
</BuildableProductRunnable>
|
|
130
|
+
</ProfileAction>
|
|
131
|
+
<AnalyzeAction
|
|
132
|
+
buildConfiguration = "Debug">
|
|
133
|
+
</AnalyzeAction>
|
|
134
|
+
<ArchiveAction
|
|
135
|
+
buildConfiguration = "Release"
|
|
136
|
+
revealArchiveInOrganizer = "YES">
|
|
137
|
+
</ArchiveAction>
|
|
138
|
+
</Scheme>
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
#import "AppDelegate.h"
|
|
2
|
+
#import "ObjectiveSugar.h"
|
|
3
|
+
|
|
4
|
+
@implementation AppDelegate
|
|
5
|
+
|
|
6
|
+
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
|
|
7
|
+
{
|
|
8
|
+
[@[@1, @2, @3] each:^(id item) {
|
|
9
|
+
// Use one of the Cocoapods here to check compiler is all linked i[
|
|
10
|
+
}];
|
|
11
|
+
|
|
12
|
+
UIViewController *controller = [[UIViewController alloc] init];
|
|
13
|
+
controller.view.backgroundColor = [UIColor whiteColor];
|
|
14
|
+
|
|
15
|
+
UILabel *welcome = [[UILabel alloc] initWithFrame:CGRectZero];
|
|
16
|
+
welcome.text = @"Welcome";
|
|
17
|
+
[welcome sizeToFit];
|
|
18
|
+
[controller.view addSubview:welcome];
|
|
19
|
+
|
|
20
|
+
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
|
|
21
|
+
self.window.rootViewController = controller;
|
|
22
|
+
[self.window makeKeyAndVisible];
|
|
23
|
+
return YES;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
- (void)applicationWillResignActive:(UIApplication *)application
|
|
27
|
+
{
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
- (void)applicationDidEnterBackground:(UIApplication *)application
|
|
31
|
+
{
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
- (void)applicationWillEnterForeground:(UIApplication *)application
|
|
35
|
+
{
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
- (void)applicationDidBecomeActive:(UIApplication *)application
|
|
39
|
+
{
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
- (void)applicationWillTerminate:(UIApplication *)application
|
|
43
|
+
{
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
@end
|