yk_command 0.5.0 → 0.5.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.idea/vcs.xml +2 -0
- data/.idea/yk_command.iml +6 -6
- data/Gemfile.lock +3 -3
- data/lib/yk_command/analyze/analyze.rb +4 -0
- data/lib/yk_command/bot/wx_bot.rb +0 -10
- data/lib/yk_command/module/module_handler.rb +119 -0
- data/lib/yk_command/module/template/objc/CategoryHeader.h +1 -1
- data/lib/yk_command/module/template/objc/RouterRegister.m +6 -5
- data/lib/yk_command/module/template/objc/ServiceRegister.m +1 -1
- data/lib/yk_command/module/yk_module.rb +138 -144
- data/lib/yk_command/project/YKProjectTemplate/.gitignore +37 -0
- data/lib/yk_command/project/YKProjectTemplate/CODE_OF_CONDUCT.md +40 -0
- data/lib/yk_command/project/YKProjectTemplate/LICENSE +21 -0
- data/lib/yk_command/project/YKProjectTemplate/NAME-osx.podspec +43 -0
- data/lib/yk_command/project/YKProjectTemplate/NAME.podspec +27 -0
- data/lib/yk_command/project/YKProjectTemplate/POD_LICENSE +19 -0
- data/lib/yk_command/project/YKProjectTemplate/POD_README.md +29 -0
- data/lib/yk_command/project/YKProjectTemplate/Pod/Assets/.gitkeep +0 -0
- data/lib/yk_command/project/YKProjectTemplate/Pod/Classes/.gitkeep +0 -0
- data/lib/yk_command/project/YKProjectTemplate/README.md +22 -0
- data/lib/yk_command/project/YKProjectTemplate/configure +12 -0
- data/lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT/Base.lproj/LaunchScreen.storyboard +31 -0
- data/lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT/Base.lproj/Main.storyboard +79 -0
- data/lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT/CPDAppDelegate.h +15 -0
- data/lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT/CPDAppDelegate.m +46 -0
- data/lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT/CPDViewController.h +13 -0
- data/lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT/CPDViewController.m +60 -0
- data/lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT/Images.xcassets/AppIcon.appiconset/Contents.json +98 -0
- data/lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT/PROJECT-Info.plist +49 -0
- data/lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT/PROJECT-Prefix.pch +16 -0
- data/lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT/en.lproj/InfoPlist.strings +2 -0
- data/lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT/main.m +17 -0
- data/lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT.xcodeproj/project.pbxproj +500 -0
- data/lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- data/lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT.xcodeproj/xcshareddata/xcschemes/PROJECT.xcscheme +101 -0
- data/lib/yk_command/project/YKProjectTemplate/templates/ios/Example/Podfile +19 -0
- data/lib/yk_command/project/YKProjectTemplate/templates/ios/Example/Tests/Tests-Info.plist +22 -0
- data/lib/yk_command/project/YKProjectTemplate/templates/ios/Example/Tests/Tests-Prefix.pch +7 -0
- data/lib/yk_command/project/YKProjectTemplate/templates/ios/Example/Tests/Tests.m +9 -0
- data/lib/yk_command/project/YKProjectTemplate/templates/ios/Example/Tests/en.lproj/InfoPlist.strings +2 -0
- data/lib/yk_command/project/YKProjectTemplate/templates/macos-swift/Example/PROJECT/AppDelegate.swift +26 -0
- data/lib/yk_command/project/YKProjectTemplate/templates/macos-swift/Example/PROJECT/Assets.xcassets/AppIcon.appiconset/Contents.json +58 -0
- data/lib/yk_command/project/YKProjectTemplate/templates/macos-swift/Example/PROJECT/Base.lproj/Main.storyboard +717 -0
- data/lib/yk_command/project/YKProjectTemplate/templates/macos-swift/Example/PROJECT/Info.plist +30 -0
- data/lib/yk_command/project/YKProjectTemplate/templates/macos-swift/Example/PROJECT/PROJECT.entitlements +10 -0
- data/lib/yk_command/project/YKProjectTemplate/templates/macos-swift/Example/PROJECT/ViewController.swift +27 -0
- data/lib/yk_command/project/YKProjectTemplate/templates/macos-swift/Example/PROJECT.xcodeproj/project.pbxproj +444 -0
- data/lib/yk_command/project/YKProjectTemplate/templates/macos-swift/Example/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- data/lib/yk_command/project/YKProjectTemplate/templates/macos-swift/Example/PROJECT.xcodeproj/xcshareddata/xcschemes/PROJECT.xcscheme +103 -0
- data/lib/yk_command/project/YKProjectTemplate/templates/macos-swift/Example/Podfile +11 -0
- data/lib/yk_command/project/YKProjectTemplate/templates/macos-swift/Example/Tests/Info.plist +22 -0
- data/lib/yk_command/project/YKProjectTemplate/templates/macos-swift/Example/Tests/Tests.swift +1 -0
- data/lib/yk_command/project/YKProjectTemplate/templates/swift/Example/PROJECT/AppDelegate.swift +46 -0
- data/lib/yk_command/project/YKProjectTemplate/templates/swift/Example/PROJECT/Base.lproj/LaunchScreen.xib +46 -0
- data/lib/yk_command/project/YKProjectTemplate/templates/swift/Example/PROJECT/Base.lproj/Main.storyboard +86 -0
- data/lib/yk_command/project/YKProjectTemplate/templates/swift/Example/PROJECT/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
- data/lib/yk_command/project/YKProjectTemplate/templates/swift/Example/PROJECT/Info.plist +39 -0
- data/lib/yk_command/project/YKProjectTemplate/templates/swift/Example/PROJECT/ViewController.swift +37 -0
- data/lib/yk_command/project/YKProjectTemplate/templates/swift/Example/PROJECT.xcodeproj/project.pbxproj +468 -0
- data/lib/yk_command/project/YKProjectTemplate/templates/swift/Example/PROJECT.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- data/lib/yk_command/project/YKProjectTemplate/templates/swift/Example/PROJECT.xcodeproj/xcshareddata/xcschemes/PROJECT.xcscheme +117 -0
- data/lib/yk_command/project/YKProjectTemplate/templates/swift/Example/Podfile +20 -0
- data/lib/yk_command/project/YKProjectTemplate/templates/swift/Example/Tests/Info.plist +24 -0
- data/lib/yk_command/project/YKProjectTemplate/templates/swift/Example/Tests/Tests.swift +1 -0
- data/lib/yk_command/project/setup/ConfigureMacOSSwift.rb +46 -0
- data/lib/yk_command/project/setup/ConfigureSwift.rb +40 -0
- data/lib/yk_command/project/setup/ConfigureiOS.rb +107 -0
- data/lib/yk_command/project/setup/MessageBank.rb +113 -0
- data/lib/yk_command/project/setup/ProjectManipulator.rb +141 -0
- data/lib/yk_command/project/setup/TemplateConfigurator.rb +253 -0
- data/lib/yk_command/project/test_examples/kiwi.m +36 -0
- data/lib/yk_command/project/test_examples/quick.swift +50 -0
- data/lib/yk_command/project/test_examples/specta.m +39 -0
- data/lib/yk_command/project/test_examples/xctest.m +26 -0
- data/lib/yk_command/project/test_examples/xctest.swift +28 -0
- data/lib/yk_command/project/yk_project.rb +86 -0
- data/lib/yk_command/version.rb +1 -1
- data/yk_command.gemspec +2 -1
- metadata +76 -11
- data/.YKModuleFilesConfig.yml +0 -5
- data//345/275/222/346/241/243.zip +0 -0
data/lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT/PROJECT-Info.plist
ADDED
@@ -0,0 +1,49 @@
|
|
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>CFBundleDevelopmentRegion</key>
|
6
|
+
<string>en</string>
|
7
|
+
<key>CFBundleDisplayName</key>
|
8
|
+
<string>${PRODUCT_NAME}</string>
|
9
|
+
<key>CFBundleExecutable</key>
|
10
|
+
<string>${EXECUTABLE_NAME}</string>
|
11
|
+
<key>CFBundleIdentifier</key>
|
12
|
+
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
|
13
|
+
<key>CFBundleInfoDictionaryVersion</key>
|
14
|
+
<string>6.0</string>
|
15
|
+
<key>CFBundleName</key>
|
16
|
+
<string>${PRODUCT_NAME}</string>
|
17
|
+
<key>CFBundlePackageType</key>
|
18
|
+
<string>APPL</string>
|
19
|
+
<key>CFBundleShortVersionString</key>
|
20
|
+
<string>1.0</string>
|
21
|
+
<key>CFBundleSignature</key>
|
22
|
+
<string>????</string>
|
23
|
+
<key>CFBundleVersion</key>
|
24
|
+
<string>1.0</string>
|
25
|
+
<key>LSRequiresIPhoneOS</key>
|
26
|
+
<true/>
|
27
|
+
<key>UILaunchStoryboardName</key>
|
28
|
+
<string>LaunchScreen</string>
|
29
|
+
<key>UIMainStoryboardFile</key>
|
30
|
+
<string>Main</string>
|
31
|
+
<key>UIRequiredDeviceCapabilities</key>
|
32
|
+
<array>
|
33
|
+
<string>armv7</string>
|
34
|
+
</array>
|
35
|
+
<key>UISupportedInterfaceOrientations</key>
|
36
|
+
<array>
|
37
|
+
<string>UIInterfaceOrientationPortrait</string>
|
38
|
+
<string>UIInterfaceOrientationLandscapeLeft</string>
|
39
|
+
<string>UIInterfaceOrientationLandscapeRight</string>
|
40
|
+
</array>
|
41
|
+
<key>UISupportedInterfaceOrientations~ipad</key>
|
42
|
+
<array>
|
43
|
+
<string>UIInterfaceOrientationPortrait</string>
|
44
|
+
<string>UIInterfaceOrientationPortraitUpsideDown</string>
|
45
|
+
<string>UIInterfaceOrientationLandscapeLeft</string>
|
46
|
+
<string>UIInterfaceOrientationLandscapeRight</string>
|
47
|
+
</array>
|
48
|
+
</dict>
|
49
|
+
</plist>
|
data/lib/yk_command/project/YKProjectTemplate/templates/ios/Example/PROJECT/PROJECT-Prefix.pch
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
//
|
2
|
+
// Prefix header
|
3
|
+
//
|
4
|
+
// The contents of this file are implicitly included at the beginning of every source file.
|
5
|
+
//
|
6
|
+
|
7
|
+
#import <Availability.h>
|
8
|
+
|
9
|
+
#ifndef __IPHONE_5_0
|
10
|
+
#warning "This project uses features only available in iOS SDK 5.0 and later."
|
11
|
+
#endif
|
12
|
+
|
13
|
+
#ifdef __OBJC__
|
14
|
+
@import UIKit;
|
15
|
+
@import Foundation;
|
16
|
+
#endif
|
@@ -0,0 +1,17 @@
|
|
1
|
+
//
|
2
|
+
// main.m
|
3
|
+
// PROJECT
|
4
|
+
//
|
5
|
+
// Created by PROJECT_OWNER on TODAYS_DATE.
|
6
|
+
// Copyright (c) TODAYS_YEAR PROJECT_OWNER. All rights reserved.
|
7
|
+
//
|
8
|
+
|
9
|
+
@import UIKit;
|
10
|
+
#import "CPDAppDelegate.h"
|
11
|
+
|
12
|
+
int main(int argc, char * argv[])
|
13
|
+
{
|
14
|
+
@autoreleasepool {
|
15
|
+
return UIApplicationMain(argc, argv, nil, NSStringFromClass([CPDAppDelegate class]));
|
16
|
+
}
|
17
|
+
}
|
@@ -0,0 +1,500 @@
|
|
1
|
+
// !$*UTF8*$!
|
2
|
+
{
|
3
|
+
archiveVersion = 1;
|
4
|
+
classes = {
|
5
|
+
};
|
6
|
+
objectVersion = 46;
|
7
|
+
objects = {
|
8
|
+
|
9
|
+
/* Begin PBXBuildFile section */
|
10
|
+
6003F58E195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; };
|
11
|
+
6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58F195388D20070C39A /* CoreGraphics.framework */; };
|
12
|
+
6003F592195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; };
|
13
|
+
6003F598195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F596195388D20070C39A /* InfoPlist.strings */; };
|
14
|
+
6003F59A195388D20070C39A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F599195388D20070C39A /* main.m */; };
|
15
|
+
6003F59E195388D20070C39A /* CPDAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F59D195388D20070C39A /* CPDAppDelegate.m */; };
|
16
|
+
6003F5A7195388D20070C39A /* CPDViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5A6195388D20070C39A /* CPDViewController.m */; };
|
17
|
+
6003F5A9195388D20070C39A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5A8195388D20070C39A /* Images.xcassets */; };
|
18
|
+
6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F5AF195388D20070C39A /* XCTest.framework */; };
|
19
|
+
6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; };
|
20
|
+
6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; };
|
21
|
+
6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5B8195388D20070C39A /* InfoPlist.strings */; };
|
22
|
+
6003F5BC195388D20070C39A /* Tests.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5BB195388D20070C39A /* Tests.m */; };
|
23
|
+
71719F9F1E33DC2100824A3D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 71719F9D1E33DC2100824A3D /* LaunchScreen.storyboard */; };
|
24
|
+
873B8AEB1B1F5CCA007FD442 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */; };
|
25
|
+
/* End PBXBuildFile section */
|
26
|
+
|
27
|
+
/* Begin PBXContainerItemProxy section */
|
28
|
+
6003F5B3195388D20070C39A /* PBXContainerItemProxy */ = {
|
29
|
+
isa = PBXContainerItemProxy;
|
30
|
+
containerPortal = 6003F582195388D10070C39A /* Project object */;
|
31
|
+
proxyType = 1;
|
32
|
+
remoteGlobalIDString = 6003F589195388D20070C39A;
|
33
|
+
remoteInfo = "PROJECT";
|
34
|
+
};
|
35
|
+
/* End PBXContainerItemProxy section */
|
36
|
+
|
37
|
+
/* Begin PBXFileReference section */
|
38
|
+
6003F58A195388D20070C39A /* PROJECT_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = PROJECT_Example.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
39
|
+
6003F58D195388D20070C39A /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
|
40
|
+
6003F58F195388D20070C39A /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
|
41
|
+
6003F591195388D20070C39A /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
|
42
|
+
6003F595195388D20070C39A /* PROJECT-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "PROJECT-Info.plist"; sourceTree = "<group>"; };
|
43
|
+
6003F597195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
|
44
|
+
6003F599195388D20070C39A /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
|
45
|
+
6003F59B195388D20070C39A /* PROJECT-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "PROJECT-Prefix.pch"; sourceTree = "<group>"; };
|
46
|
+
6003F59C195388D20070C39A /* CPDAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CPDAppDelegate.h; sourceTree = "<group>"; };
|
47
|
+
6003F59D195388D20070C39A /* CPDAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CPDAppDelegate.m; sourceTree = "<group>"; };
|
48
|
+
6003F5A5195388D20070C39A /* CPDViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CPDViewController.h; sourceTree = "<group>"; };
|
49
|
+
6003F5A6195388D20070C39A /* CPDViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CPDViewController.m; sourceTree = "<group>"; };
|
50
|
+
6003F5A8195388D20070C39A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
|
51
|
+
6003F5AE195388D20070C39A /* PROJECT_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = PROJECT_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
52
|
+
6003F5AF195388D20070C39A /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
|
53
|
+
6003F5B7195388D20070C39A /* Tests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Tests-Info.plist"; sourceTree = "<group>"; };
|
54
|
+
6003F5B9195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
|
55
|
+
6003F5BB195388D20070C39A /* Tests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Tests.m; sourceTree = "<group>"; };
|
56
|
+
606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Tests-Prefix.pch"; sourceTree = "<group>"; };
|
57
|
+
71719F9E1E33DC2100824A3D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
|
58
|
+
873B8AEA1B1F5CCA007FD442 /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = Main.storyboard; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
|
59
|
+
/* End PBXFileReference section */
|
60
|
+
|
61
|
+
/* Begin PBXFrameworksBuildPhase section */
|
62
|
+
6003F587195388D20070C39A /* Frameworks */ = {
|
63
|
+
isa = PBXFrameworksBuildPhase;
|
64
|
+
buildActionMask = 2147483647;
|
65
|
+
files = (
|
66
|
+
6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */,
|
67
|
+
6003F592195388D20070C39A /* UIKit.framework in Frameworks */,
|
68
|
+
6003F58E195388D20070C39A /* Foundation.framework in Frameworks */,
|
69
|
+
);
|
70
|
+
runOnlyForDeploymentPostprocessing = 0;
|
71
|
+
};
|
72
|
+
6003F5AB195388D20070C39A /* Frameworks */ = {
|
73
|
+
isa = PBXFrameworksBuildPhase;
|
74
|
+
buildActionMask = 2147483647;
|
75
|
+
files = (
|
76
|
+
6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */,
|
77
|
+
6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */,
|
78
|
+
6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */,
|
79
|
+
);
|
80
|
+
runOnlyForDeploymentPostprocessing = 0;
|
81
|
+
};
|
82
|
+
/* End PBXFrameworksBuildPhase section */
|
83
|
+
|
84
|
+
/* Begin PBXGroup section */
|
85
|
+
6003F581195388D10070C39A = {
|
86
|
+
isa = PBXGroup;
|
87
|
+
children = (
|
88
|
+
60FF7A9C1954A5C5007DD14C /* Podspec Metadata */,
|
89
|
+
6003F593195388D20070C39A /* Example for PROJECT */,
|
90
|
+
6003F5B5195388D20070C39A /* Tests */,
|
91
|
+
6003F58C195388D20070C39A /* Frameworks */,
|
92
|
+
6003F58B195388D20070C39A /* Products */,
|
93
|
+
);
|
94
|
+
sourceTree = "<group>";
|
95
|
+
};
|
96
|
+
6003F58B195388D20070C39A /* Products */ = {
|
97
|
+
isa = PBXGroup;
|
98
|
+
children = (
|
99
|
+
6003F58A195388D20070C39A /* PROJECT_Example.app */,
|
100
|
+
6003F5AE195388D20070C39A /* PROJECT_Tests.xctest */,
|
101
|
+
);
|
102
|
+
name = Products;
|
103
|
+
sourceTree = "<group>";
|
104
|
+
};
|
105
|
+
6003F58C195388D20070C39A /* Frameworks */ = {
|
106
|
+
isa = PBXGroup;
|
107
|
+
children = (
|
108
|
+
6003F58D195388D20070C39A /* Foundation.framework */,
|
109
|
+
6003F58F195388D20070C39A /* CoreGraphics.framework */,
|
110
|
+
6003F591195388D20070C39A /* UIKit.framework */,
|
111
|
+
6003F5AF195388D20070C39A /* XCTest.framework */,
|
112
|
+
);
|
113
|
+
name = Frameworks;
|
114
|
+
sourceTree = "<group>";
|
115
|
+
};
|
116
|
+
6003F593195388D20070C39A /* Example for PROJECT */ = {
|
117
|
+
isa = PBXGroup;
|
118
|
+
children = (
|
119
|
+
6003F59C195388D20070C39A /* CPDAppDelegate.h */,
|
120
|
+
6003F59D195388D20070C39A /* CPDAppDelegate.m */,
|
121
|
+
873B8AEA1B1F5CCA007FD442 /* Main.storyboard */,
|
122
|
+
6003F5A5195388D20070C39A /* CPDViewController.h */,
|
123
|
+
6003F5A6195388D20070C39A /* CPDViewController.m */,
|
124
|
+
71719F9D1E33DC2100824A3D /* LaunchScreen.storyboard */,
|
125
|
+
6003F5A8195388D20070C39A /* Images.xcassets */,
|
126
|
+
6003F594195388D20070C39A /* Supporting Files */,
|
127
|
+
);
|
128
|
+
name = "Example for PROJECT";
|
129
|
+
path = "PROJECT";
|
130
|
+
sourceTree = "<group>";
|
131
|
+
};
|
132
|
+
6003F594195388D20070C39A /* Supporting Files */ = {
|
133
|
+
isa = PBXGroup;
|
134
|
+
children = (
|
135
|
+
6003F595195388D20070C39A /* PROJECT-Info.plist */,
|
136
|
+
6003F596195388D20070C39A /* InfoPlist.strings */,
|
137
|
+
6003F599195388D20070C39A /* main.m */,
|
138
|
+
6003F59B195388D20070C39A /* PROJECT-Prefix.pch */,
|
139
|
+
);
|
140
|
+
name = "Supporting Files";
|
141
|
+
sourceTree = "<group>";
|
142
|
+
};
|
143
|
+
6003F5B5195388D20070C39A /* Tests */ = {
|
144
|
+
isa = PBXGroup;
|
145
|
+
children = (
|
146
|
+
6003F5BB195388D20070C39A /* Tests.m */,
|
147
|
+
6003F5B6195388D20070C39A /* Supporting Files */,
|
148
|
+
);
|
149
|
+
path = Tests;
|
150
|
+
sourceTree = "<group>";
|
151
|
+
};
|
152
|
+
6003F5B6195388D20070C39A /* Supporting Files */ = {
|
153
|
+
isa = PBXGroup;
|
154
|
+
children = (
|
155
|
+
6003F5B7195388D20070C39A /* Tests-Info.plist */,
|
156
|
+
6003F5B8195388D20070C39A /* InfoPlist.strings */,
|
157
|
+
606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */,
|
158
|
+
);
|
159
|
+
name = "Supporting Files";
|
160
|
+
sourceTree = "<group>";
|
161
|
+
};
|
162
|
+
60FF7A9C1954A5C5007DD14C /* Podspec Metadata */ = {
|
163
|
+
isa = PBXGroup;
|
164
|
+
children = (
|
165
|
+
);
|
166
|
+
name = "Podspec Metadata";
|
167
|
+
sourceTree = "<group>";
|
168
|
+
};
|
169
|
+
/* End PBXGroup section */
|
170
|
+
|
171
|
+
/* Begin PBXNativeTarget section */
|
172
|
+
6003F589195388D20070C39A /* PROJECT_Example */ = {
|
173
|
+
isa = PBXNativeTarget;
|
174
|
+
buildConfigurationList = 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "PROJECT_Example" */;
|
175
|
+
buildPhases = (
|
176
|
+
6003F586195388D20070C39A /* Sources */,
|
177
|
+
6003F587195388D20070C39A /* Frameworks */,
|
178
|
+
6003F588195388D20070C39A /* Resources */,
|
179
|
+
);
|
180
|
+
buildRules = (
|
181
|
+
);
|
182
|
+
dependencies = (
|
183
|
+
);
|
184
|
+
name = "PROJECT_Example";
|
185
|
+
productName = "PROJECT";
|
186
|
+
productReference = 6003F58A195388D20070C39A /* PROJECT_Example.app */;
|
187
|
+
productType = "com.apple.product-type.application";
|
188
|
+
};
|
189
|
+
6003F5AD195388D20070C39A /* PROJECT_Tests */ = {
|
190
|
+
isa = PBXNativeTarget;
|
191
|
+
buildConfigurationList = 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "PROJECT_Tests" */;
|
192
|
+
buildPhases = (
|
193
|
+
6003F5AA195388D20070C39A /* Sources */,
|
194
|
+
6003F5AB195388D20070C39A /* Frameworks */,
|
195
|
+
6003F5AC195388D20070C39A /* Resources */,
|
196
|
+
);
|
197
|
+
buildRules = (
|
198
|
+
);
|
199
|
+
dependencies = (
|
200
|
+
6003F5B4195388D20070C39A /* PBXTargetDependency */,
|
201
|
+
);
|
202
|
+
name = "PROJECT_Tests";
|
203
|
+
productName = "PROJECTTests";
|
204
|
+
productReference = 6003F5AE195388D20070C39A /* PROJECT_Tests.xctest */;
|
205
|
+
productType = "com.apple.product-type.bundle.unit-test";
|
206
|
+
};
|
207
|
+
/* End PBXNativeTarget section */
|
208
|
+
|
209
|
+
/* Begin PBXProject section */
|
210
|
+
6003F582195388D10070C39A /* Project object */ = {
|
211
|
+
isa = PBXProject;
|
212
|
+
attributes = {
|
213
|
+
CLASSPREFIX = CPD;
|
214
|
+
LastUpgradeCheck = 0720;
|
215
|
+
ORGANIZATIONNAME = "PROJECT_OWNER";
|
216
|
+
TargetAttributes = {
|
217
|
+
6003F5AD195388D20070C39A = {
|
218
|
+
TestTargetID = 6003F589195388D20070C39A;
|
219
|
+
};
|
220
|
+
};
|
221
|
+
};
|
222
|
+
buildConfigurationList = 6003F585195388D10070C39A /* Build configuration list for PBXProject "PROJECT" */;
|
223
|
+
compatibilityVersion = "Xcode 3.2";
|
224
|
+
developmentRegion = English;
|
225
|
+
hasScannedForEncodings = 0;
|
226
|
+
knownRegions = (
|
227
|
+
en,
|
228
|
+
Base,
|
229
|
+
);
|
230
|
+
mainGroup = 6003F581195388D10070C39A;
|
231
|
+
productRefGroup = 6003F58B195388D20070C39A /* Products */;
|
232
|
+
projectDirPath = "";
|
233
|
+
projectRoot = "";
|
234
|
+
targets = (
|
235
|
+
6003F589195388D20070C39A /* PROJECT_Example */,
|
236
|
+
6003F5AD195388D20070C39A /* PROJECT_Tests */,
|
237
|
+
);
|
238
|
+
};
|
239
|
+
/* End PBXProject section */
|
240
|
+
|
241
|
+
/* Begin PBXResourcesBuildPhase section */
|
242
|
+
6003F588195388D20070C39A /* Resources */ = {
|
243
|
+
isa = PBXResourcesBuildPhase;
|
244
|
+
buildActionMask = 2147483647;
|
245
|
+
files = (
|
246
|
+
873B8AEB1B1F5CCA007FD442 /* Main.storyboard in Resources */,
|
247
|
+
71719F9F1E33DC2100824A3D /* LaunchScreen.storyboard in Resources */,
|
248
|
+
6003F5A9195388D20070C39A /* Images.xcassets in Resources */,
|
249
|
+
6003F598195388D20070C39A /* InfoPlist.strings in Resources */,
|
250
|
+
);
|
251
|
+
runOnlyForDeploymentPostprocessing = 0;
|
252
|
+
};
|
253
|
+
6003F5AC195388D20070C39A /* Resources */ = {
|
254
|
+
isa = PBXResourcesBuildPhase;
|
255
|
+
buildActionMask = 2147483647;
|
256
|
+
files = (
|
257
|
+
6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */,
|
258
|
+
);
|
259
|
+
runOnlyForDeploymentPostprocessing = 0;
|
260
|
+
};
|
261
|
+
/* End PBXResourcesBuildPhase section */
|
262
|
+
|
263
|
+
/* Begin PBXSourcesBuildPhase section */
|
264
|
+
6003F586195388D20070C39A /* Sources */ = {
|
265
|
+
isa = PBXSourcesBuildPhase;
|
266
|
+
buildActionMask = 2147483647;
|
267
|
+
files = (
|
268
|
+
6003F59E195388D20070C39A /* CPDAppDelegate.m in Sources */,
|
269
|
+
6003F5A7195388D20070C39A /* CPDViewController.m in Sources */,
|
270
|
+
6003F59A195388D20070C39A /* main.m in Sources */,
|
271
|
+
);
|
272
|
+
runOnlyForDeploymentPostprocessing = 0;
|
273
|
+
};
|
274
|
+
6003F5AA195388D20070C39A /* Sources */ = {
|
275
|
+
isa = PBXSourcesBuildPhase;
|
276
|
+
buildActionMask = 2147483647;
|
277
|
+
files = (
|
278
|
+
6003F5BC195388D20070C39A /* Tests.m in Sources */,
|
279
|
+
);
|
280
|
+
runOnlyForDeploymentPostprocessing = 0;
|
281
|
+
};
|
282
|
+
/* End PBXSourcesBuildPhase section */
|
283
|
+
|
284
|
+
/* Begin PBXTargetDependency section */
|
285
|
+
6003F5B4195388D20070C39A /* PBXTargetDependency */ = {
|
286
|
+
isa = PBXTargetDependency;
|
287
|
+
target = 6003F589195388D20070C39A /* PROJECT_Example */;
|
288
|
+
targetProxy = 6003F5B3195388D20070C39A /* PBXContainerItemProxy */;
|
289
|
+
};
|
290
|
+
/* End PBXTargetDependency section */
|
291
|
+
|
292
|
+
/* Begin PBXVariantGroup section */
|
293
|
+
6003F596195388D20070C39A /* InfoPlist.strings */ = {
|
294
|
+
isa = PBXVariantGroup;
|
295
|
+
children = (
|
296
|
+
6003F597195388D20070C39A /* en */,
|
297
|
+
);
|
298
|
+
name = InfoPlist.strings;
|
299
|
+
sourceTree = "<group>";
|
300
|
+
};
|
301
|
+
6003F5B8195388D20070C39A /* InfoPlist.strings */ = {
|
302
|
+
isa = PBXVariantGroup;
|
303
|
+
children = (
|
304
|
+
6003F5B9195388D20070C39A /* en */,
|
305
|
+
);
|
306
|
+
name = InfoPlist.strings;
|
307
|
+
sourceTree = "<group>";
|
308
|
+
};
|
309
|
+
71719F9D1E33DC2100824A3D /* LaunchScreen.storyboard */ = {
|
310
|
+
isa = PBXVariantGroup;
|
311
|
+
children = (
|
312
|
+
71719F9E1E33DC2100824A3D /* Base */,
|
313
|
+
);
|
314
|
+
name = LaunchScreen.storyboard;
|
315
|
+
sourceTree = "<group>";
|
316
|
+
};
|
317
|
+
/* End PBXVariantGroup section */
|
318
|
+
|
319
|
+
/* Begin XCBuildConfiguration section */
|
320
|
+
6003F5BD195388D20070C39A /* Debug */ = {
|
321
|
+
isa = XCBuildConfiguration;
|
322
|
+
buildSettings = {
|
323
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
324
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
325
|
+
CLANG_CXX_LIBRARY = "libc++";
|
326
|
+
CLANG_ENABLE_MODULES = YES;
|
327
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
328
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
329
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
330
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
331
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
332
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
333
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
334
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
335
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
336
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
337
|
+
COPY_PHASE_STRIP = NO;
|
338
|
+
ENABLE_TESTABILITY = YES;
|
339
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
340
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
341
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
342
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
343
|
+
"DEBUG=1",
|
344
|
+
"$(inherited)",
|
345
|
+
);
|
346
|
+
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
347
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
348
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
349
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
350
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
351
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
352
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
353
|
+
IPHONEOS_DEPLOYMENT_TARGET = 9.3;
|
354
|
+
ONLY_ACTIVE_ARCH = YES;
|
355
|
+
SDKROOT = iphoneos;
|
356
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
357
|
+
};
|
358
|
+
name = Debug;
|
359
|
+
};
|
360
|
+
6003F5BE195388D20070C39A /* Release */ = {
|
361
|
+
isa = XCBuildConfiguration;
|
362
|
+
buildSettings = {
|
363
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
364
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
365
|
+
CLANG_CXX_LIBRARY = "libc++";
|
366
|
+
CLANG_ENABLE_MODULES = YES;
|
367
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
368
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
369
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
370
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
371
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
372
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
373
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
374
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
375
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
376
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
377
|
+
COPY_PHASE_STRIP = YES;
|
378
|
+
ENABLE_NS_ASSERTIONS = NO;
|
379
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
380
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
381
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
382
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
383
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
384
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
385
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
386
|
+
IPHONEOS_DEPLOYMENT_TARGET = 9.3;
|
387
|
+
SDKROOT = iphoneos;
|
388
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
389
|
+
VALIDATE_PRODUCT = YES;
|
390
|
+
};
|
391
|
+
name = Release;
|
392
|
+
};
|
393
|
+
6003F5C0195388D20070C39A /* Debug */ = {
|
394
|
+
isa = XCBuildConfiguration;
|
395
|
+
buildSettings = {
|
396
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
397
|
+
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
398
|
+
GCC_PREFIX_HEADER = "PROJECT/PROJECT-Prefix.pch";
|
399
|
+
INFOPLIST_FILE = "PROJECT/PROJECT-Info.plist";
|
400
|
+
MODULE_NAME = ExampleApp;
|
401
|
+
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}";
|
402
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
403
|
+
SWIFT_VERSION = 4.0;
|
404
|
+
WRAPPER_EXTENSION = app;
|
405
|
+
};
|
406
|
+
name = Debug;
|
407
|
+
};
|
408
|
+
6003F5C1195388D20070C39A /* Release */ = {
|
409
|
+
isa = XCBuildConfiguration;
|
410
|
+
buildSettings = {
|
411
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
412
|
+
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
413
|
+
GCC_PREFIX_HEADER = "PROJECT/PROJECT-Prefix.pch";
|
414
|
+
INFOPLIST_FILE = "PROJECT/PROJECT-Info.plist";
|
415
|
+
MODULE_NAME = ExampleApp;
|
416
|
+
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}";
|
417
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
418
|
+
SWIFT_VERSION = 4.0;
|
419
|
+
WRAPPER_EXTENSION = app;
|
420
|
+
};
|
421
|
+
name = Release;
|
422
|
+
};
|
423
|
+
6003F5C3195388D20070C39A /* Debug */ = {
|
424
|
+
isa = XCBuildConfiguration;
|
425
|
+
buildSettings = {
|
426
|
+
BUNDLE_LOADER = "$(TEST_HOST)";
|
427
|
+
FRAMEWORK_SEARCH_PATHS = (
|
428
|
+
"$(PLATFORM_DIR)/Developer/Library/Frameworks",
|
429
|
+
"$(inherited)",
|
430
|
+
"$(DEVELOPER_FRAMEWORKS_DIR)",
|
431
|
+
);
|
432
|
+
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
433
|
+
GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch";
|
434
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
435
|
+
"DEBUG=1",
|
436
|
+
"$(inherited)",
|
437
|
+
);
|
438
|
+
INFOPLIST_FILE = "Tests/Tests-Info.plist";
|
439
|
+
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}";
|
440
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
441
|
+
SWIFT_VERSION = 4.0;
|
442
|
+
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/PROJECT_Example.app/PROJECT_Example";
|
443
|
+
WRAPPER_EXTENSION = xctest;
|
444
|
+
};
|
445
|
+
name = Debug;
|
446
|
+
};
|
447
|
+
6003F5C4195388D20070C39A /* Release */ = {
|
448
|
+
isa = XCBuildConfiguration;
|
449
|
+
buildSettings = {
|
450
|
+
BUNDLE_LOADER = "$(TEST_HOST)";
|
451
|
+
FRAMEWORK_SEARCH_PATHS = (
|
452
|
+
"$(PLATFORM_DIR)/Developer/Library/Frameworks",
|
453
|
+
"$(inherited)",
|
454
|
+
"$(DEVELOPER_FRAMEWORKS_DIR)",
|
455
|
+
);
|
456
|
+
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
457
|
+
GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch";
|
458
|
+
INFOPLIST_FILE = "Tests/Tests-Info.plist";
|
459
|
+
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}";
|
460
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
461
|
+
SWIFT_VERSION = 4.0;
|
462
|
+
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/PROJECT_Example.app/PROJECT_Example";
|
463
|
+
WRAPPER_EXTENSION = xctest;
|
464
|
+
};
|
465
|
+
name = Release;
|
466
|
+
};
|
467
|
+
/* End XCBuildConfiguration section */
|
468
|
+
|
469
|
+
/* Begin XCConfigurationList section */
|
470
|
+
6003F585195388D10070C39A /* Build configuration list for PBXProject "PROJECT" */ = {
|
471
|
+
isa = XCConfigurationList;
|
472
|
+
buildConfigurations = (
|
473
|
+
6003F5BD195388D20070C39A /* Debug */,
|
474
|
+
6003F5BE195388D20070C39A /* Release */,
|
475
|
+
);
|
476
|
+
defaultConfigurationIsVisible = 0;
|
477
|
+
defaultConfigurationName = Release;
|
478
|
+
};
|
479
|
+
6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "PROJECT_Example" */ = {
|
480
|
+
isa = XCConfigurationList;
|
481
|
+
buildConfigurations = (
|
482
|
+
6003F5C0195388D20070C39A /* Debug */,
|
483
|
+
6003F5C1195388D20070C39A /* Release */,
|
484
|
+
);
|
485
|
+
defaultConfigurationIsVisible = 0;
|
486
|
+
defaultConfigurationName = Release;
|
487
|
+
};
|
488
|
+
6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "PROJECT_Tests" */ = {
|
489
|
+
isa = XCConfigurationList;
|
490
|
+
buildConfigurations = (
|
491
|
+
6003F5C3195388D20070C39A /* Debug */,
|
492
|
+
6003F5C4195388D20070C39A /* Release */,
|
493
|
+
);
|
494
|
+
defaultConfigurationIsVisible = 0;
|
495
|
+
defaultConfigurationName = Release;
|
496
|
+
};
|
497
|
+
/* End XCConfigurationList section */
|
498
|
+
};
|
499
|
+
rootObject = 6003F582195388D10070C39A /* Project object */;
|
500
|
+
}
|